Home
last modified time | relevance | path

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

/external/syslinux/gpxe/src/core/
Dmalloc.c44 #define MIN_MEMBLOCK_SIZE \ macro
111 size = ( size + MIN_MEMBLOCK_SIZE - 1 ) & ~( MIN_MEMBLOCK_SIZE - 1 ); in alloc_memblock()
112 align_mask = ( align - 1 ) | ( MIN_MEMBLOCK_SIZE - 1 ); in alloc_memblock()
137 if ( ( size_t ) post_size >= MIN_MEMBLOCK_SIZE ) { in alloc_memblock()
151 if ( pre_size < MIN_MEMBLOCK_SIZE ) in alloc_memblock()
187 size = ( size + MIN_MEMBLOCK_SIZE - 1 ) & ~( MIN_MEMBLOCK_SIZE - 1 ); in free_memblock()
355 free_memblock ( start, ( len & ~( MIN_MEMBLOCK_SIZE - 1 ) ) ); in mpopulate()