Home
last modified time | relevance | path

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

/haiku/src/bin/bfs_tools/lib/
H A DHashtable.cpp245 struct Entry **oldTable = fTable,**newtable; in Rehash() local
250 if (!(newtable = (struct Entry **)malloc(newCapacity * sizeof(struct Entry *)))) in Rehash()
252 memset(newtable,0,newCapacity*sizeof(struct Entry *)); in Rehash()
256 fTable = newtable; in Rehash()
267 entry->next = newtable[index]; in Rehash()
268 newtable[index] = entry; in Rehash()