Home
last modified time | relevance | path

Searched defs:IS_POW2 (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/contrib/edk2/Include/
H A DBase.h908 #define IS_POW2(Value) ((Value) != 0U && ((Value) & ((Value) - 1U)) == 0U) macro
/freebsd/sys/contrib/vchiq/interface/vchiq_arm/
H A Dvchiq_core.h84 #define IS_POW2(x) (x && ((x & (x - 1)) == 0)) macro