HomeSort by relevance Sort by last modified time
    Searched refs:KB (Results 26 - 50 of 139) sorted by null

12 3 4 5 6

  /frameworks/base/libs/hwui/
Properties.h 236 #define DEFAULT_PATCH_CACHE_SIZE 128 // in kB
254 #define KB(s) s * 1024
PatchCache.cpp 39 mMaxSize = KB(atoi(property));
42 mMaxSize = KB(DEFAULT_PATCH_CACHE_SIZE);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DataUsageDetailView.java 39 private static final double KB = 1024;
40 private static final double MB = 1024 * KB;
121 } else if (b > 100 * KB) {
125 val = b / KB;
126 suffix = "KB";
  /external/chromium_org/v8/src/
globals.h 106 const int KB = 1024;
107 const int MB = KB * KB;
108 const int GB = KB * KB * KB;
zone.h 84 static const int kMinimumSegmentSize = 8 * KB;
90 static const int kMaximumKeptSegmentSize = 64 * KB;
  /external/chromium_org/v8/test/cctest/
test-reloc-info.cc 45 const int code_size = 10 * KB;
46 int relocation_info_size = 10 * KB;
  /external/clang/test/Layout/
ms-x86-pack-and-align.cpp 368 struct KB : KA { __declspec(align(2)) char a; };
372 // CHECK-NEXT: 0 | struct KB
380 // CHECK-X64-NEXT: 0 | struct KB
562 sizeof(KB)+
  /external/valgrind/main/massif/tests/
deep-A.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
deep-B.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
deep-C.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
deep-D.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
thresholds_0_10.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
thresholds_10_0.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
thresholds_10_10.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
thresholds_5_0.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
thresholds_5_10.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
alloc-fns-A.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
alloc-fns-B.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
basic2.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
thresholds_0_0.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
custom_alloc.post.exp 29 0 +----------------------------------------------------------------------->KB
  /art/runtime/
parsed_options_test.cc 65 EXPECT_EQ(4 * KB, parsed->heap_maximum_size_);
utils_test.cc 164 EXPECT_EQ("1024KB", PrettySize(1 * MB));
167 EXPECT_EQ("1024B", PrettySize(1 * KB));
168 EXPECT_EQ("10KB", PrettySize(10 * KB));
169 EXPECT_EQ("100KB", PrettySize(100 * KB));
  /art/runtime/gc/space/
space_test.h 607 TEST_SizeFootPrintGrowthLimitAndTrimStatic(1KB, spaceName, spaceFn, 1 * KB) \
608 TEST_SizeFootPrintGrowthLimitAndTrimStatic(4KB, spaceName, spaceFn, 4 * KB) \
622 TEST_SizeFootPrintGrowthLimitAndTrimRandom(1KB, spaceName, spaceFn, 1 * KB) \
623 TEST_SizeFootPrintGrowthLimitAndTrimRandom(4KB, spaceName, spaceFn, 4 * KB) \
  /external/chromium_org/v8/src/heap/
heap.cc 316 "d KB"
317 ", available: %6" V8_PTR_PREFIX "d KB\n",
318 isolate_->memory_allocator()->Size() / KB,
319 isolate_->memory_allocator()->Available() / KB);
321 "d KB"
323 "d KB"
324 ", committed: %6" V8_PTR_PREFIX "d KB\n",
325 new_space_.Size() / KB, new_space_.Available() / KB,
326 new_space_.CommittedMemory() / KB);
    [all...]

Completed in 297 milliseconds

12 3 4 5 6