HomeSort by relevance Sort by last modified time
    Searched full:is_power_of_two (Results 1 - 14 of 14) sorted by null

  /external/compiler-rt/test/asan/TestCases/
coverage-reset.cc 30 #define IS_POWER_OF_TWO(a) ((a & ((a) - 1)) == 0)
39 assert(IS_POWER_OF_TWO(main_bit));
44 assert(IS_POWER_OF_TWO(foo_bit));
49 assert(IS_POWER_OF_TWO(bar_bit));
  /external/libcxx/test/libcxx/containers/unord/
next_pow2.pass.cpp 29 is_power_of_two(unsigned long n) function
37 assert(is_power_of_two(npow2) && npow2 > n);
43 assert(!is_power_of_two(0));
44 assert(is_power_of_two(1));
45 assert(is_power_of_two(2));
46 assert(!is_power_of_two(3));
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/containers/unord/
next_pow2.pass.cpp 29 is_power_of_two(unsigned long n) function
37 assert(is_power_of_two(npow2) && npow2 > n);
43 assert(!is_power_of_two(0));
44 assert(is_power_of_two(1));
45 assert(is_power_of_two(2));
46 assert(!is_power_of_two(3));
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/xlat_tables/
xlat_tables_arch.h 26 IS_POWER_OF_TWO(size))
33 (IS_POWER_OF_TWO(size))
  /device/google/contexthub/firmware/os/inc/
util.h 47 static inline bool IS_POWER_OF_TWO(unsigned int n)
63 return IS_POWER_OF_TWO(n) ? LOG2_FLOOR(n) : LOG2_FLOOR(n) + 1;
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/
utils_def.h 14 #define IS_POWER_OF_TWO(x) \
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorFFT.h 221 const bool is_power_of_two = isPowerOfTwo(line_len); local
222 const Index good_composite = is_power_of_two ? 0 : findGoodComposite(line_len);
223 const Index log_len = is_power_of_two ? getLog2(line_len) : getLog2(good_composite);
225 ComplexScalar* a = is_power_of_two ? NULL : (ComplexScalar*)m_device.allocate(sizeof(ComplexScalar) * good_composite);
226 ComplexScalar* b = is_power_of_two ? NULL : (ComplexScalar*)m_device.allocate(sizeof(ComplexScalar) * good_composite);
227 ComplexScalar* pos_j_base_powered = is_power_of_two ? NULL : (ComplexScalar*)m_device.allocate(sizeof(ComplexScalar) * (line_len + 1));
228 if (!is_power_of_two) {
265 if (is_power_of_two) {
284 if (!is_power_of_two) {
  /external/v8/src/base/utils/
random-number-generator.cc 85 if (IS_POWER_OF_TWO(max)) {
  /external/v8/src/base/
macros.h 180 #define IS_POWER_OF_TWO(x) ((x) != 0 && (((x) & ((x) - 1)) == 0))
274 DCHECK(IS_POWER_OF_TWO(m));
  /external/v8/src/snapshot/
serializer-common.h 65 STATIC_ASSERT(IS_POWER_OF_TWO(kSize));
  /external/v8/src/crankshaft/
lithium-allocator.h 112 STATIC_ASSERT(IS_POWER_OF_TWO(kStep));
  /external/v8/src/compiler/
register-allocator.h 163 STATIC_ASSERT(IS_POWER_OF_TWO(kHalfStep));
    [all...]
  /external/v8/src/arm64/
assembler-arm64.cc     [all...]
  /external/v8/src/
objects.h     [all...]

Completed in 476 milliseconds