HomeSort by relevance Sort by last modified time
    Searched defs:kMaxSize (Results 26 - 32 of 32) sorted by null

12

  /hardware/interfaces/sensors/1.0/vts/functional/
VtsHalSensorsV1_0TargetTest.cpp 368 constexpr size_t kMaxSize = 128*1024*1024; // sensor test should not need more than 128M
369 if (size == 0 || size >= kMaxSize) {
    [all...]
  /art/compiler/utils/mips/
assembler_mips.h 93 static constexpr size_t kMaxSize = 8;
97 DCHECK_LE(size, Literal::kMaxSize);
128 uint8_t data_[kMaxSize];
    [all...]
  /art/compiler/utils/mips64/
assembler_mips64.h 325 static constexpr size_t kMaxSize = 8;
329 DCHECK_LE(size, Literal::kMaxSize);
360 uint8_t data_[kMaxSize];
    [all...]
  /art/runtime/gc/collector/
mark_sweep.cc 666 static const size_t kMaxSize = 1 * KB;
746 StackReference<mirror::Object> mark_stack_[kMaxSize];
752 if (UNLIKELY(mark_stack_pos_ == kMaxSize)) {
757 kMaxSize - mark_stack_pos_,
762 DCHECK_LT(mark_stack_pos_, kMaxSize);
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h 36 // Last class corresponds to kMaxSize = 1 << kMaxSizeLog.
111 static const uptr kMaxSize = 1UL << kMaxSizeLog;
131 if (size > kMaxSize) return 0;
182 CHECK_EQ(ClassID(kMaxSize + 1), 0);
184 for (uptr s = 1; s <= kMaxSize; s++) {
349 return size <= SizeClassMap::kMaxSize &&
350 alignment <= SizeClassMap::kMaxSize;
736 return size <= SizeClassMap::kMaxSize &&
737 alignment <= SizeClassMap::kMaxSize;
    [all...]
  /external/v8/src/
assembler.h 667 static const int kMaxSize = 15;
    [all...]
objects.h     [all...]

Completed in 2920 milliseconds

12