Searched refs:remquo (Results 1 - 6 of 6) sorted by relevance

/frameworks/rs/driver/runtime/
H A Drs_cl.c665 float __attribute__((overloadable)) remquo(float v1, float v2, int *v3) { function
668 FN_FUNC_FN_FN_PIN(remquo)
2122 extern half __attribute__((overloadable)) remquo(half n, half d, int *quo) { function
2123 return (float) remquo((float) n, (float) d, quo);
2125 extern half2 __attribute__((overloadable)) remquo(half2 n, half2 d, int2 *quo) { function
2126 return convert_half2(remquo(convert_float2(d), convert_float2(n), quo));
2128 extern half3 __attribute__((overloadable)) remquo(half3 n, half3 d, int3 *quo) { function
2129 return convert_half3(remquo(convert_float3(d), convert_float3(n), quo));
2131 extern half4 __attribute__((overloadable)) remquo(half4 n, half4 d, int4 *quo) { function
2132 return convert_half4(remquo(convert_float
[all...]
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
H A Dmath_fp16.rs236 TEST_HN_FUNC_HN_HN_PIN(remquo);
H A Dmath.rs333 TEST_FN_FUNC_FN_FN_PIN(remquo);
/frameworks/rs/tests/java_api/RSUnitTests/supportlibonlysrc/com/android/rs/unittest/
H A 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/script_api/
H A Drs_math.spec2905 function: remquo
2921 For example, an implementation of @sin(x) could call <code>remquo(x, PI / 2.f, &amp;quadrant)</code>
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/
H A 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(half
[all...]

Completed in 417 milliseconds