HomeSort by relevance Sort by last modified time
    Searched refs:KB (Results 1 - 25 of 67) sorted by null

1 2 3

  /external/v8/test/cctest/
test-platform-win32.cc 20 size_t block_size = 4 * KB;
24 addr[KB-1] = 2;
test-platform-linux.cc 74 size_t block_size = 4 * KB;
78 addr[KB-1] = 2;
test-platform-nullos.cc 73 size_t block_size = 4 * KB;
77 addr[KB-1] = 2;
test-reloc-info.cc 45 const int code_size = 10 * KB;
46 int relocation_info_size = 10 * KB;
  /external/clang/test/SemaCXX/
namespace-alias.cpp 70 namespace KB = KA;
71 KB::func();
82 KB::func(); // expected-error {{undeclared identifier 'KB'}}
  /packages/apps/Email/src/com/android/email/activity/
UiUtilities.java 32 * Formats the given size as a String in bytes, kB, MB or GB. Ex: 12,315,000 = 11 MB
36 final long KB = 1024;
37 final long MB = (KB * 1024);
43 if (size < KB) {
48 value = (int) (size / KB);
  /external/v8/src/
zone.h 85 static const int kMinimumSegmentSize = 8 * KB;
91 static const int kMaximumKeptSegmentSize = 64 * KB;
globals.h 187 const int KB = 1024;
188 const int MB = KB * KB;
189 const int GB = KB * KB * KB;
regexp-stack.h 100 static const size_t kMinimumStackSize = 1 * KB;
  /external/valgrind/main/massif/tests/
long-names.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
new-cpp.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
overloaded-new.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
realloc.post.exp 8 KB
29 0 +----------------------------------------------------------------------->KB
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
  /packages/apps/Phone/src/com/android/phone/
DataUsageListener.java 214 long KB = 1024;
215 long MB = 1024 * KB;
220 if (data < KB) {
223 ret = (data / KB) + " KB";
  /external/webkit/Source/JavaScriptCore/heap/
MarkedBlock.h 37 static const size_t KB = 1024;
80 static const size_t blockSize = 16 * KB;

Completed in 1311 milliseconds

1 2 3