HomeSort by relevance Sort by last modified time
    Searched refs:_Cell (Results 1 - 2 of 2) sorted by null

  /external/srec/portable/include/
pmalloc.h 55 #define CELL_OFF ((DKoffsetof(_Cell, _Next) + M_MASK) & ~M_MASK)
57 #define SIZE_CELL ((sizeof (_Cell) + M_MASK) & ~M_MASK)
59 typedef struct _Cell
62 struct _Cell *_Next; /* reused if CELL_OFF < SIZE_CELL */
64 _Cell;
67 _Cell **_Plast; /* null, or where to resume malloc scan */
68 _Cell *_Head; /* null, or lowest addressed free cell */
87 int _OK_Cell(_Cell *p);
  /external/srec/portable/src/
pmalloc.c 120 static _Cell *binsFirstFreeCell[NUM_MEM_BINS+1] = {0};
190 memset(binsFirstFreeCell, 0, sizeof(_Cell*)*(NUM_MEM_BINS + 1));
245 int _OK_Cell(_Cell *p)
272 _Cell *q;
295 static _Cell **findmem(psize_t size)
297 _Cell *q, **qb;
326 if ((q = (_Cell *)_Getmem(bs)) != 0)
342 _Cell *q, **qb;
411 *qb = (_Cell *)((char *)q + size);
441 register _Cell *q
    [all...]

Completed in 261 milliseconds