Searched defs:quo (Results 1 - 1 of 1) sorted by relevance

/frameworks/rs/driver/runtime/
H A Drs_cl.c2119 extern half __attribute__((overloadable)) remquo(half n, half d, int *quo) { argument
2120 return (float) remquo((float) n, (float) d, quo);
2122 extern half2 __attribute__((overloadable)) remquo(half2 n, half2 d, int2 *quo) { argument
2123 return convert_half2(remquo(convert_float2(d), convert_float2(n), quo));
2125 extern half3 __attribute__((overloadable)) remquo(half3 n, half3 d, int3 *quo) { argument
2126 return convert_half3(remquo(convert_float3(d), convert_float3(n), quo));
2128 extern half4 __attribute__((overloadable)) remquo(half4 n, half4 d, int4 *quo) { argument
2129 return convert_half4(remquo(convert_float4(d), convert_float4(n), quo));

Completed in 229 milliseconds