Home
last modified time | relevance | path

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

/external/dtc/
Ddtc.c26 static int is_power_of_2(int x) in is_power_of_2() function
/external/fsverity-utils/common/
Dcommon_defs.h67 static inline bool is_power_of_2(unsigned long n) in is_power_of_2() function
/external/arm-trusted-firmware/drivers/io/
Dio_block.c26 #define is_power_of_2(x) (((x) != 0U) && (((x) & ((x) - 1U)) == 0U)) macro
/external/grpc-grpc/src/core/lib/channel/
Dhandshaker.cc135 static bool is_power_of_2(size_t n) { return (n & (n - 1)) == 0; } in is_power_of_2() function
/external/e2fsprogs/lib/ext2fs/
Djfs_compat.h62 #define is_power_of_2(x) ((x) != 0 && (((x) & ((x) - 1)) == 0)) macro
/external/arm-trusted-firmware/tools/fiptool/
Dfiptool.c631 static int is_power_of_2(unsigned long x) in is_power_of_2() function