Searched refs:_ht (Results 1 – 4 of 4) sorted by relevance
74 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()
47 struct _ht { /* the hash table */ struct
205 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()
40 struct _ht { /* the hash table */ struct