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

  /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 38 const int kMaxSize = 16 * 1024 - 1;
41 // to kMaxSize of data to each entry.
46 scoped_refptr<net::IOBuffer> buffer2 = new net::IOBuffer(kMaxSize);
49 CacheTestFillBuffer(buffer2->data(), kMaxSize, false);
63 entry.data_len = rand() % kMaxSize;
95 scoped_refptr<net::IOBuffer> buffer2 = new net::IOBuffer(kMaxSize);
98 CacheTestFillBuffer(buffer2->data(), kMaxSize, false);
backend_impl.h 25 kMaxSize = 1 << 1, // A maximum size was provided.
backend_impl.cc 662 user_flags_ |= kMaxSize;
    [all...]
  /external/chromium/net/url_request/
request_tracker_unittest.cc 128 size_t kMaxSize = RequestTracker<TestRequest>::kMaxGraveyardSize * 2;
129 for (size_t i = 0; i < kMaxSize; ++i) {
140 ASSERT_EQ(kMaxSize, recent_reqs.size());
142 for (size_t i = 0; i < kMaxSize; ++i) {
240 size_t kMaxSize = RequestTracker<TestRequest>::kMaxGraveyardSize * 2;
241 for (size_t i = 0; i < kMaxSize; ++i) {
248 ASSERT_EQ(kMaxSize, tracker.GetRecentlyDeceased().size());
253 kMaxSize = RequestTracker<TestRequest>::kMaxGraveyardSize;
254 for (size_t i = 0; i < kMaxSize; ++i) {
261 ASSERT_EQ(kMaxSize, tracker.GetRecentlyDeceased().size())
    [all...]
  /external/astl/include/
memory 88 const difference_type kMaxSize =
96 static_cast<size_t>(kMaxSize) / kSize > static_cast<size_t>(len)) {
  /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/src/
assembler.h 278 static const int kMaxSize = 16;
objects.h     [all...]
assembler.cc 254 ASSERT(begin_pos - pos_ <= kMaxSize);
heap.cc     [all...]
  /external/webkit/JavaScriptCore/wtf/
FastMalloc.cpp 564 // sense. In particular, if kMaxSize increases, you may have to
568 static const size_t kMaxSize = 8u * kPageSize;
600 static const size_t kMinThreadCacheSize = kMaxSize * 2;
818 if (static_cast<size_t>(ClassIndex(kMaxSize)) >= sizeof(class_array)) {
819 MESSAGE("Invalid class index %d for kMaxSize\n", ClassIndex(kMaxSize));
827 for (size_t size = kAlignment; size <= kMaxSize; size += (1 << alignshift)) {
886 for (size_t size = 0; size <= kMaxSize; size++) {
    [all...]
  /external/v8/src/mips/
assembler-mips.h 585 static const int kMaxRelocSize = RelocInfoWriter::kMaxSize;
  /external/v8/src/arm/
assembler-arm.h     [all...]
assembler-thumb2.h     [all...]

Completed in 179 milliseconds