Home
last modified time | relevance | path

Searched refs:IS_POWER_OF_TWO (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/arm-trusted-firmware/include/lib/xlat_tables/
Dxlat_tables_arch.h26 IS_POWER_OF_TWO(size))
33 (IS_POWER_OF_TWO(size))
/device/google/contexthub/firmware/os/inc/
Dutil.h47 static inline bool IS_POWER_OF_TWO(unsigned int n) in IS_POWER_OF_TWO() function
63 return IS_POWER_OF_TWO(n) ? LOG2_FLOOR(n) : LOG2_FLOOR(n) + 1; in LOG2_CEIL()
/device/linaro/bootloader/arm-trusted-firmware/include/lib/
Dutils_def.h14 #define IS_POWER_OF_TWO(x) \ macro