Searched defs:htsize (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
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/src/ext/fts1/
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.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.h37 int htsize; /* Number of buckets in the hash table */ member in struct:Fts3Hash
/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 517 milliseconds