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

1 2 3

  /prebuilts/go/darwin-x86/test/fixedbugs/
bug297.go 14 KB ByteSize = 1<<(10*X) // ERROR "undefined" "is not a constant|as type ByteSize"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug297.go 14 KB ByteSize = 1<<(10*X) // ERROR "undefined" "is not a constant|as type ByteSize"
  /bionic/benchmarks/
util.h 45 constexpr auto KB = 1024;
  /external/ltp/testcases/kernel/syscalls/mlock/
mlock03.c 41 #define KB 1024
54 char b[KB];
66 if (!fgets(b, KB - 1, fp))
73 first = (to - from) / KB;
94 last = (to - from) / KB;
  /prebuilts/go/darwin-x86/doc/progs/
eff_bytesize.go 13 KB ByteSize = 1 << (10 * iota)
39 case b >= KB:
40 return fmt.Sprintf("%.2fKB", b/KB)
  /prebuilts/go/linux-x86/doc/progs/
eff_bytesize.go 13 KB ByteSize = 1 << (10 * iota)
39 case b >= KB:
40 return fmt.Sprintf("%.2fKB", b/KB)
  /system/core/toolbox/upstream-netbsd/lib/libc/gen/
getbsize.c 61 #define KB (1024L)
81 max = MAXB / KB;
82 mul = KB;
  /external/lz4/tests/
datagencli.c 39 #define KB *(1 <<10)
43 #define SIZE_DEFAULT (64 KB)
fullbench.c 62 #define KB *(1 <<10)
109 DISPLAY("-Using Block Size of %i KB-\n", g_chunkSize>>10);
frametest.c 65 #define KB *(1U<<10)
69 static const U32 nbTestsDefault = 256 KB;
192 if (cBound < 64 KB) goto _output_error;
321 DISPLAYLEVEL(3, "Using 64 KB block : \n");
334 DISPLAYLEVEL(3, "Using 256 KB block : \n");
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
cpu-i960.c 52 /* In some bfds the cpu-id is written as "80960KA", "80960KB",
119 CORE KA KB MC XA
129 #define KB bfd_mach_i960_kb_sb /*3*/
139 { ERROR, CORE, KA, KB, MC, XA, CA, JX, HX },
140 { CORE, CORE, KA, KB, MC, XA, CA, JX, HX },
141 { KA, KA, KA, KB, MC, XA, ERROR, ERROR, ERROR},
142 { KB, KB, KB, KB, MC, XA, ERROR, ERROR, ERROR}
    [all...]
  /art/libartbase/base/
globals.h 25 static constexpr size_t KB = 1024;
26 static constexpr size_t MB = KB * KB;
27 static constexpr size_t GB = KB * KB * KB;
  /cts/tests/simplecpu/src/android/simplecpu/cts/
SimpleCpuTest.java 35 private static final int KB = 1024;
49 doTestSort(NUMBER_REPEAT, 4 * KB);
53 doTestSort(NUMBER_REPEAT, 128 * KB);
  /external/libunwind/tests/
Gperf-simple.c 43 #define KB 1024
Gperf-trace.c 43 #define KB 1024
  /external/ltp/testcases/kernel/mem/include/
mem.h 12 #define KB (1UL<<10)
  /external/lz4/programs/
datagen.c 39 #define KB *(1 <<10)
95 #define RDG_DICTSIZE (32 KB)
163 #define RDG_BLOCKSIZE (128 KB)
lz4cli.c 66 #define KB *(1U<<10)
430 DISPLAYLEVEL(2, "using blocks of size %u KB \n", (U32)(blockSize>>10));
435 DISPLAYLEVEL(2, "bench: using blocks of size %u KB \n", (U32)(B>>10));
513 if ((mode == om_compress) || (mode == om_bench)) DISPLAYLEVEL(4, "Blocks size : %i KB\n", (U32)(blockSize>>10));
bench.c 73 #define KB *(1 <<10)
331 bNb = pos / (128 KB);
399 DISPLAY("bench %s %s: input %u bytes, %u seconds, %u KB blocks\n", LZ4_VERSION_STRING, LZ4_GIT_COMMIT_STRING, (U32)benchedSize, g_nbSeconds, (U32)(g_blockSize>>10));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DataUsageDetailView.java 41 private static final double KB = 1024;
42 private static final double MB = 1024 * KB;
133 } else if (b > 100 * KB) {
137 val = b / KB;
138 suffix = "KB";
  /external/clang/test/Layout/
ms-x86-pack-and-align.cpp 352 struct KB : KA { __declspec(align(2)) char a; };
356 // CHECK-NEXT: 0 | struct KB
364 // CHECK-X64-NEXT: 0 | struct KB
791 sizeof(KB)+
  /packages/apps/Messaging/tests/src/com/android/messaging/datamodel/media/
MediaResourceManagerTest.java 29 private static final int KB = 1024;
49 // Load one image of 1KB
50 loadImage(mediaResourceManager, "image1", 1 * KB, false /* shouldBeCached */, false);
55 loadImage(mediaResourceManager, "image1", 1 * KB, true /* shouldBeCached */, false);
65 // Load one image of 1KB
66 loadImage(mediaResourceManager, "image1", 1 * KB, false /* shouldBeCached */, false);
70 loadImage(mediaResourceManager, "image2", 2 * KB, false /* shouldBeCached */, false);
74 loadImage(mediaResourceManager, "image3", 2 * KB, false /* shouldBeCached */, false);
78 loadImage(mediaResourceManager, "image1", 1 * KB, false /* shouldBeCached */, false);
88 // Load one image of 1KB
    [all...]
  /frameworks/base/libs/hwui/
Properties.h 195 #define KB(s) ((s)*1024)
  /bionic/tests/
string_test.cpp 43 constexpr auto KB = 1024;
44 constexpr auto SMALL = 1 * KB;
45 constexpr auto MEDIUM = 4 * KB;
46 constexpr auto LARGE = 64 * KB;
    [all...]
  /hardware/intel/img/psb_video/src/
vsp_vp8.c 45 #define KB 1024
46 #define MB (KB * KB)
    [all...]

Completed in 479 milliseconds

1 2 3