Searched defs:_ht (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dhash.h35 ** element pointed to plus the next _ht.count-1 elements in the list.
47 struct _ht { /* the hash table */ struct in struct:Hash
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dft_hash.h40 struct _ht { /* the hash table */ struct in struct:Hash
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c7058 ** element pointed to plus the next _ht.count-1 elements in the list.
7070 struct _ht { /* the hash table */ struct in struct:Hash
21442 struct _ht *pEntry, /* The entry into which pNew is inserted */
21475 struct _ht *new_ht; /* The new hash table */
21479 if( new_size*sizeof(struct _ht)>SQLITE_MALLOC_SOFT_LIMIT ){
21480 new_size = SQLITE_MALLOC_SOFT_LIMIT/sizeof(struct _ht);
21490 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
21496 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
21497 memset(new_ht, 0, new_size*sizeof(struct _ht));
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c8132 ** element pointed to plus the next _ht.count-1 elements in the list.
8144 struct _ht { /* the hash table */ struct in struct:Hash
23676 struct _ht *pEntry, /* The entry into which pNew is inserted */
23709 struct _ht *new_ht; /* The new hash table */
23713 if( new_size*sizeof(struct _ht)>SQLITE_MALLOC_SOFT_LIMIT ){
23714 new_size = SQLITE_MALLOC_SOFT_LIMIT/sizeof(struct _ht);
23728 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
23734 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
23735 memset(new_ht, 0, new_size*sizeof(struct _ht));
[all...]
/external/sqlite/dist/
H A Dsqlite3.c8132 ** element pointed to plus the next _ht.count-1 elements in the list.
8144 struct _ht { /* the hash table */ struct in struct:Hash
23676 struct _ht *pEntry, /* The entry into which pNew is inserted */
23709 struct _ht *new_ht; /* The new hash table */
23713 if( new_size*sizeof(struct _ht)>SQLITE_MALLOC_SOFT_LIMIT ){
23714 new_size = SQLITE_MALLOC_SOFT_LIMIT/sizeof(struct _ht);
23728 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
23734 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
23735 memset(new_ht, 0, new_size*sizeof(struct _ht));
[all...]

Completed in 639 milliseconds