Home
last modified time | relevance | path

Searched refs:_ht (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/src/
H A Dhash.c74 struct _ht *pEntry, /* The entry into which pNew is inserted */ in insertElement()
107 struct _ht *new_ht; /* The new hash table */ in rehash()
111 if( new_size*sizeof(struct _ht)>SQLITE_MALLOC_SOFT_LIMIT ){ in rehash()
112 new_size = SQLITE_MALLOC_SOFT_LIMIT/sizeof(struct _ht); in rehash()
126 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) ); in rehash()
132 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht); in rehash()
133 memset(new_ht, 0, new_size*sizeof(struct _ht)); in rehash()
158 struct _ht *pEntry; in findElementWithHash()
187 struct _ht *pEntry; in removeElementGivenHash()
H A Dhash.h47 struct _ht { /* the hash table */ struct
/sqlite-3.40.0/ext/fts1/
H A Dft_hash.c205 struct _ht *pEntry, /* The entry into which pNew is inserted */ in insertElement()
232 struct _ht *new_ht; /* The new hash table */ in rehash()
237 new_ht = (struct _ht *)pH->xMalloc( new_size*sizeof(struct _ht) ); in rehash()
265 struct _ht *pEntry = &pH->ht[h]; in findElementGivenHash()
287 struct _ht *pEntry; in removeElementGivenHash()
H A Dft_hash.h40 struct _ht { /* the hash table */ struct