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

/fuchsia/zircon/kernel/include/sys/
H A Dtypes.h30 #define KB (1024UL) macro
31 #define MB (1024UL * KB)
/fuchsia/zircon/system/utest/fs-host/
H A Dtest-rw-workers.cpp51 #define KB(n) ((n)*1024) macro
60 { worker_writer, "file0000", KB(512), F_RAND_IOSIZE, },
62 { worker_writer, "file0002", KB(512), F_RAND_IOSIZE, },
63 { worker_writer, "file0003", KB(512), F_RAND_IOSIZE, },
64 { worker_writer, "file0004", KB(512), 0, },
66 { worker_writer, "file0006", KB(512), 0, },
67 { worker_writer, "file0007", KB(512), 0, },
/fuchsia/zircon/system/utest/fs/
H A Dtest-rw-workers.c219 #define KB(n) ((n)*1024) macro
229 worker_writer, "file0000", KB(512), F_RAND_IOSIZE,
235 worker_writer, "file0002", KB(512), F_RAND_IOSIZE,
238 worker_writer, "file0003", KB(512), F_RAND_IOSIZE,
241 worker_writer, "file0004", KB(512), 0,
247 worker_writer, "file0006", KB(512), 0,
250 worker_writer, "file0007", KB(512), 0,
H A Dtest-random-op.c107 #define KB(n) ((n) * 1024) macro
115 { "thd0000", KB(5)},
117 { "thd0002", KB(512)},
118 { "thd0003", KB(512)},
119 { "thd0004", KB(512)},
121 { "thd0006", KB(512)},
122 { "thd0007", KB(512)},
/fuchsia/zircon/third_party/ulib/lz4/
H A Dlz4frame.c90 #define KB *(1<<10) macro
178 static const size_t blockSizes[4] = { 64 KB, 256 KB, 1 MB, 4 MB };
244 size_t maxBlockSize = 64 KB;
425 requiredBuffSize = cctxPtr->maxBlockSize + ((cctxPtr->prefs.frameInfo.blockMode == LZ4F_blockLinked) * 128 KB);
427 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);
893 bufferNeeded = dctxPtr->maxBlockSize + ((dctxPtr->frameInfo.blockMode==LZ4F_blockLinked) * 128 KB);
972 if (dstPtr - dstPtr0 + dstSize >= 64 KB) /* dstBuffe
[all...]
H A Dlz4hc.c120 hc4->nextToUpdate = 64 KB;
121 hc4->base = start - 64 KB;
123 hc4->dictBase = start - 64 KB;
124 hc4->dictLimit = 64 KB;
125 hc4->lowLimit = 64 KB;
162 const U32 lowLimit = (hc4->lowLimit + 64 KB > (U32)(ip-base)) ? hc4->lowLimit : (U32)(ip - base) - (64 KB - 1);
221 const U32 lowLimit = (hc4->lowLimit + 64 KB > (U32)(ip-base)) ? hc4->lowLimit : (U32)(ip - base) - (64 KB - 1);
577 if (dictSize > 64 KB)
[all...]
H A Dlz4.c228 #define KB *(1 <<10) macro
344 static const int LZ4_64Klimit = ((64 KB) + (MFLIMIT-1));
981 if ((dictEnd - p) > 64 KB) p = dictEnd - 64 KB;
982 dict->currentOffset += 64 KB;
1004 U32 delta = LZ4_dict->currentOffset - 64 KB;
1012 LZ4_dict->currentOffset = 64 KB;
1013 if (LZ4_dict->dictSize > 64 KB) LZ4_dict->dictSize = 64 KB;
1036 if (streamPtr->dictSize > 64 KB) streamPt
[all...]
/fuchsia/zircon/system/dev/lib/imx8m/include/soc/imx8m/
H A Dimx8m-hw.h7 #define KB(x) (x << 10) macro
19 #define IMX8M_GPU_LENGTH KB(64)
38 #define IMX8M_AIPS_LENGTH KB(64)
/fuchsia/zircon/system/uapp/df/
H A Dmain.cpp69 #define KB (1lu << 10) macro
91 if (size < KB) {
93 } else if (print_magnitude(padding, size, KB, "KB")) {

Completed in 114 milliseconds