Home
last modified time | relevance | path

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

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