Home
last modified time | relevance | path

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

/reactos/drivers/filesystems/ext2/inc/linux/
H A Dlog2.h51 bool is_power_of_2(unsigned long n) in is_power_of_2() function
/reactos/drivers/filesystems/ext2/src/
H A Dmemory.c2306 #define is_power_of_2(x) ((x) != 0 && (((x) & ((x) - 1)) == 0)) macro