Lines Matching refs:cmid
310 MemCellHdr cbeg, cmid, cend; in os_init_mem_block() local
316 cmid = (MemCellHdr)((picoos_objsize_t)newBlockAddr + this->fullCellHdrSize); in os_init_mem_block()
322 cmid->size = size - 2 * this->fullCellHdrSize; in os_init_mem_block()
323 cmid->leftCell = cbeg; in os_init_mem_block()
325 cend->leftCell = cmid; in os_init_mem_block()
327 cbeg->nextFree = cmid; in os_init_mem_block()
329 cmid->nextFree = cend; in os_init_mem_block()
330 cmid->prevFree = cbeg; in os_init_mem_block()
332 cend->prevFree = cmid; in os_init_mem_block()
339 cmid->nextFree = this->freeCells->nextFree; in os_init_mem_block()
340 cmid->prevFree = this->freeCells; in os_init_mem_block()
341 cmid->nextFree->prevFree = cmid; in os_init_mem_block()
342 cmid->prevFree->nextFree = cmid; in os_init_mem_block()