HomeSort by relevance Sort by last modified time
    Searched refs:new_ht (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/third_party/sqlite/src/src/
hash.c 104 struct _ht *new_ht; /* The new hash table */ local
119 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
122 if( new_ht==0 ) return 0;
124 pH->ht = new_ht;
125 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
126 memset(new_ht, 0, new_size*sizeof(struct _ht));
130 insertElement(pH, &new_ht[h], elem);
  /external/chromium_org/third_party/sqlite/src/ext/fts1/
ft_hash.c 232 struct _ht *new_ht; /* The new hash table */ local
237 new_ht = (struct _ht *)pH->xMalloc( new_size*sizeof(struct _ht) );
238 if( new_ht==0 ) return;
240 pH->ht = new_ht;
246 insertElement(pH, &new_ht[h], elem);
fts1_hash.c 190 struct _fts1ht *new_ht; /* The new hash table */ local
195 new_ht = (struct _fts1ht *)pH->xMalloc( new_size*sizeof(struct _fts1ht) );
196 if( new_ht==0 ) return;
198 pH->ht = new_ht;
204 insertElement(pH, &new_ht[h], elem);
  /external/chromium_org/third_party/sqlite/src/ext/fts2/
fts2_hash.c 195 struct _fts2ht *new_ht; /* The new hash table */ local
200 new_ht = (struct _fts2ht *)fts2HashMalloc( new_size*sizeof(struct _fts2ht) );
201 if( new_ht==0 ) return;
203 pH->ht = new_ht;
209 insertElement(pH, &new_ht[h], elem);
  /external/chromium_org/third_party/sqlite/src/ext/fts3/
fts3_hash.c 197 struct _fts3ht *new_ht; /* The new hash table */ local
202 new_ht = (struct _fts3ht *)fts3HashMalloc( new_size*sizeof(struct _fts3ht) );
203 if( new_ht==0 ) return 1;
205 pH->ht = new_ht;
211 fts3HashInsertElement(pH, &new_ht[h], elem);
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c 21490 struct _ht *new_ht; \/* The new hash table *\/ local
118546 struct _fts3ht *new_ht; \/* The new hash table *\/ local
    [all...]
  /external/sqlite/dist/orig/
sqlite3.c 22336 struct _ht *new_ht; \/* The new hash table *\/ local
123497 struct _fts3ht *new_ht; \/* The new hash table *\/ local
    [all...]
  /external/sqlite/dist/
sqlite3.c 22336 struct _ht *new_ht; \/* The new hash table *\/ local
123543 struct _fts3ht *new_ht; \/* The new hash table *\/ local
    [all...]

Completed in 493 milliseconds