/frameworks/compile/slang/tests/P_math_fp/ |
D | math_fp.rs | 128 TEST_FUNC_3PI(remquo);
|
/frameworks/rs/driver/runtime/ |
D | rs_cl.c | 665 float __attribute__((overloadable)) remquo(float v1, float v2, int *v3) { in remquo() function 668 FN_FUNC_FN_FN_PIN(remquo) 2122 extern half __attribute__((overloadable)) remquo(half n, half d, int *quo) { in remquo() function 2123 return (float) remquo((float) n, (float) d, quo); in remquo() 2125 extern half2 __attribute__((overloadable)) remquo(half2 n, half2 d, int2 *quo) { in remquo() function 2126 return convert_half2(remquo(convert_float2(d), convert_float2(n), quo)); in remquo() 2128 extern half3 __attribute__((overloadable)) remquo(half3 n, half3 d, int3 *quo) { in remquo() function 2129 return convert_half3(remquo(convert_float3(d), convert_float3(n), quo)); in remquo() 2131 extern half4 __attribute__((overloadable)) remquo(half4 n, half4 d, int4 *quo) { in remquo() function 2132 return convert_half4(remquo(convert_float4(d), convert_float4(n), quo)); in remquo()
|
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
D | apitest.rs | 820 f = remquo(f, f, (int *)&i); 821 f2 = remquo(f2, f2, (int2 *)&i2); 822 f3 = remquo(f3, f3, (int3 *)&i3); 823 f4 = remquo(f4, f4, (int4 *)&i4);
|
D | math.rs | 310 TEST_FN_FUNC_FN_FN_PIN(remquo);
|
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
D | apitest.rs | 840 f = remquo(f, f, (int *)&i); 841 f2 = remquo(f2, f2, (int2 *)&i2); 842 f3 = remquo(f3, f3, (int3 *)&i3); 843 f4 = remquo(f4, f4, (int4 *)&i4);
|
D | math.rs | 335 TEST_FN_FUNC_FN_FN_PIN(remquo);
|
/frameworks/rs/tests/java_api/RSUnitTests/supportlibonlysrc/com/android/rs/unittest/ |
D | apitest.rs | 838 f = remquo(f, f, (int *)&i); 839 f2 = remquo(f2, f2, (int2 *)&i2); 840 f3 = remquo(f3, f3, (int3 *)&i3); 841 f4 = remquo(f4, f4, (int4 *)&i4);
|
/frameworks/rs/tests/java_api/RsTest_11/src/com/android/rs/test/ |
D | math.rs | 168 TEST_FN_FUNC_FN_FN_PIN(remquo);
|
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
D | math_fp16.rs | 236 TEST_HN_FUNC_HN_HN_PIN(remquo);
|
D | math.rs | 333 TEST_FN_FUNC_FN_FN_PIN(remquo);
|
/frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/ |
D | math.rs.bak | 296 TEST_FN_FUNC_FN_FN_PIN(remquo);
|
D | math.rs | 310 TEST_FN_FUNC_FN_FN_PIN(remquo);
|
D | math.rs.orig | 310 TEST_FN_FUNC_FN_FN_PIN(remquo);
|
/frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/ |
D | math.rs | 310 TEST_FN_FUNC_FN_FN_PIN(remquo);
|
/frameworks/rs/tests/java_api/ComputeBenchmark/src/com/example/android/rs/computebench/ |
D | compute_benchmark.rs | 379 BENCH_FN_FUNC_FN_FN_PIN(remquo);
|
/frameworks/rs/script_api/ |
D | rs_math.spec | 2905 function: remquo 2921 …For example, an implementation of @sin(x) could call <code>remquo(x, PI / 2.f, &quadrant)</cod… 2924 Example: <code>remquo(-23.5f, 8.f, &quot)</code> sets the lowest three bits of quot to 3 2929 function: remquo
|
/frameworks/rs/script_api/include/ |
D | rs_math.rsh | 5710 * remquo: Remainder and quotient of a division 5718 * For example, an implementation of sin(x) could call remquo(x, PI / 2.f, &quadrant) 5721 * Example: remquo(-23.5f, 8.f, ") sets the lowest three bits of quot to 3 5732 remquo(float numerator, float denominator, int* quotient); 5735 remquo(float2 numerator, float2 denominator, int2* quotient); 5738 remquo(float3 numerator, float3 denominator, int3* quotient); 5741 remquo(float4 numerator, float4 denominator, int4* quotient); 5745 remquo(half numerator, half denominator, int* quotient); 5750 remquo(half2 numerator, half2 denominator, int2* quotient); 5755 remquo(half3 numerator, half3 denominator, int3* quotient); [all …]
|
/frameworks/compile/slang/tests/P_all_api_12/ |
D | all12.rs | 2853 *(float*)buf1187 = remquo(*(float*)buf1188, *(float*)buf1189, (int*) buf1190); 2854 *(float2*)buf1191 = remquo(*(float2*)buf1192, *(float2*)buf1193, (int2*) buf1194); 2855 *(float3*)buf1195 = remquo(*(float3*)buf1196, *(float3*)buf1197, (int3*) buf1198); 2856 *(float4*)buf1199 = remquo(*(float4*)buf1200, *(float4*)buf1201, (int4*) buf1202);
|
/frameworks/compile/slang/tests/P_all_api_13/ |
D | all13.rs | 2853 *(float*)buf1187 = remquo(*(float*)buf1188, *(float*)buf1189, (int*) buf1190); 2854 *(float2*)buf1191 = remquo(*(float2*)buf1192, *(float2*)buf1193, (int2*) buf1194); 2855 *(float3*)buf1195 = remquo(*(float3*)buf1196, *(float3*)buf1197, (int3*) buf1198); 2856 *(float4*)buf1199 = remquo(*(float4*)buf1200, *(float4*)buf1201, (int4*) buf1202);
|
/frameworks/compile/slang/tests/P_all_api_15/ |
D | all15.rs | 2923 *(float*)buf1187 = remquo(*(float*)buf1188, *(float*)buf1189, (int*) buf1190); 2924 *(float2*)buf1191 = remquo(*(float2*)buf1192, *(float2*)buf1193, (int2*) buf1194); 2925 *(float3*)buf1195 = remquo(*(float3*)buf1196, *(float3*)buf1197, (int3*) buf1198); 2926 *(float4*)buf1199 = remquo(*(float4*)buf1200, *(float4*)buf1201, (int4*) buf1202);
|
/frameworks/compile/slang/tests/P_all_api_14/ |
D | all14.rs | 2923 *(float*)buf1187 = remquo(*(float*)buf1188, *(float*)buf1189, (int*) buf1190); 2924 *(float2*)buf1191 = remquo(*(float2*)buf1192, *(float2*)buf1193, (int2*) buf1194); 2925 *(float3*)buf1195 = remquo(*(float3*)buf1196, *(float3*)buf1197, (int3*) buf1198); 2926 *(float4*)buf1199 = remquo(*(float4*)buf1200, *(float4*)buf1201, (int4*) buf1202);
|
/frameworks/compile/slang/tests/P_all_api_16/ |
D | all16.rs | 3015 *(float*)buf1187 = remquo(*(float*)buf1188, *(float*)buf1189, (int*) buf1190); 3016 *(float2*)buf1191 = remquo(*(float2*)buf1192, *(float2*)buf1193, (int2*) buf1194); 3017 *(float3*)buf1195 = remquo(*(float3*)buf1196, *(float3*)buf1197, (int3*) buf1198); 3018 *(float4*)buf1199 = remquo(*(float4*)buf1200, *(float4*)buf1201, (int4*) buf1202);
|
/frameworks/compile/slang/tests/P_all_api_11/ |
D | all11.rs | 2853 *(float*)buf1187 = remquo(*(float*)buf1188, *(float*)buf1189, (int*) buf1190); 2854 *(float2*)buf1191 = remquo(*(float2*)buf1192, *(float2*)buf1193, (int2*) buf1194); 2855 *(float3*)buf1195 = remquo(*(float3*)buf1196, *(float3*)buf1197, (int3*) buf1198); 2856 *(float4*)buf1199 = remquo(*(float4*)buf1200, *(float4*)buf1201, (int4*) buf1202);
|
/frameworks/compile/slang/tests/P_all_api_17/ |
D | all17.rs | 3147 *(float*)buf1239 = remquo(*(float*)buf1240, *(float*)buf1241, (int*) buf1242); 3148 *(float2*)buf1243 = remquo(*(float2*)buf1244, *(float2*)buf1245, (int2*) buf1246); 3149 *(float3*)buf1247 = remquo(*(float3*)buf1248, *(float3*)buf1249, (int3*) buf1250); 3150 *(float4*)buf1251 = remquo(*(float4*)buf1252, *(float4*)buf1253, (int4*) buf1254);
|
/frameworks/compile/slang/tests/P_all_api_24/ |
D | all24.rs | 7877 *(float*)buf3323 = remquo(*(float*)buf3324, *(float*)buf3325, (int*) buf3326); 7878 *(float2*)buf3327 = remquo(*(float2*)buf3328, *(float2*)buf3329, (int2*) buf3330); 7879 *(float3*)buf3331 = remquo(*(float3*)buf3332, *(float3*)buf3333, (int3*) buf3334); 7880 *(float4*)buf3335 = remquo(*(float4*)buf3336, *(float4*)buf3337, (int4*) buf3338); 7881 *(half*)buf3339 = remquo(*(half*)buf3340, *(half*)buf3341, (int*) buf3342); 7882 *(half2*)buf3343 = remquo(*(half2*)buf3344, *(half2*)buf3345, (int2*) buf3346); 7883 *(half3*)buf3347 = remquo(*(half3*)buf3348, *(half3*)buf3349, (int3*) buf3350); 7884 *(half4*)buf3351 = remquo(*(half4*)buf3352, *(half4*)buf3353, (int4*) buf3354);
|