Searched refs:frexp (Results 1 - 8 of 8) 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.c525 float __attribute__((overloadable)) frexp(float v1, int* v2) { function
528 FN_FUNC_FN_PIN(frexp)
1976 extern half __attribute__((overloadable)) frexp(half x, int *eptr);
1978 extern half2 __attribute__((overloadable)) frexp(half2 v1, int2 *eptr) { function
1981 ret.x = frexp(v1.x, &e[0]);
1982 ret.y = frexp(v1.y, &e[1]);
1988 extern half3 __attribute__((overloadable)) frexp(half3 v1, int3 *eptr) { function
1991 ret.x = frexp(v1.x, &e[0]);
1992 ret.y = frexp(v1.y, &e[1]);
1993 ret.z = frexp(v
2000 extern half4 __attribute__((overloadable)) frexp(half4 v1, int4 *eptr) { function
[all...]
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
H A Dmath_fp16.rs157 TEST_HN_FUNC_HN_PIN(frexp);
290 half out = frexp(((half) inp), &exp); \
H A Dmath.rs304 TEST_FN_FUNC_FN_PIN(frexp);
/frameworks/ml/nn/common/
H A DOperationsUtils.cpp79 const double q = std::frexp(double_multiplier, right_shift);
97 const double q = std::frexp(double_multiplier, left_shift);
/frameworks/rs/tests/java_api/RSUnitTests/supportlibonlysrc/com/android/rs/unittest/
H A Dapitest.rs749 f = frexp(f, (int *)&i);
750 f2 = frexp(f2, (int2 *)&i2);
751 f3 = frexp(f3, (int3 *)&i3);
752 f4 = frexp(f4, (int4 *)&i4);
/frameworks/rs/script_api/
H A Drs_math.spec1106 function: frexp
1122 function: frexp
1219 Because of the difference in mantissa, this number is one less than is returned by @frexp().
1247 See @frexp() for the reverse operation.
1431 Because of the difference in mantissa, this number is one less than is returned by frexp().
/frameworks/rs/script_api/include/
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 132 milliseconds