Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/tools/include/linux/
H A Dlog2.h38 bool is_power_of_2(unsigned long n) in is_power_of_2() function
/OK3568_Linux_fs/u-boot/include/linux/
H A Dlog2.h50 bool is_power_of_2(unsigned long n) in is_power_of_2() function
/OK3568_Linux_fs/kernel/include/linux/
H A Dlog2.h45 bool is_power_of_2(unsigned long n) in is_power_of_2() function
/OK3568_Linux_fs/kernel/scripts/dtc/
H A Ddtc.c26 static int is_power_of_2(int x) in is_power_of_2() function
/OK3568_Linux_fs/u-boot/scripts/dtc/
H A Ddtc.c39 static int is_power_of_2(int x) in is_power_of_2() function
/OK3568_Linux_fs/kernel/arch/microblaze/mm/
H A Dpgtable.c186 #define is_power_of_2(x) ((x) != 0 && (((x) & ((x) - 1)) == 0)) macro