Searched defs:IS_POW2 (Results 1 – 2 of 2) sorted by relevance
908 #define IS_POW2(Value) ((Value) != 0U && ((Value) & ((Value) - 1U)) == 0U) macro
84 #define IS_POW2(x) (x && ((x & (x - 1)) == 0)) macro