Searched refs:freeList (Results 1 – 4 of 4) sorted by relevance
63 PHashTableEntry *freeList; member122 tmp->freeList = NULL; in PHashTableCreate()202 entry->next = entry->table->freeList; in removeEntry()203 entry->table->freeList = entry; in removeEntry()368 if (table->freeList == NULL) in PHashTablePutValue()397 table->freeList = block->entries; in PHashTablePutValue()401 entry = table->freeList; in PHashTablePutValue()402 table->freeList = entry->next; in PHashTablePutValue()
397 targetBlock->freeList = targetBlock->cells; in heapAllocate()406 Cell* newCell = targetBlock->freeList; in heapAllocate()409 targetBlock->freeList = (newCell + 1) + newCell->u.freeCell.next; in heapAllocate()983 Cell* freeList = curBlock->freeList; in sweep() local1007 cell->u.freeCell.next = freeList - (cell + 1); in sweep()1008 freeList = cell; in sweep()1028 cell->u.freeCell.next = freeList - (cell + 1); in sweep()1029 freeList = cell; in sweep()1036 curBlock->freeList = freeList; in sweep()
226 CollectorCell* freeList;236 SmallCollectorCell* freeList;
20969 than a pointer so we don't need a special case for NULL. Allow freeList to point to some