HomeSort by relevance Sort by last modified time
    Searched full:tab_size (Results 1 - 25 of 40) sorted by null

1 2

  /external/dropbear/libtomcrypt/src/misc/crypt/
crypt_register_cipher.c 31 for (x = 0; x < TAB_SIZE; x++) {
39 for (x = 0; x < TAB_SIZE; x++) {
crypt_register_hash.c 31 for (x = 0; x < TAB_SIZE; x++) {
39 for (x = 0; x < TAB_SIZE; x++) {
crypt_register_prng.c 31 for (x = 0; x < TAB_SIZE; x++) {
39 for (x = 0; x < TAB_SIZE; x++) {
crypt_cipher_descriptor.c 18 struct ltc_cipher_descriptor cipher_descriptor[TAB_SIZE] = {
crypt_cipher_is_valid.c 26 if (idx < 0 || idx >= TAB_SIZE || cipher_descriptor[idx].name == NULL) {
crypt_hash_descriptor.c 18 struct ltc_hash_descriptor hash_descriptor[TAB_SIZE] = {
crypt_hash_is_valid.c 26 if (idx < 0 || idx >= TAB_SIZE || hash_descriptor[idx].name == NULL) {
crypt_prng_descriptor.c 17 struct ltc_prng_descriptor prng_descriptor[TAB_SIZE] = {
crypt_prng_is_valid.c 26 if (idx < 0 || idx >= TAB_SIZE || prng_descriptor[idx].name == NULL) {
crypt_find_cipher.c 28 for (x = 0; x < TAB_SIZE; x++) {
crypt_find_cipher_any.c 35 for (x = 0; x < TAB_SIZE; x++) {
crypt_find_cipher_id.c 27 for (x = 0; x < TAB_SIZE; x++) {
crypt_find_hash.c 28 for (x = 0; x < TAB_SIZE; x++) {
crypt_find_hash_any.c 34 for (x = 0; x < TAB_SIZE; x++) {
crypt_find_hash_id.c 27 for (x = 0; x < TAB_SIZE; x++) {
crypt_find_hash_oid.c 23 for (x = 0; x < TAB_SIZE; x++) {
crypt_find_prng.c 28 for (x = 0; x < TAB_SIZE; x++) {
crypt_unregister_cipher.c 31 for (x = 0; x < TAB_SIZE; x++) {
crypt_unregister_hash.c 31 for (x = 0; x < TAB_SIZE; x++) {
crypt_unregister_prng.c 31 for (x = 0; x < TAB_SIZE; x++) {
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt.h 27 #define TAB_SIZE 4
  /external/dropbear/libtommath/
bn_mp_exptmod_fast.c 27 #define TAB_SIZE 32
29 #define TAB_SIZE 256
34 mp_int M[TAB_SIZE], res;
bn_s_mp_exptmod.c 18 #define TAB_SIZE 32
20 #define TAB_SIZE 256
25 mp_int M[TAB_SIZE], res, mu;
  /development/ide/intellij/codestyles/
AndroidStyle.xml 7 <option name="TAB_SIZE" value="8" />
  /external/grub/stage2/
boot.c 658 int tab_size, sec_size; local
669 tab_size = pu.elf->e_shentsize * pu.elf->e_shnum;
672 if (grub_read ((char *) RAW_ADDR (cur_addr), tab_size)
673 == tab_size)
677 cur_addr += tab_size;

Completed in 248 milliseconds

1 2