Searched refs:frexp (Results 1 - 4 of 4) sorted by relevance

/frameworks/rs/driver/runtime/
H A Drs_f16_math.c31 extern half __attribute__((overloadable)) frexp(half x, int *eptr) { function
H A Drs_cl.c522 float __attribute__((overloadable)) frexp(float v1, int* v2) { function
525 FN_FUNC_FN_PIN(frexp)
1973 extern half __attribute__((overloadable)) frexp(half x, int *eptr);
1975 extern half2 __attribute__((overloadable)) frexp(half2 v1, int2 *eptr) { function
1978 ret.x = frexp(v1.x, &e[0]);
1979 ret.y = frexp(v1.y, &e[1]);
1985 extern half3 __attribute__((overloadable)) frexp(half3 v1, int3 *eptr) { function
1988 ret.x = frexp(v1.x, &e[0]);
1989 ret.y = frexp(v1.y, &e[1]);
1990 ret.z = frexp(v
1997 extern half4 __attribute__((overloadable)) frexp(half4 v1, int4 *eptr) { function
[all...]
/frameworks/rs/api/
H A Drs_math.spec1092 function: frexp
1108 function: frexp
1205 Because of the difference in mantissa, this number is one less than is returned by @frexp().
1233 See @frexp() for the reverse operation.
1417 Because of the difference in mantissa, this number is one less than is returned by frexp().
/frameworks/rs/scriptc/
H A Drs_math.rsh2026 * frexp: Binary mantissa and exponent
2039 frexp(float v, int* exponent);
2042 frexp(float2 v, int2* exponent);
2045 frexp(float3 v, int3* exponent);
2048 frexp(float4 v, int4* exponent);
2052 frexp(half v, int* exponent);
2057 frexp(half2 v, int2* exponent);
2062 frexp(half3 v, int3* exponent);
2067 frexp(half4 v, int4* exponent);
2204 * Because of the difference in mantissa, this number is one less than is returned by frexp()
[all...]

Completed in 602 milliseconds