Searched refs:htsize (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dft_hash.c52 pNew->htsize = 0;
70 pH->htsize = 0;
241 pH->htsize = new_size;
329 assert( (pH->htsize & (pH->htsize-1))==0 );
330 elem = findElementGivenHash(pH,pKey,nKey, h & (pH->htsize-1));
360 assert( (pH->htsize & (pH->htsize-1))==0 );
361 h = hraw & (pH->htsize-1);
387 if( pH->htsize
[all...]
H A Dfts1_hash.c59 pNew->htsize = 0;
77 pH->htsize = 0;
199 pH->htsize = new_size;
287 assert( (pH->htsize & (pH->htsize-1))==0 );
288 elem = findElementGivenHash(pH,pKey,nKey, h & (pH->htsize-1));
323 assert( (pH->htsize & (pH->htsize-1))==0 );
324 h = hraw & (pH->htsize-1);
350 if( pH->htsize
[all...]
H A Dft_hash.h39 int htsize; /* Number of buckets in the hash table */ member in struct:Hash
H A Dfts1_hash.h39 int htsize; /* Number of buckets in the hash table */ member in struct:fts1Hash
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_hash.c66 pNew->htsize = 0;
82 pH->htsize = 0;
204 pH->htsize = new_size;
292 assert( (pH->htsize & (pH->htsize-1))==0 );
293 elem = findElementGivenHash(pH,pKey,nKey, h & (pH->htsize-1));
328 assert( (pH->htsize & (pH->htsize-1))==0 );
329 h = hraw & (pH->htsize-1);
355 if( pH->htsize
[all...]
H A Dfts2_hash.h37 int htsize; /* Number of buckets in the hash table */ member in struct:fts2Hash
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_hash.c66 pNew->htsize = 0;
82 pH->htsize = 0;
206 pH->htsize = new_size;
294 assert( (pH->htsize & (pH->htsize-1))==0 );
295 return fts3FindElementByHash(pH,pKey,nKey, h & (pH->htsize-1));
341 assert( (pH->htsize & (pH->htsize-1))==0 );
342 h = hraw & (pH->htsize-1);
354 if( (pH->htsize
[all...]
H A Dfts3_hash.h37 int htsize; /* Number of buckets in the hash table */ member in struct:Fts3Hash
/external/chromium_org/third_party/sqlite/src/src/
H A Dhash.c27 pNew->htsize = 0;
43 pH->htsize = 0;
111 if( new_size==pH->htsize ) return 0;
125 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
211 h = strHash(pKey, nKey) % pH->htsize;
241 if( pH->htsize ){
242 h = strHash(pKey, nKey) % pH->htsize;
265 if( pH->count>=10 && pH->count > 2*pH->htsize ){
267 assert( pH->htsize>0 );
268 h = strHash(pKey, nKey) % pH->htsize;
[all...]
H A Dhash.h33 ** There are Hash.htsize buckets. Each bucket points to a spot in
37 ** Hash.htsize and Hash.ht may be zero. In that case lookup is done
44 unsigned int htsize; /* Number of buckets in the hash table */ member in struct:Hash
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c7056 ** There are Hash.htsize buckets. Each bucket points to a spot in
7060 ** Hash.htsize and Hash.ht may be zero. In that case lookup is done
7067 unsigned int htsize; /* Number of buckets in the hash table */ member in struct:Hash
21398 pNew->htsize = 0;
21414 pH->htsize = 0;
21482 if( new_size==pH->htsize ) return 0;
21496 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
21582 h = strHash(pKey, nKey) % pH->htsize;
21612 if( pH->htsize ){
21613 h = strHash(pKey, nKey) % pH->htsize;
112915 int htsize; /* Number of buckets in the hash table */ member in struct:Fts3Hash
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c8130 ** There are Hash.htsize buckets. Each bucket points to a spot in
8134 ** Hash.htsize and Hash.ht may be zero. In that case lookup is done
8141 unsigned int htsize; /* Number of buckets in the hash table */ member in struct:Hash
23632 pNew->htsize = 0;
23648 pH->htsize = 0;
23716 if( new_size==pH->htsize ) return 0;
23734 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
23820 h = strHash(pKey, nKey) % pH->htsize;
23850 if( pH->htsize ){
23851 h = strHash(pKey, nKey) % pH->htsize;
126490 int htsize; /* Number of buckets in the hash table */ member in struct:Fts3Hash
[all...]
/external/sqlite/dist/
H A Dsqlite3.c8130 ** There are Hash.htsize buckets. Each bucket points to a spot in
8134 ** Hash.htsize and Hash.ht may be zero. In that case lookup is done
8141 unsigned int htsize; /* Number of buckets in the hash table */ member in struct:Hash
23632 pNew->htsize = 0;
23648 pH->htsize = 0;
23716 if( new_size==pH->htsize ) return 0;
23734 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
23820 h = strHash(pKey, nKey) % pH->htsize;
23850 if( pH->htsize ){
23851 h = strHash(pKey, nKey) % pH->htsize;
126510 int htsize; /* Number of buckets in the hash table */ member in struct:Fts3Hash
[all...]

Completed in 545 milliseconds