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

1 2 3

  /external/robolectric/.idea/
projectCodeStyle.xml 9 <option name="TAB_SIZE" value="4" />
19 <option name="TAB_SIZE" value="4" />
29 <option name="TAB_SIZE" value="4" />
  /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++) {
  /frameworks/rs/driver/linkloader/android/
test-librsloader.c 51 static size_t const tab_size = sizeof(tab) / sizeof(struct func_entry_t); local
58 for (i = 0; i < tab_size; ++i) {
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt.h 27 #define TAB_SIZE 4
  /external/opencv/cv/src/
cvutils.cpp 206 int i, j, k, t, dj, tab_size, int_mode = 0; local
223 tab_size = dstroi.width - srcroi.width;
224 tab = (int*)cvStackAlloc( tab_size*sizeof(tab[0]) );
229 for( i = 0; i < tab_size; i += cn )
245 for( i = left; i < tab_size; i += cn )
267 for( ; j < tab_size; j++ )
289 for( ; j < tab_size; j++ )
  /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;

Completed in 1538 milliseconds

1 2 3