Lines Matching refs:ht
13423 } *ht; member
20826 nByte += sqlite3_msize(pSchema->tblHash.ht); in sqlite3_db_status()
20827 nByte += sqlite3_msize(pSchema->trigHash.ht); in sqlite3_db_status()
20828 nByte += sqlite3_msize(pSchema->idxHash.ht); in sqlite3_db_status()
20829 nByte += sqlite3_msize(pSchema->fkeyHash.ht); in sqlite3_db_status()
31876 pNew->ht = 0;
31889 sqlite3_free(pH->ht);
31890 pH->ht = 0;
31978 sqlite3_free(pH->ht);
31979 pH->ht = new_ht;
32005 if( pH->ht ){ /*OPTIMIZATION-IF-TRUE*/
32008 pEntry = &pH->ht[h];
32044 if( pH->ht ){
32045 pEntry = &pH->ht[h];
32115 insertElement(pH, pH->ht ? &pH->ht[h] : 0, new_elem);
126563 Hash ht; /* Hash table of column names */
126565 sqlite3HashInit(&ht);
126616 while( zName && sqlite3HashFind(&ht, zName)!=0 ){
126627 if( zName && sqlite3HashInsert(&ht, zName, pCol)==pCol ){
126631 sqlite3HashClear(&ht);
159882 } *ht;
168178 pNew->ht = 0;
168191 fts3HashFree(pH->ht);
168192 pH->ht = 0;
168315 fts3HashFree(pH->ht);
168316 pH->ht = new_ht;
168341 if( pH->ht ){
168342 struct _fts3ht *pEntry = &pH->ht[h];
168373 pEntry = &pH->ht[h];
168401 if( pH==0 || pH->ht==0 ) return 0;
168489 fts3HashInsertElement(pH, &pH->ht[h], new_elem);