Home
last modified time | relevance | path

Searched refs:def (Results 1 – 3 of 3) sorted by relevance

/optee_os/core/include/
H A Dgen-asm-defines.h9 #define DEFINE(def, val) \ argument
10 asm volatile("\n.ascii \"==>" #def " %c0 " #val "\"" : : "i" (val));
/optee_os/lib/libmbedtls/mbedtls/library/
H A Dcipher.c67 const mbedtls_cipher_definition_t *def; in mbedtls_cipher_list() local
71 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() local
91 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() local
109 for (def = mbedtls_cipher_definitions; def->info != NULL; def++) { in mbedtls_cipher_info_from_string()
[all …]
/optee_os/core/drivers/crypto/caam/cipher/
H A Dcaam_cipher.c125 static enum caam_status do_check_keysize(const struct caamdefkey *def, in do_check_keysize() argument
128 if (size >= def->min && size <= def->max && !(size % def->mod)) in do_check_keysize()