Home
last modified time | relevance | path

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

/external/fio/
Dsmalloc.c24 #define SMALLOC_BPB 32 /* block size, bytes-per-bit in bitmap */ macro
26 #define SMALLOC_BPL (SMALLOC_BPB * SMALLOC_BPI)
98 return (size + SMALLOC_BPB - 1) / SMALLOC_BPB; in size_to_blocks()
201 pool->free_blocks = bitmap_blocks * SMALLOC_BPB; in add_pool()
337 idx = (offset % SMALLOC_BPL) / SMALLOC_BPB; in sfree_pool()
412 offset = i * SMALLOC_BPL + idx * SMALLOC_BPB; in __smalloc_pool()