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

  /external/compiler-rt/lib/tsan/rtl/
tsan_mutexset.cc 18 const uptr MutexSet::kMaxSize;
35 if (size_ == kMaxSize) {
45 CHECK_EQ(size_, kMaxSize - 1);
tsan_mutexset.h 25 static const uptr kMaxSize = 64;
44 Desc descs_[kMaxSize];
  /frameworks/av/services/medialog/
MediaLogService.h 37 static const size_t kMaxSize = 0x10000;
  /external/chromium/net/disk_cache/
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);
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++) {
backend_impl.h 31 kMaxSize = 1 << 1, // A maximum size was provided.
  /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/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/v8/src/
assembler.h 412 static const int kMaxSize = 16;
objects.h     [all...]

Completed in 99 milliseconds