Searched defs:is_power_of_2 (Results 1 – 8 of 8) sorted by relevance
50 bool is_power_of_2(unsigned long n) in is_power_of_2() function
48 static inline int is_power_of_2(u64 x) in is_power_of_2() function
39 static int is_power_of_2(int x) in is_power_of_2() function
135 static bool is_power_of_2(size_t n) { return (n & (n - 1)) == 0; } in is_power_of_2() function
62 static inline bool is_power_of_2(unsigned long n) in is_power_of_2() function
62 #define is_power_of_2(x) ((x) != 0 && (((x) & ((x) - 1)) == 0)) macro
651 static inline int is_power_of_2(u64 x) in is_power_of_2() function