Home
last modified time | relevance | path

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

/external/brotli/c/enc/
Dencode.c205 size_t htsize = 256; in HashTableSize() local
206 while (htsize < max_table_size && htsize < input_size) { in HashTableSize()
207 htsize <<= 1; in HashTableSize()
209 return htsize; in HashTableSize()
220 size_t htsize = HashTableSize(max_table_size, input_size); in GetHashTable() local
225 if ((htsize & 0xAAAAA) == 0) { in GetHashTable()
226 htsize <<= 1; in GetHashTable()
230 if (htsize <= sizeof(s->small_table_) / sizeof(s->small_table_[0])) { in GetHashTable()
233 if (htsize > s->large_table_size_) { in GetHashTable()
234 s->large_table_size_ = htsize; in GetHashTable()
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c12476 unsigned int htsize; /* Number of buckets in the hash table */ member
30112 pNew->htsize = 0;
30128 pH->htsize = 0;
30199 if( new_size==pH->htsize ) return 0;
30217 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
30244 h = strHash(pKey) % pH->htsize;
30346 if( pH->count>=10 && pH->count > 2*pH->htsize ){
30348 assert( pH->htsize>0 );
30349 h = strHash(pKey) % pH->htsize;
148434 int htsize; /* Number of buckets in the hash table */
[all …]
/external/sqlite/dist/
Dsqlite3.c12476 unsigned int htsize; /* Number of buckets in the hash table */ member
30112 pNew->htsize = 0;
30128 pH->htsize = 0;
30199 if( new_size==pH->htsize ) return 0;
30217 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
30244 h = strHash(pKey) % pH->htsize;
30346 if( pH->count>=10 && pH->count > 2*pH->htsize ){
30348 assert( pH->htsize>0 );
30349 h = strHash(pKey) % pH->htsize;
148450 int htsize; /* Number of buckets in the hash table */
[all …]