Home
last modified time | relevance | path

Searched refs:nextFree (Results 1 – 2 of 2) sorted by relevance

/external/valgrind/coregrind/
Dm_poolalloc.c48 void* nextFree; member
74 pa->nextFree = NULL; in VG_()
97 vg_assert(pa->nextFree == NULL); in pal_add_new_pool()
106 *elem = (UWord)pa->nextFree; in pal_add_new_pool()
107 pa->nextFree = elem; in pal_add_new_pool()
122 if (UNLIKELY(pa->nextFree == NULL)) { in VG_()
125 elem = pa->nextFree; in VG_()
126 pa->nextFree = (void*)*elem; in VG_()
134 *elem = (UWord)pa->nextFree; in VG_()
135 pa->nextFree = elem; in VG_()
/external/svox/pico/lib/
Dpicoos.c254 MemCellHdr prevFree, nextFree; member
327 cbeg->nextFree = cmid; in os_init_mem_block()
329 cmid->nextFree = cend; in os_init_mem_block()
331 cend->nextFree = NULL; in os_init_mem_block()
337 cbeg->nextFree = NULL; in os_init_mem_block()
339 cmid->nextFree = this->freeCells->nextFree; 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()
343 cend->nextFree = NULL; in os_init_mem_block()
523 c = this->freeCells->nextFree; in picoos_allocate()
[all …]