HomeSort by relevance Sort by last modified time
    Searched refs:ht_size (Results 1 - 6 of 6) sorted by null

  /ndk/sources/host-tools/make-3.81/
hash.c 46 ht->ht_size = round_up_2 (size);
47 ht->ht_empty_slots = ht->ht_size;
48 ht->ht_vec = (void**) CALLOC (struct token *, ht->ht_size);
52 ht->ht_size * sizeof(struct token *));
56 ht->ht_capacity = ht->ht_size - (ht->ht_size / 16); /* 93.75% loading factor */
96 hash_1 &= (ht->ht_size - 1);
148 if (ht->ht_empty_slots < ht->ht_size - ht->ht_capacity)
182 void **end = &vec[ht->ht_size];
191 ht->ht_empty_slots = ht->ht_size;
    [all...]
hash.h 46 unsigned long ht_size; /* total number of slots (power of 2) */ member in struct:hash_table
variable.c 296 struct variable **end = &vp[global_variable_set.table.ht_size];
651 struct variable **from_var_end = from_var_slot + from_set->table.ht_size;
888 v_end = v_slot + set->table.ht_size;
958 v_end = v_slot + table.ht_size;
    [all...]
dir.c 997 dir_end = dir_slot + directories.ht_size;
1031 files_end = files_slot + dir->contents->dirfiles.ht_size;
1136 struct dirfile **dirfile_end = (struct dirfile **) dc->dirfiles.ht_vec + dc->dirfiles.ht_size;
file.c 355 file_end = file_slot + files.ht_size;
1017 struct file **end = &fp[files.ht_size];
  /external/opencv/otherlibs/highgui/
grfmt_jpeg.cpp 978 int i, ht_size; local
992 for( i = 0, ht_size = 0; i < max_bits; i++ ) ht_size += buffer[i];
994 if( length < ht_size ) return false;
995 length -= ht_size;
997 lstrm.GetBytes( buffer + max_bits, ht_size );
    [all...]

Completed in 617 milliseconds