Home
last modified time | relevance | path

Searched refs:TAB_SIZE (Results 1 – 22 of 22) sorted by relevance

/optee_os/core/lib/libtomcrypt/src/misc/crypt/
H A Dcrypt_register_hash.c23 for (x = 0; x < TAB_SIZE; x++) { in register_hash()
31 for (x = 0; x < TAB_SIZE; x++) { in register_hash()
H A Dcrypt_register_prng.c23 for (x = 0; x < TAB_SIZE; x++) { in register_prng()
31 for (x = 0; x < TAB_SIZE; x++) { in register_prng()
H A Dcrypt_register_cipher.c23 for (x = 0; x < TAB_SIZE; x++) { in register_cipher()
31 for (x = 0; x < TAB_SIZE; x++) { in register_cipher()
H A Dcrypt_cipher_descriptor.c10 const struct ltc_cipher_descriptor *cipher_descriptor[TAB_SIZE];
H A Dcrypt_prng_descriptor.c9 const struct ltc_prng_descriptor *prng_descriptor[TAB_SIZE];
H A Dcrypt_hash_descriptor.c10 const struct ltc_hash_descriptor *hash_descriptor[TAB_SIZE];
H A Dcrypt_hash_is_valid.c18 if (idx < 0 || idx >= TAB_SIZE || hash_descriptor[idx] == NULL) { in hash_is_valid()
H A Dcrypt_cipher_is_valid.c18 if (idx < 0 || idx >= TAB_SIZE || cipher_descriptor[idx] == NULL) { in cipher_is_valid()
H A Dcrypt_prng_is_valid.c18 if (idx < 0 || idx >= TAB_SIZE || prng_descriptor[idx] == NULL) { in prng_is_valid()
H A Dcrypt_find_hash_id.c19 for (x = 0; x < TAB_SIZE; x++) { in find_hash_id()
H A Dcrypt_find_cipher_id.c19 for (x = 0; x < TAB_SIZE && cipher_descriptor[x] != NULL; x++) { in find_cipher_id()
H A Dcrypt_find_cipher.c20 for (x = 0; x < TAB_SIZE; x++) { in find_cipher()
H A Dcrypt_unregister_cipher.c23 for (x = 0; x < TAB_SIZE; x++) { in unregister_cipher()
H A Dcrypt_find_prng.c20 for (x = 0; x < TAB_SIZE; x++) { in find_prng()
H A Dcrypt_find_hash.c20 for (x = 0; x < TAB_SIZE; x++) { in find_hash()
H A Dcrypt_unregister_prng.c23 for (x = 0; x < TAB_SIZE; x++) { in unregister_prng()
H A Dcrypt_unregister_hash.c23 for (x = 0; x < TAB_SIZE; x++) { in unregister_hash()
H A Dcrypt_find_hash_oid.c15 for (x = 0; x < TAB_SIZE; x++) { in find_hash_oid()
H A Dcrypt_find_cipher_any.c27 for (x = 0; x < TAB_SIZE; x++) { in find_cipher_any()
H A Dcrypt_find_hash_any.c26 for (x = 0; x < TAB_SIZE; x++) { in find_hash_any()
H A Dcrypt_constants.c164 C_STRINGIFY(TAB_SIZE),
/optee_os/core/lib/libtomcrypt/src/headers/
H A Dtomcrypt.h29 #ifndef TAB_SIZE
31 #define TAB_SIZE 48 macro