Lines Matching refs:Cell

85 #define HEADERSIZE      ROUND(sizeof(Cell), ALIGNMENT)
101 typedef struct Cell Cell; typedef
106 struct Cell struct
108 Cell *prev; argument
109 Cell *next; argument
123 Cell *free; // pointer to the first free cell argument
124 Cell *allocated; // pointer to the first used cell
174 static Cell *DLAddFront(Cell * list, Cell * cell) in DLAddFront()
195 static Cell *DLLookup(Cell * list, Cell * cell) in DLLookup()
219 static Cell *DLExtract(Cell * list, Cell * cell) in DLExtract()
249 static Cell *DLInsert(Cell * list, Cell * cell) in DLInsert()
251 Cell *prev; in DLInsert()
252 Cell *next; in DLInsert()
311 static BOOL DLOverlap(Cell * list, void *start, void *end) in DLOverlap()
313 Cell *cell; in DLOverlap()
334 static long DLSize(Cell * list) in DLSize()
336 Cell *cell; in DLSize()
364 Cell *cell; // candidate block in OS_AllocFromHeap()
365 Cell *newCell; // ptr to leftover block in OS_AllocFromHeap()
437 newCell = (Cell *) ((char *)cell + size); in OS_AllocFromHeap()
498 Cell *cell; // object iterator in OS_AllocFixed()
499 Cell *newCell; // for creating new objects if necessary in OS_AllocFixed()
593 newCell = (Cell *) end; in OS_AllocFixed()
632 newCell = (Cell *) end; in OS_AllocFixed()
677 Cell *cell; in OS_FreeToHeap()
705 cell = (Cell *) ((char *)ptr - HEADERSIZE); in OS_FreeToHeap()
741 Cell *cell; in OS_FreeAllToHeap()
916 Cell *cell; in OS_CreateHeap()
956 cell = (Cell *) start; in OS_CreateHeap()
1002 Cell *cell; in OS_CreateExtraHeap()
1023 cell = (Cell*)HW_MAIN_MEM_PARAMETER_BUF; in OS_CreateExtraHeap()
1132 Cell *cell; in OS_AddToHeap()
1181 cell = (Cell *) start; in OS_AddToHeap()
1269 Cell *cell; in OS_CheckHeap()
1370 Cell *cell; in OS_ReferentSize()
1391 cell = (Cell *) ((char *)ptr - HEADERSIZE); in OS_ReferentSize()
1418 Cell *cell; in OS_DumpHeap()
1508 Cell *cell; in OS_VisitAllocated()
1549 Cell *cell; in OSi_GetTotalAllocSize()
1598 Cell *cell; in OS_GetTotalFreeSize()
1636 Cell *cell; in OS_GetMaxFreeSize()
1684 Cell *cell; in OS_ClearHeap()
1720 cell = (Cell *) start; in OS_ClearHeap()