HomeSort by relevance Sort by last modified time
    Searched defs:IS_POWER_OF_TWO (Results 1 - 4 of 4) sorted by null

  /device/google/contexthub/firmware/inc/
util.h 36 static inline bool IS_POWER_OF_TWO(unsigned int n)
52 return IS_POWER_OF_TWO(n) ? LOG2_FLOOR(n) : LOG2_FLOOR(n) + 1;
  /external/compiler-rt/test/asan/TestCases/
coverage-reset.cc 23 #define IS_POWER_OF_TWO(a) ((a & ((a) - 1)) == 0)
32 assert(IS_POWER_OF_TWO(main_bit));
37 assert(IS_POWER_OF_TWO(foo_bit));
42 assert(IS_POWER_OF_TWO(bar_bit));
  /external/v8/src/base/
macros.h 226 #define IS_POWER_OF_TWO(x) ((x) != 0 && (((x) & ((x) - 1)) == 0))
320 DCHECK(IS_POWER_OF_TWO(m));
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_context.h 378 #define IS_POWER_OF_TWO(val) (((val) & (val - 1)) == 0)
601 is_power_of_two(uint32_t value) function

Completed in 87 milliseconds