Searched defs:frexp (Results 1 - 2 of 2) 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...]

Completed in 61 milliseconds