Searched refs:KB (Results 1 - 25 of 123) sorted by relevance

12345

/external/ltp/testcases/kernel/syscalls/mlock/
H A Dmlock03.c41 #define KB 1024 macro
54 char b[KB];
66 if (!fgets(b, KB - 1, fp))
73 first = (to - from) / KB;
94 last = (to - from) / KB;
/external/v8/src/heap/
H A Dscavenge-job.h61 static const int kInitialScavengeSpeedInBytesPerMs = 256 * KB;
66 static const size_t kBytesAllocatedBeforeNextIdleTask = 512 * KB;
68 static const size_t kMinAllocationLimit = 512 * KB;
H A Dgc-idle-time-handler.h75 static const size_t kInitialConservativeMarkingSpeed = 100 * KB;
/external/v8/src/zone/
H A Daccounting-allocator.h23 static const size_t kMaxPoolSizeLowMemoryDevice = 8ul * KB;
24 static const size_t kMaxPoolSizeMediumMemoryDevice = 8ul * KB;
25 static const size_t kMaxPoolSizeHighMemoryDevice = 8ul * KB;
26 static const size_t kMaxPoolSizeHugeMemoryDevice = 8ul * KB;
/external/clang/test/SemaCXX/
H A Dnamespace-alias.cpp74 namespace KB = KA;
75 KB::func();
86 KB::func(); // expected-error {{undeclared identifier 'KB'}}
/external/lz4/tests/
H A Ddatagencli.c39 #define KB *(1 <<10) macro
43 #define SIZE_DEFAULT (64 KB)
/external/lz4/programs/
H A Ddatagen.c39 #define KB *(1 <<10) macro
95 #define RDG_DICTSIZE (32 KB)
163 #define RDG_BLOCKSIZE (128 KB)
/external/lz4/lib/
H A Dlz4hc.c101 hc4->nextToUpdate = 64 KB;
102 hc4->base = start - 64 KB;
104 hc4->dictBase = start - 64 KB;
105 hc4->dictLimit = 64 KB;
106 hc4->lowLimit = 64 KB;
142 const U32 lowLimit = (hc4->lowLimit + 64 KB > (U32)(ip-base)) ? hc4->lowLimit : (U32)(ip - base) - (64 KB - 1);
195 const U32 lowLimit = (hc4->lowLimit + 64 KB > (U32)(ip-base)) ? hc4->lowLimit : (U32)(ip - base) - (64 KB - 1);
571 if (dictSize > 64 KB) {
[all...]
H A Dlz4.c270 #define KB *(1 <<10) macro
373 static const int LZ4_64Klimit = ((64 KB) + (MFLIMIT-1));
952 if ((dictEnd - p) > 64 KB) p = dictEnd - 64 KB;
953 dict->currentOffset += 64 KB;
973 U32 const delta = LZ4_dict->currentOffset - 64 KB;
980 LZ4_dict->currentOffset = 64 KB;
981 if (LZ4_dict->dictSize > 64 KB) LZ4_dict->dictSize = 64 KB;
1002 if (streamPtr->dictSize > 64 KB) streamPt
[all...]
H A Dlz4frame.c145 #define KB *(1<<10) macro
226 static const size_t blockSizes[4] = { 64 KB, 256 KB, 1 MB, 4 MB };
247 size_t maxBlockSize = 64 KB;
442 requiredBuffSize = cctxPtr->maxBlockSize + ((cctxPtr->prefs.frameInfo.blockMode == LZ4F_blockLinked) * 128 KB);
444 requiredBuffSize = (cctxPtr->prefs.frameInfo.blockMode == LZ4F_blockLinked) * 64 KB; /* just needs dict */
547 return LZ4_saveDict ((LZ4_stream_t*)(cctxPtr->lz4CtxPtr), (char*)(cctxPtr->tmpBuff), 64 KB);
548 return LZ4_saveDictHC ((LZ4_streamHC_t*)(cctxPtr->lz4CtxPtr), (char*)(cctxPtr->tmpBuff), 64 KB);
902 { size_t const bufferNeeded = dctxPtr->maxBlockSize + ((dctxPtr->frameInfo.blockMode==LZ4F_blockLinked) * 128 KB);
978 if (dstPtr - dstPtr0 + dstSize >= 64 KB) { /* dstBuffe
[all...]
/external/ltp/testcases/kernel/mem/thp/
H A Dthp03.c119 hugepage_size = read_meminfo("Hugepagesize:") * KB;
/external/v8/src/regexp/
H A Dregexp-stack.h82 static const size_t kMinimumStackSize = 1 * KB;
/external/valgrind/massif/tests/
H A Dlong-names.post.exp8 KB
29 0 +----------------------------------------------------------------------->KB
H A Dnew-cpp.post.exp8 KB
29 0 +----------------------------------------------------------------------->KB
H A Doverloaded-new.post.exp8 KB
29 0 +----------------------------------------------------------------------->KB
H A Drealloc.post.exp8 KB
29 0 +----------------------------------------------------------------------->KB
H A Ddeep-A.post.exp8 KB
29 0 +----------------------------------------------------------------------->KB
H A Ddeep-B.post.exp8 KB
29 0 +----------------------------------------------------------------------->KB
H A Ddeep-C.post.exp8 KB
29 0 +----------------------------------------------------------------------->KB
H A Ddeep-D.post.exp8 KB
29 0 +----------------------------------------------------------------------->KB
H A Dthresholds_0_10.post.exp8 KB
29 0 +----------------------------------------------------------------------->KB
/external/clang/test/Layout/
H A Dms-x86-pack-and-align.cpp352 struct KB : KA { __declspec(align(2)) char a; }; struct in inherits:KA
356 // CHECK-NEXT: 0 | struct KB
364 // CHECK-X64-NEXT: 0 | struct KB
791 sizeof(KB)+
/external/ltp/testcases/kernel/device-drivers/agp/kernel_space/
H A Dstr_agp.h163 #define KB(x) ((x) * 1024) macro
164 #define MB(x) (KB (KB (x)))
165 #define GB(x) (MB (KB (x)))
/external/ltp/testcases/kernel/mem/include/
H A Dmem.h12 #define KB (1UL<<10) macro
/external/v8/src/
H A Dbackground-parsing-task.cc61 uintptr_t stack_limit = GetCurrentStackPosition() - stack_size_ * KB;

Completed in 363 milliseconds

12345