OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SIZE_CELL
(Results
1 - 2
of
2
) sorted by null
/external/srec/portable/include/
pmalloc.h
57
#define
SIZE_CELL
((sizeof (_Cell) + M_MASK) & ~M_MASK)
61
psize_t _Size; /* CELL_OFF <=
SIZE_CELL
<= _Size */
62
struct _Cell *_Next; /* reused if CELL_OFF <
SIZE_CELL
*/
/external/srec/portable/src/
pmalloc.c
247
passert(
SIZE_CELL
<= p->_Size);
356
if (size <
SIZE_CELL
) /* round up size */
357
size =
SIZE_CELL
;
361
if (q->_Size -
SIZE_CELL
< size)
462
if (size <
SIZE_CELL
|| (size & M_MASK) != 0)
Completed in 844 milliseconds