Searched refs:fIteratorEntry (Results 1 - 2 of 2) sorted by relevance

/haiku/src/bin/bfs_tools/lib/
H A DHashtable.cpp170 fIteratorEntry = fTable[0];
172 else if (fIteratorEntry)
173 fIteratorEntry = fIteratorEntry->next;
176 while (!fIteratorEntry && fIteratorIndex + 1 < fCapacity)
177 fIteratorEntry = fTable[++fIteratorIndex];
179 if (fIteratorEntry)
181 *value = fIteratorEntry->value;
H A DHashtable.h61 Entry *fIteratorEntry; member in class:Hashtable

Completed in 43 milliseconds