HomeSort by relevance Sort by last modified time
    Searched refs:IsPowerOfTwo (Results 1 - 25 of 31) sorted by null

1 2

  /art/runtime/base/
bounded_fifo.h 29 static_assert(IsPowerOfTwo(kMaxSize), "kMaxSize must be a power of 2.");
bit_utils.h 97 static constexpr bool IsPowerOfTwo(T x) {
107 DCHECK((x != 0) && IsPowerOfTwo(x));
119 DCHECK_CONSTEXPR(IsPowerOfTwo(n), , T(0))
  /art/cmdline/
memory_representation.h 32 static_assert(IsPowerOfTwo(kDivisor), "Divisor must be a power of 2");
  /external/compiler-rt/lib/asan/
asan_flags.cc 145 CHECK(IsPowerOfTwo(f->redzone));
146 CHECK(IsPowerOfTwo(f->max_redzone));
asan_allocator.cc 44 CHECK(IsPowerOfTwo(rz_size));
250 CHECK(IsPowerOfTwo(options.min_redzone));
251 CHECK(IsPowerOfTwo(options.max_redzone));
341 CHECK(IsPowerOfTwo(alignment));
  /art/runtime/
monitor_pool.h 191 static_assert(IsPowerOfTwo(kChunkSize), "kChunkSize must be power of 2");
198 static_assert(IsPowerOfTwo(kInitialChunkStorage), "kInitialChunkStorage must be power of 2");
201 static_assert(IsPowerOfTwo(kMaxChunkLists), "kMaxChunkLists must be power of 2");
207 static_assert(IsPowerOfTwo(kMaxListSize), "kMaxListSize must be power of 2");
  /external/gemmlowp/internal/
common.h 229 struct IsPowerOfTwo {
  /system/extras/simpleperf/
utils.h 113 bool IsPowerOfTwo(uint64_t value);
event_fd.cpp 109 CHECK(IsPowerOfTwo(mmap_pages));
utils.cpp 98 bool IsPowerOfTwo(uint64_t value) {
cmd_record.cpp 388 if (*endptr != '\0' || !IsPowerOfTwo(pages)) {
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.h 417 INLINE bool IsPowerOfTwo(uptr x) {
423 if (IsPowerOfTwo(size)) return size;
432 RAW_CHECK(IsPowerOfTwo(boundary));
445 CHECK(IsPowerOfTwo(x));
sanitizer_common.cc 238 CHECK(IsPowerOfTwo(size));
239 CHECK(IsPowerOfTwo(alignment));
sanitizer_allocator.h     [all...]
  /art/compiler/optimizing/
gvn.cc 46 DCHECK(IsPowerOfTwo(num_buckets_));
60 DCHECK(IsPowerOfTwo(num_buckets_));
instruction_simplifier.cc     [all...]
code_generator_arm.cc     [all...]
code_generator_x86.cc     [all...]
code_generator_x86_64.cc     [all...]
  /art/runtime/mirror/
array-inl.h 52 DCHECK(IsPowerOfTwo(component_size)) << component_size;
  /frameworks/native/cmds/installd/
otapreopt.cpp 66 return DCHECK_CONSTEXPR(IsPowerOfTwo(n), , T(0))(x & -n);
  /art/compiler/utils/arm/
assembler_thumb2.cc 894 if (IsPowerOfTwo(regs)) {
912 if (IsPowerOfTwo(regs)) {
    [all...]
  /art/compiler/utils/mips64/
assembler_mips64.cc     [all...]
  /art/compiler/utils/x86/
assembler_x86.cc     [all...]
  /art/compiler/utils/x86_64/
assembler_x86_64.cc     [all...]

Completed in 485 milliseconds

1 2