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

/frameworks/rs/driver/runtime/
H A Drs_cl.c662 float __attribute__((overloadable)) remquo(float v1, float v2, int *v3) { function
665 FN_FUNC_FN_FN_PIN(remquo)
2119 extern half __attribute__((overloadable)) remquo(half n, half d, int *quo) { function
2120 return (float) remquo((float) n, (float) d, quo);
2122 extern half2 __attribute__((overloadable)) remquo(half2 n, half2 d, int2 *quo) { function
2123 return convert_half2(remquo(convert_float2(d), convert_float2(n), quo));
2125 extern half3 __attribute__((overloadable)) remquo(half3 n, half3 d, int3 *quo) { function
2126 return convert_half3(remquo(convert_float3(d), convert_float3(n), quo));
2128 extern half4 __attribute__((overloadable)) remquo(half4 n, half4 d, int4 *quo) { function
2129 return convert_half4(remquo(convert_float
[all...]
/frameworks/rs/api/
H A Drs_math.spec2891 function: remquo
2907 For example, an implementation of @sin(x) could call <code>remquo(x, PI / 2.f, &amp;quadrant)</code>
2910 Example: <code>remquo(-23.5f, 8.f, &amp;quot)</code> sets the lowest three bits of quot to 3
2915 function: remquo
/frameworks/rs/scriptc/
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 102 milliseconds