Home
last modified time | relevance | path

Searched refs:next_chunk (Results 1 – 4 of 4) sorted by relevance

/openbmc/u-boot/common/
H A Ddlmalloc.c399 #define next_chunk(p) ((mchunkptr)( ((char*)(p)) + ((p)->size & ~PREV_INUSE) )) macro
788 mchunkptr next = next_chunk(p);
801 assert(next_chunk(prv) == p);
1819 if ( (newp = mem2chunk(newmem)) == next_chunk(oldp))
2279 for (q = next_chunk(p); in malloc_update_mallinfo()
2281 q = next_chunk(q)) in malloc_update_mallinfo()
H A Ddlmalloc.src1318 #define next_chunk(p) ((mchunkptr)( ((char*)(p)) + ((p)->size & ~PREV_INUSE) ))
1653 mchunkptr next = next_chunk(p);
1666 assert(next_chunk(prv) == p);
2656 if ( (newp = mem2chunk(newmem)) == next_chunk(oldp))
3057 for (q = next_chunk(p);
3059 q = next_chunk(q))
/openbmc/qemu/hw/display/
H A Dqxl-render.c234 next_chunk_phys = chunk->next_chunk; in qxl_unpack_chunks()
/openbmc/qemu/block/
H A Dmirror.c561 int64_t next_chunk = next_offset / s->granularity; in mirror_iteration() local
566 if (test_bit(next_chunk, s->in_flight_bitmap)) { in mirror_iteration()