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

/freebsd-10-stable/lib/libc/net/
H A Dgethostnamadr.c272 struct hostent new_ht; local
322 memcpy(&new_ht, ht, sizeof(struct hostent));
330 if (new_ht.h_name != NULL) {
331 size = strlen(new_ht.h_name);
332 memcpy(p, new_ht.h_name, size);
333 new_ht.h_name = p;
337 if (new_ht.h_aliases != NULL) {
339 memcpy(p, new_ht.h_aliases, sizeof(char *) * aliases_size);
340 new_ht.h_aliases = (char **)p;
343 for (iter = new_ht
[all...]
/freebsd-10-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-10-stable/contrib/sqlite3/
H A Dsqlite3.c28779 struct _ht *new_ht; /* The new hash table */ local
149742 struct _fts3ht *new_ht; /* The new hash table */ local
[all...]

Completed in 585 milliseconds