Home
last modified time | relevance | path

Searched refs:clevel (Results 1 – 4 of 4) sorted by relevance

/external/lz4/tests/
DroundTripTest.c104 int clevel) in roundTripTest() argument
106 int const proposed_clevel = clevel ? clevel : select_clevel(srcBuff, srcSize); in roundTripTest()
127 static void roundTripCheck(const void* srcBuff, size_t srcSize, int clevel) in roundTripCheck() argument
141 clevel); in roundTripCheck()
202 static void fileCheck(const char* fileName, int clevel) in fileCheck() argument
211 roundTripCheck(buffer, fileSize, clevel); in fileCheck()
233 int clevel = 0; in main() local
239 clevel = argv[1][1] - '0'; in main()
245 fileCheck(argv[argNb], clevel); in main()
/external/autotest/client/profilers/powertop/src/
Dpowertop.c273 int clevel = 0; in read_data_acpi() local
289 clevel = 0; in read_data_acpi()
299 usage[clevel] += 1+strtoull(c, NULL, 10); in read_data_acpi()
304 duration[clevel] += strtoull(c, NULL, 10); in read_data_acpi()
306 clevel++; in read_data_acpi()
307 if (clevel > maxcstate) in read_data_acpi()
308 maxcstate = clevel; in read_data_acpi()
324 int len, clevel = 0; in read_data_cpuidle() local
348 clevel = 0; in read_data_cpuidle()
369 clevel = (strtoull(f, NULL, 16)>>4) + 1; in read_data_cpuidle()
[all …]
/external/zstd/contrib/largeNbDicts/
DlargeNbDicts.c735 size_t blockSize, int clevel, in bench() argument
794 createCDictForDedicatedDictSearch(dictBuffer.ptr, dictBuffer.size, clevel) : in bench()
795 ZSTD_createCDict(dictBuffer.ptr, dictBuffer.size, clevel); in bench()
798 size_t const cTotalSizeNoDict = compressBlocks(NULL, dstSlices, srcSlices, NULL, clevel); in bench()
801 clevel, in bench()
807 size_t const cTotalSize = compressBlocks(cSizes, dstSlices, srcSlices, cdict, clevel); in bench()
818 …naries = createCDictCollection(dictBuffer.ptr, dictBuffer.size, nbDicts, clevel, dedicatedDictSear… in bench()
/external/lz4/programs/
Dbench.c52 static int LZ4_compress_local(const char* src, char* dst, int srcSize, int dstSize, int clevel) { in LZ4_compress_local() argument
53 int const acceleration = (clevel < 0) ? -clevel + 1 : 1; in LZ4_compress_local()