Home
last modified time | relevance | path

Searched refs:clevel (Results 1 – 3 of 3) 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/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()