/frameworks/compile/libbcc/runtime/test/timing/ |
D | floatundidf.c | 25 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()
|
D | floatdisf.c | 28 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()
|
D | floatundisf.c | 28 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()
|
D | floatundixf.c | 28 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()
|
D | floatdidf.c | 28 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()
|
D | floatdixf.c | 28 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()
|
D | ashrdi3.c | 30 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()
|
D | lshrdi3.c | 30 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()
|
D | ashldi3.c | 30 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()
|
D | negdi2.c | 31 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()
|
D | umoddi3.c | 33 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()
|
D | udivdi3.c | 33 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()
|
D | muldi3.c | 33 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()
|
D | moddi3.c | 33 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()
|
D | divdi3.c | 33 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/ |
D | carousel.rs | 282 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) {
|