Searched refs:def (Results 1 – 3 of 3) sorted by relevance
9 #define DEFINE(def, val) \ argument10 asm volatile("\n.ascii \"==>" #def " %c0 " #val "\"" : : "i" (val));
67 const mbedtls_cipher_definition_t *def; in mbedtls_cipher_list() local71 def = mbedtls_cipher_definitions; in mbedtls_cipher_list()74 while (def->type != 0) { in mbedtls_cipher_list()75 *type++ = (*def++).type; in mbedtls_cipher_list()89 const mbedtls_cipher_definition_t *def; in mbedtls_cipher_info_from_type() local91 for (def = mbedtls_cipher_definitions; def->info != NULL; def++) { in mbedtls_cipher_info_from_type()92 if (def->type == cipher_type) { in mbedtls_cipher_info_from_type()93 return def->info; in mbedtls_cipher_info_from_type()103 const mbedtls_cipher_definition_t *def; in mbedtls_cipher_info_from_string() local109 for (def = mbedtls_cipher_definitions; def->info != NULL; def++) { in mbedtls_cipher_info_from_string()[all …]
125 static enum caam_status do_check_keysize(const struct caamdefkey *def, in do_check_keysize() argument128 if (size >= def->min && size <= def->max && !(size % def->mod)) in do_check_keysize()