HomeSort by relevance Sort by last modified time
    Searched refs:kMaxSize (Results 1 - 24 of 24) sorted by null

  /external/compiler-rt/lib/tsan/tests/unit/
tsan_mutexset_test.cc 91 for (uptr i = 0; i < MutexSet::kMaxSize; i++) {
94 EXPECT_EQ(mset.Size(), MutexSet::kMaxSize);
95 for (uptr i = 0; i < MutexSet::kMaxSize; i++) {
99 for (uptr i = 0; i < MutexSet::kMaxSize; i++) {
102 EXPECT_EQ(mset.Size(), MutexSet::kMaxSize);
103 for (uptr i = 0; i < MutexSet::kMaxSize; i++) {
110 for (uptr i = 0; i < MutexSet::kMaxSize; i++) {
115 EXPECT_EQ(mset.Size(), MutexSet::kMaxSize);
116 for (uptr i = 0; i < MutexSet::kMaxSize; i++) {
119 else if (i == MutexSet::kMaxSize - 1
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_mutexset.h 25 static const uptr kMaxSize = 64;
44 Desc descs_[kMaxSize];
tsan_mutexset.cc 18 const uptr MutexSet::kMaxSize;
35 if (size_ == kMaxSize) {
45 CHECK_EQ(size_, kMaxSize - 1);
  /external/chromium/net/disk_cache/
block_files_unittest.cc 38 const int kMaxSize = 35000;
39 Addr address[kMaxSize];
42 for (int i = 0; i < kMaxSize; i++) {
48 for (int i = 0; i < kMaxSize * 4; i += 2) {
49 int target = i % kMaxSize;
65 const int kMaxSize = 35000;
66 Addr address[kMaxSize];
69 for (int i = 0; i < kMaxSize; i++) {
74 for (int i = 0; i < kMaxSize; i++) {
disk_cache_perftest.cc 40 const int kMaxSize = 16 * 1024 - 1;
43 // to kMaxSize of data to each entry.
48 scoped_refptr<net::IOBuffer> buffer2(new net::IOBuffer(kMaxSize));
51 CacheTestFillBuffer(buffer2->data(), kMaxSize, false);
65 entry.data_len = rand() % kMaxSize;
99 scoped_refptr<net::IOBuffer> buffer2(new net::IOBuffer(kMaxSize));
102 CacheTestFillBuffer(buffer2->data(), kMaxSize, false);
backend_impl.h 31 kMaxSize = 1 << 1, // A maximum size was provided.
backend_impl.cc 815 user_flags_ |= kMaxSize;
    [all...]
  /frameworks/av/services/medialog/
MediaLogService.h 37 static const size_t kMaxSize = 0x10000;
MediaLogService.cpp 32 size < kMinSize || size > kMaxSize || name == NULL ||
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_common.cc 198 const int kMaxSize = 1024; // We don't want a summary too long.
199 InternalScopedBuffer<char> buff(kMaxSize);
200 internal_snprintf(buff.data(), kMaxSize, "%s: %s %s:%d %s",
sanitizer_allocator.h 33 // Last class corresponds to kMaxSize = 1 << kMaxSizeLog.
108 static const uptr kMaxSize = 1 << kMaxSizeLog;
128 if (size > kMaxSize) return 0;
179 CHECK_EQ(ClassID(kMaxSize + 1), 0);
181 for (uptr s = 1; s <= kMaxSize; s++) {
325 return size <= SizeClassMap::kMaxSize &&
326 alignment <= SizeClassMap::kMaxSize;
610 return size <= SizeClassMap::kMaxSize &&
611 alignment <= SizeClassMap::kMaxSize;
    [all...]
  /external/chromium/base/allocator/
allocator_unittests.cc 15 static const size_t kMaxSize = ~static_cast<size_t>(0);
379 TestCalloc(kMaxSize, 2, false);
380 TestCalloc(2, kMaxSize, false);
381 TestCalloc(kMaxSize, kMaxSize, false);
  /external/v8/test/cctest/
test-reloc-info.cc 59 CHECK(writer.pos() - RelocInfoWriter::kMaxSize >= relocation_info_end);
test-heap.cc 888 int allocation_amount = Min(FixedArray::kMaxSize,
    [all...]
  /external/compiler-rt/lib/asan/
asan_allocator2.cc 164 // SizeClassMap::kMaxSize and the actual size is stored in the
184 if (user_requested_size != SizeClassMap::kMaxSize)
381 m->user_requested_size = SizeClassMap::kMaxSize;
410 if (needed_size > SizeClassMap::kMaxSize)
512 CHECK_LE(actual_size, SizeClassMap::kMaxSize);
  /external/webkit/Source/JavaScriptCore/wtf/
FastMalloc.cpp 605 // sense. In particular, if kMaxSize increases, you may have to
609 static const size_t kMaxSize = 8u * kPageSize;
641 static const size_t kMinThreadCacheSize = kMaxSize * 2;
859 if (static_cast<size_t>(ClassIndex(kMaxSize)) >= sizeof(class_array)) {
860 MESSAGE("Invalid class index %d for kMaxSize\n", ClassIndex(kMaxSize));
868 for (size_t size = kAlignment; size <= kMaxSize; size += (1 << alignshift)) {
927 for (size_t size = 0; size <= kMaxSize; size++) {
    [all...]
  /external/v8/src/
objects.h     [all...]
assembler.h 412 static const int kMaxSize = 16;
assembler.cc 374 ASSERT(begin_pos - pos_ <= kMaxSize);
    [all...]
liveedit.cc     [all...]
heap.cc     [all...]
  /external/v8/src/mips/
assembler-mips.h     [all...]
  /external/v8/src/arm/
assembler-arm.h     [all...]
  /external/v8/src/ia32/
macro-assembler-ia32.cc     [all...]

Completed in 454 milliseconds