Home
last modified time | relevance | path

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

/openbmc/linux/tools/include/linux/
H A Dkernel.h21 #define PERF_ALIGN(x, a) __PERF_ALIGN_MASK(x, (typeof(x))(a)-1)
22 #define __PERF_ALIGN_MASK(x, mask) (((x)+(mask))&~(mask)) macro