Searched defs: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.c1976 extern half __attribute__((overloadable)) frexp(half x, int *eptr);
1978 extern half2 __attribute__((overloadable)) frexp(half2 v1, int2 *eptr) { argument
1983 eptr->x = e[0];
1984 eptr->y = e[1];
1988 extern half3 __attribute__((overloadable)) frexp(half3 v1, int3 *eptr) { argument
1994 eptr->x = e[0];
1995 eptr->y = e[1];
1996 eptr->z = e[2];
2000 extern half4 __attribute__((overloadable)) frexp(half4 v1, int4 *eptr) { argument
2007 eptr
[all...]

Completed in 61 milliseconds