Lines Matching refs:fEntryList
141 fEntryList = NULL; in WIndex()
152 fEntryList = NULL; in WIndex()
163 if (fEntryList) in ~WIndex()
164 free(fEntryList); in ~WIndex()
172 if (fEntryList) in UnflattenIndex()
173 free(fEntryList); in UnflattenIndex()
188 if (!(fEntryList = (uint8 *)malloc(size))) in UnflattenIndex()
192 io->Read(fEntryList, size); in UnflattenIndex()
211 io->Write(fEntryList, head.entries * head.entrySize); in FlattenIndex()
231 if (key < ((WIndexEntry *)(fEntryList + (M * fEntrySize)))->key) in Lookup()
233 else if (key > ((WIndexEntry *)(fEntryList + (M * fEntrySize)))->key) in Lookup()
248 memcpy(((WIndexEntry *)(fEntryList + (fEntries * fEntrySize))), entry, in AddItem()
259 qsort(fEntryList, fEntries, fEntrySize, in SortItems()
272 uint8* tmpEntryList = (uint8 *)realloc(fEntryList, fBlockSize * fBlocks); in _BlockCheck()
274 free(fEntryList); in _BlockCheck()
275 fEntryList = NULL; in _BlockCheck()
278 fEntryList = tmpEntryList; in _BlockCheck()
287 if (fEntryList) in InitIndex()
288 free(fEntryList); in InitIndex()
294 fEntryList = (uint8 *)malloc(fBlockSize); in InitIndex()
295 if (!fEntryList) in InitIndex()