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

  /external/chromium_org/third_party/sqlite/src/ext/fts1/
ft_hash.c 52 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==0 )
    [all...]
fts1_hash.c 59 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==0 )
    [all...]
ft_hash.h 39 int htsize; /* Number of buckets in the hash table */ member in struct:Hash
fts1_hash.h 39 int htsize; /* Number of buckets in the hash table */ member in struct:fts1Hash
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_hash.c 66 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==0 )
    [all...]
fts2_hash.h 37 int htsize; /* Number of buckets in the hash table */ member in struct:fts2Hash
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_hash.c 66 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==0 && fts3Rehash(pH,8)
    [all...]
fts3_hash.h 37 int htsize; /* Number of buckets in the hash table */ member in struct:Fts3Hash
  /external/chromium_org/third_party/sqlite/src/src/
hash.c 27 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...]
hash.h 33 ** 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/
sqlite3.c 7082 unsigned int htsize; \/* Number of buckets in the hash table *\/ member in struct:Hash
113105 int htsize; \/* Number of buckets in the hash table *\/ member in struct:Fts3Hash
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 7598 unsigned int htsize; \/* Number of buckets in the hash table *\/ member in struct:Hash
116357 int htsize; \/* Number of buckets in the hash table *\/ member in struct:Fts3Hash
    [all...]
  /external/sqlite/dist/
sqlite3.c 7598 unsigned int htsize; \/* Number of buckets in the hash table *\/ member in struct:Hash
116393 int htsize; \/* Number of buckets in the hash table *\/ member in struct:Fts3Hash
    [all...]

Completed in 970 milliseconds