Home
last modified time | relevance | path

Searched refs:remquo (Results 1 – 25 of 31) sorted by relevance

12

/frameworks/compile/slang/tests/P_math_fp/
Dmath_fp.rs128 TEST_FUNC_3PI(remquo);
/frameworks/rs/driver/runtime/
Drs_cl.c665 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/
Dapitest.rs820 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);
Dmath.rs310 TEST_FN_FUNC_FN_FN_PIN(remquo);
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dapitest.rs840 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);
Dmath.rs335 TEST_FN_FUNC_FN_FN_PIN(remquo);
/frameworks/rs/tests/java_api/RSUnitTests/supportlibonlysrc/com/android/rs/unittest/
Dapitest.rs838 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/
Dmath.rs168 TEST_FN_FUNC_FN_FN_PIN(remquo);
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
Dmath_fp16.rs236 TEST_HN_FUNC_HN_HN_PIN(remquo);
Dmath.rs333 TEST_FN_FUNC_FN_FN_PIN(remquo);
/frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
Dmath.rs.bak296 TEST_FN_FUNC_FN_FN_PIN(remquo);
Dmath.rs310 TEST_FN_FUNC_FN_FN_PIN(remquo);
Dmath.rs.orig310 TEST_FN_FUNC_FN_FN_PIN(remquo);
/frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/
Dmath.rs310 TEST_FN_FUNC_FN_FN_PIN(remquo);
/frameworks/rs/tests/java_api/ComputeBenchmark/src/com/example/android/rs/computebench/
Dcompute_benchmark.rs379 BENCH_FN_FUNC_FN_FN_PIN(remquo);
/frameworks/rs/script_api/
Drs_math.spec2905 function: remquo
2921 …For example, an implementation of @sin(x) could call <code>remquo(x, PI / 2.f, &amp;quadrant)</cod…
2924 Example: <code>remquo(-23.5f, 8.f, &amp;quot)</code> sets the lowest three bits of quot to 3
2929 function: remquo
/frameworks/rs/script_api/include/
Drs_math.rsh5710 * 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, &quot) 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/
Dall12.rs2853 *(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/
Dall13.rs2853 *(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/
Dall15.rs2923 *(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/
Dall14.rs2923 *(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/
Dall16.rs3015 *(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/
Dall11.rs2853 *(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/
Dall17.rs3147 *(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/
Dall24.rs7877 *(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);

12