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

1 2 3 4 5 6

  /art/compiler/utils/
stack_checks.h 26 static constexpr size_t kLargeFrameSize = 2 * KB;
31 static constexpr size_t kSmallFrameSize = 1 * KB;
  /bionic/benchmarks/
stdio_benchmark.cpp 21 #define KB 1024
22 #define MB 1024*KB
26 Arg(1*KB)->Arg(4*KB)->Arg(8*KB)->Arg(16*KB)->Arg(64*KB)
string_benchmark.cpp 21 #define KB 1024
22 #define MB 1024*KB
25 Arg(8)->Arg(64)->Arg(512)->Arg(1*KB)->Arg(8*KB)->Arg(16*KB)->Arg(32*KB)->Arg(64*KB)
  /art/runtime/
globals.h 31 static constexpr size_t KB = 1024;
32 static constexpr size_t MB = KB * KB;
33 static constexpr size_t GB = KB * KB * KB;
instruction_set.cc 84 static constexpr size_t kDefaultStackOverflowReservedBytes = 16 * KB;
87 static constexpr size_t kArmStackOverflowReservedBytes = 8 * KB;
88 static constexpr size_t kArm64StackOverflowReservedBytes = 8 * KB;
89 static constexpr size_t kX86StackOverflowReservedBytes = 8 * KB;
90 static constexpr size_t kX86_64StackOverflowReservedBytes = 8 * KB;
thread_linux.cc 40 16 * KB < MINSIGSTKSZ ? MINSIGSTKSZ : 16 * KB;
  /external/chromium_org/v8/test/cctest/
test-platform-linux.cc 46 size_t block_size = 4 * KB;
50 addr[KB-1] = 2;
test-platform-win32.cc 45 size_t block_size = 4 * KB;
49 addr[KB-1] = 2;
  /cts/suite/cts/deviceTests/dram/src/com/android/cts/dram/
BandwidthTest.java 41 private static final int KB = 1024;
55 doRunMemcpy(4 * KB);
59 doRunMemcpy(8 * KB);
63 doRunMemcpy(16 * KB);
67 doRunMemcpy(32 * KB);
71 doRunMemcpy(64 * KB);
75 doRunMemcpy(128 * KB);
79 doRunMemcpy(256 * KB);
83 doRunMemcpy(512 * KB);
107 doRunMemset(4 * KB);
    [all...]
  /art/compiler/
buffered_output_stream.h 39 static const size_t kBufferSize = 8 * KB;
image_test.cc 195 uint32_t image_size_ = 16 * KB;
198 uint32_t image_roots = ART_BASE_ADDRESS + (1 * KB);
200 uint32_t oat_file_begin = ART_BASE_ADDRESS + (4 * KB); // page aligned
201 uint32_t oat_data_begin = ART_BASE_ADDRESS + (8 * KB); // page aligned
202 uint32_t oat_data_end = ART_BASE_ADDRESS + (9 * KB);
203 uint32_t oat_file_end = ART_BASE_ADDRESS + (10 * KB);
  /packages/apps/Email/src/com/android/email/activity/
UiUtilities.java 31 * Formats the given size as a String in bytes, kB, MB or GB. Ex: 12,315,000 = 11 MB
35 final long KB = 1024;
36 final long MB = (KB * 1024);
42 if (size < KB) {
47 value = (int) (size / KB);
  /external/clang/test/SemaCXX/
namespace-alias.cpp 74 namespace KB = KA;
75 KB::func();
86 KB::func(); // expected-error {{undeclared identifier 'KB'}}
  /system/core/toolbox/upstream-netbsd/lib/libc/gen/
getbsize.c 61 #define KB (1024L)
81 max = MAXB / KB;
82 mul = KB;
  /art/runtime/gc/allocator/
rosalloc.h 292 DCHECK(16 <= size && ((size < 1 * KB && size % 16 == 0) || size == 1 * KB || size == 2 * KB));
294 if (UNLIKELY(size == 1 * KB)) {
296 } else if (UNLIKELY(size == 2 * KB)) {
299 DCHECK(size < 1 * KB);
311 } else if (512 < size && size <= 1 * KB) {
312 return 1 * KB;
314 DCHECK(1 * KB < size && size <= 2 * KB);
    [all...]
  /cts/suite/cts/deviceTests/simplecpu/src/com/android/cts/simplecpu/
SimpleCpuTest.java 35 private static final int KB = 1024;
48 doTestSort(NUMBER_REPEAT, 4 * KB);
52 doTestSort(NUMBER_REPEAT, 128 * KB);
  /external/chromium_org/base/
sys_info_android.cc 94 const int64 KB = 1024;
95 const int64 MB = 1024 * KB;
102 unit_multiplier = KB;
  /external/chromium_org/v8/src/
regexp-stack.h 78 static const size_t kMinimumStackSize = 1 * KB;
sweeper-thread.cc 15 static const int kSweeperThreadStackSize = 64 * 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
  /frameworks/base/libs/hwui/
Properties.h 227 #define DEFAULT_PATCH_CACHE_SIZE 128 // in kB
245 #define KB(s) s * 1024
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DataUsageDetailView.java 40 private static final double KB = 1024;
41 private static final double MB = 1024 * KB;
122 } else if (b > 100 * KB) {
126 val = b / KB;
127 suffix = "KB";

Completed in 381 milliseconds

1 2 3 4 5 6