Home
last modified time | relevance | path

Searched refs:bestTime (Results 1 – 18 of 18) sorted by relevance

/external/compiler-rt/test/builtins/timing/
Dfloatundidf.c25 double bestTime = __builtin_inf(); in main() local
35 bestTime = __builtin_fmin(thisTime, bestTime); in main()
41 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
Dfloatdixf.c28 double bestTime = __builtin_inf(); in main() local
38 bestTime = __builtin_fmin(thisTime, bestTime); in main()
44 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
Dfloatundisf.c28 double bestTime = __builtin_inf(); in main() local
38 bestTime = __builtin_fmin(thisTime, bestTime); in main()
44 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
Dfloatundixf.c28 double bestTime = __builtin_inf(); in main() local
38 bestTime = __builtin_fmin(thisTime, bestTime); in main()
44 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
Dfloatdidf.c28 double bestTime = __builtin_inf(); in main() local
38 bestTime = __builtin_fmin(thisTime, bestTime); in main()
44 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
Dfloatdisf.c28 double bestTime = __builtin_inf(); in main() local
38 bestTime = __builtin_fmin(thisTime, bestTime); in main()
44 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
Dashldi3.c30 double bestTime = __builtin_inf(); in main() local
40 bestTime = __builtin_fmin(thisTime, bestTime); in main()
46 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
Dlshrdi3.c30 double bestTime = __builtin_inf(); in main() local
40 bestTime = __builtin_fmin(thisTime, bestTime); in main()
46 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
Dnegdi2.c31 double bestTime = __builtin_inf(); in main() local
41 bestTime = __builtin_fmin(thisTime, bestTime); in main()
47 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
Dashrdi3.c30 double bestTime = __builtin_inf(); in main() local
40 bestTime = __builtin_fmin(thisTime, bestTime); in main()
46 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
Dmodsi3.c33 double bestTime = __builtin_inf(); in main() local
43 bestTime = __builtin_fmin(thisTime, bestTime); in main()
49 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
Ddivdi3.c33 double bestTime = __builtin_inf(); in main() local
43 bestTime = __builtin_fmin(thisTime, bestTime); in main()
49 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
Dmuldi3.c33 double bestTime = __builtin_inf(); in main() local
43 bestTime = __builtin_fmin(thisTime, bestTime); in main()
49 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
Dumoddi3.c33 double bestTime = __builtin_inf(); in main() local
43 bestTime = __builtin_fmin(thisTime, bestTime); in main()
49 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
Dmoddi3.c33 double bestTime = __builtin_inf(); in main() local
43 bestTime = __builtin_fmin(thisTime, bestTime); in main()
49 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
Dudivdi3.c33 double bestTime = __builtin_inf(); in main() local
43 bestTime = __builtin_fmin(thisTime, bestTime); in main()
49 printf("%16s: %f cycles.\n", LIBSTRING, bestTime / (double) INPUT_SIZE); in main()
/external/lz4/programs/
Dfullbench.c508 double bestTime = 100000000.; in fullSpeedBench() local
582 if (averageTime < bestTime) bestTime = averageTime; in fullSpeedBench()
585 …opNb, compressorName, (int)benchedSize, (int)cSize, ratio, (double)benchedSize / bestTime / 1000.); in fullSpeedBench()
589 …lgNb, compressorName, (int)benchedSize, (int)cSize, ratio, (double)benchedSize / bestTime / 1000.); in fullSpeedBench()
591 …lgNb, compressorName, (int)benchedSize, (int)cSize, ratio, (double)benchedSize / bestTime / 1000.); in fullSpeedBench()
593 totalCTime[cAlgNb] += bestTime; in fullSpeedBench()
626 double bestTime = 100000000.; in fullSpeedBench() local
676 if (averageTime < bestTime) bestTime = averageTime; in fullSpeedBench()
678 …s :%10i -> %7.1f MB/s\r", loopNb, dName, (int)benchedSize, (double)benchedSize / bestTime / 1000.); in fullSpeedBench()
685 …s :%10i -> %7.1f MB/s\n", dAlgNb, dName, (int)benchedSize, (double)benchedSize / bestTime / 1000.); in fullSpeedBench()
[all …]
/external/deqp/modules/gles3/performance/
Des3pBufferDataUploadTests.cpp552 deUint64 bestTime = 0; in medianTimeMemcpy() local
581 if (!bestTime || sectionTimes[sectionNdx] < bestTime) in medianTimeMemcpy()
582 bestTime = sectionTimes[sectionNdx]; in medianTimeMemcpy()
585 if (sectionNdx != numSections-1 && (float)sectionTimes[sectionNdx] > 1.5f * (float)bestTime) in medianTimeMemcpy()