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

/freebsd-11-stable/lib/libc/net/
H A Dgethostnamadr.c265 struct hostent new_ht; local
315 memcpy(&new_ht, ht, sizeof(struct hostent));
323 if (new_ht.h_name != NULL) {
324 size = strlen(new_ht.h_name);
325 memcpy(p, new_ht.h_name, size);
326 new_ht.h_name = p;
330 if (new_ht.h_aliases != NULL) {
332 memcpy(p, new_ht.h_aliases, sizeof(char *) * aliases_size);
333 new_ht.h_aliases = (char **)p;
336 for (iter = new_ht
[all...]
/freebsd-11-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c21901 struct _ht *new_ht; /* The new hash table */ local
21916 new_ht = (struct _ht *)sqlite3Malloc( new_size*sizeof(struct _ht) );
21919 if( new_ht==0 ) return 0;
21921 pH->ht = new_ht;
21922 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
21923 memset(new_ht, 0, new_size*sizeof(struct _ht));
21927 insertElement(pH, &new_ht[h], elem);
120700 struct _fts3ht *new_ht; /* The new hash table */ local
[all...]
/freebsd-11-stable/contrib/sqlite3/
H A Dsqlite3.c33300 struct _ht *new_ht; /* The new hash table */ local
178152 struct _fts3ht *new_ht; /* The new hash table */ local
[all...]

Completed in 1000 milliseconds