Home
last modified time | relevance | path

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

/frameworks/compile/libbcc/runtime/test/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()
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()
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()
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()
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()
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()
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()
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()
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()
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()
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()
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()
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()
/frameworks/ex/carousel/java/com/android/ex/carousel/
Dcarousel.rs282 static int intersectGeometry(Ray* ray, float *bestTime);
1122 float bestTime = FLT_MAX;
1123 return intersectGeometry(&ray, &bestTime);
1544 static int intersectGeometry(Ray* ray, float *bestTime)
1568 if (rayTriangleIntersect(ray, p[0], p[1], p[2], bestTime)
1569 || rayTriangleIntersect(ray, p[2], p[3], p[0], bestTime)) {
1819 float bestTime = FLT_MAX;
1820 if (intersectGeometry(&ray, &bestTime) != -1) {