Home
last modified time | relevance | path

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

/external/srec/portable/src/
Dphashtable.c63 PHashTableEntry *freeList; member
122 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()
/external/webkit/JavaScriptCore/runtime/
DCollector.cpp397 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() local
1007 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()
DCollector.h226 CollectorCell* freeList;
236 SmallCollectorCell* freeList;
/external/webkit/JavaScriptCore/
DChangeLog-2007-10-1420969 than a pointer so we don't need a special case for NULL. Allow freeList to point to some