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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dhash.c51 void sqliteHashClear(Hash *pH){ argument
54 assert( pH!=0 );
55 elem = pH->first;
56 pH->first = 0;
57 if( pH->ht ) sqliteFree(pH->ht);
58 pH->ht = 0;
59 pH->htsize = 0;
62 if( pH->copyKey && elem->pKey ){
68 pH
168 rehash(Hash *pH, int new_size) argument
206 findElementGivenHash( const Hash *pH, const void *pKey, int nKey, int h ) argument
233 removeElementGivenHash( Hash *pH, HashElem* elem, int h ) argument
264 sqliteHashFind(const Hash *pH, const void *pKey, int nKey) argument
293 sqliteHashInsert(Hash *pH, const void *pKey, int nKey, void *data) argument
[all...]

Completed in 52 milliseconds