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

/macosx-10.10/Heimdal-398.1.2/lib/sqlite/
H A Dsqlite3.c7350 ** element pointed to plus the next _ht.count-1 elements in the list.
7362 struct _ht { /* the hash table */ struct in struct:Hash
21868 struct _ht *pEntry, /* The entry into which pNew is inserted */
21901 struct _ht *new_ht; /* The new hash table */
21905 if( new_size*sizeof(struct _ht)>SQLITE_MALLOC_SOFT_LIMIT ){
21906 new_size = SQLITE_MALLOC_SOFT_LIMIT/sizeof(struct _ht);
21916 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
21922 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
21923 memset(new_ht, 0, new_size*sizeof(struct _ht));
[all...]

Completed in 390 milliseconds