Home
last modified time | relevance | path

Searched defs:is_power_of_2 (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/sys/external/bsd/common/include/linux/
H A Dlog2.h41 is_power_of_2(unsigned long x) in is_power_of_2() function
/netbsd-src/external/gpl2/dtc/dist/
H A Ddtc.c28 static int is_power_of_2(int x) in is_power_of_2() function
/netbsd-src/external/bsd/flex/dist/src/
H A Dflexdef.h124 #define is_power_of_2(n) ((n) > 0 && ((n) & ((n) - 1)) == 0) macro