Home
last modified time | relevance | path

Searched refs:newtable (Results 1 – 1 of 1) sorted by relevance

/tools/xenstored/
A Dhashtable.c104 struct entry **newtable; in hashtable_expand() local
113 newtable = talloc_realloc(h, h->table, struct entry *, newsize); in hashtable_expand()
114 if (!newtable) in hashtable_expand()
120 h->table = newtable; in hashtable_expand()
121 memset(newtable + h->tablelength, 0, in hashtable_expand()
122 (newsize - h->tablelength) * sizeof(*newtable)); in hashtable_expand()
124 for (pE = &(newtable[i]), e = *pE; e != NULL; e = *pE) { in hashtable_expand()
133 e->next = newtable[index]; in hashtable_expand()
134 newtable[index] = e; in hashtable_expand()

Completed in 2 milliseconds