Searched refs:eptr (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) { argument
38 *eptr = 0;
41 // x is subnormal. Scale it by 2^12 (and adjust eptr accordingly) so
46 *eptr = -12;
49 // Adjust eptr by (non-biased exponent of hx + 1). Set the non-biased
51 *eptr += (ix >> 10) - 14;
H A Drs_cl.c1973 extern half __attribute__((overloadable)) frexp(half x, int *eptr);
1975 extern half2 __attribute__((overloadable)) frexp(half2 v1, int2 *eptr) { argument
1980 eptr->x = e[0];
1981 eptr->y = e[1];
1985 extern half3 __attribute__((overloadable)) frexp(half3 v1, int3 *eptr) { argument
1991 eptr->x = e[0];
1992 eptr->y = e[1];
1993 eptr->z = e[2];
1997 extern half4 __attribute__((overloadable)) frexp(half4 v1, int4 *eptr) { argument
2004 eptr
[all...]

Completed in 71 milliseconds