/frameworks/rs/driver/runtime/ |
D | rs_f16_math.c | 31 extern half __attribute__((overloadable)) frexp(half x, int *eptr) { in frexp() function
|
D | rs_cl.c | 522 float __attribute__((overloadable)) frexp(float v1, int* v2) { in frexp() 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) { in frexp() function 1978 ret.x = frexp(v1.x, &e[0]); in frexp() 1979 ret.y = frexp(v1.y, &e[1]); in frexp() 1985 extern half3 __attribute__((overloadable)) frexp(half3 v1, int3 *eptr) { in frexp() function 1988 ret.x = frexp(v1.x, &e[0]); in frexp() 1989 ret.y = frexp(v1.y, &e[1]); in frexp() 1990 ret.z = frexp(v1.z, &e[2]); in frexp() [all …]
|
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
D | math_fp16.rs | 141 TEST_HN_FUNC_HN_PIN(frexp); 274 half out = frexp(((half) inp), &exp); \
|
D | math.rs | 289 TEST_FN_FUNC_FN_PIN(frexp);
|
/frameworks/compile/slang/tests/P_math_fp/ |
D | math_fp.rs | 108 TEST_FUNC_2PI(frexp);
|
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
D | apitest.rs | 733 f = frexp(f, (int *)&i); 734 f2 = frexp(f2, (int2 *)&i2); 735 f3 = frexp(f3, (int3 *)&i3); 736 f4 = frexp(f4, (int4 *)&i4);
|
D | math.rs | 281 TEST_FN_FUNC_FN_PIN(frexp);
|
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
D | apitest.rs | 731 f = frexp(f, (int *)&i); 732 f2 = frexp(f2, (int2 *)&i2); 733 f3 = frexp(f3, (int3 *)&i3); 734 f4 = frexp(f4, (int4 *)&i4);
|
D | math.rs | 281 TEST_FN_FUNC_FN_PIN(frexp);
|
/frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/ |
D | math.rs | 148 TEST_FN_FUNC_FN_PIN(frexp);
|
/frameworks/rs/api/ |
D | rs_math.spec | 1092 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(). function
|
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/ |
D | math.rs | 281 TEST_FN_FUNC_FN_PIN(frexp);
|
D | math.rs.bak | 267 TEST_FN_FUNC_FN_PIN(frexp);
|
D | math.rs.orig | 281 TEST_FN_FUNC_FN_PIN(frexp);
|
/frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/ |
D | math.rs | 281 TEST_FN_FUNC_FN_PIN(frexp);
|
/frameworks/rs/java/tests/ComputeBenchmark/src/com/example/android/rs/computebench/ |
D | compute_benchmark.rs | 351 BENCH_FN_FUNC_FN_PIN(frexp);
|
/frameworks/rs/scriptc/ |
D | rs_math.rsh | 2026 * 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 …]
|
/frameworks/base/docs/html/guide/topics/renderscript/reference/ |
D | rs_math.jd | 433 <a href='rs_math.html#android_rs:frexp'>frexp</a> 3296 <a name='android_rs:frexp'></a> 3299 <span class='sympad'>frexp</span> 3305 <td>float frexp(float v, int* exponent); 3310 …<td><a href='rs_value_types.html#android_rs:float2'>float2</a> frexp(<a href='rs_value_types.html#… 3315 …<td><a href='rs_value_types.html#android_rs:float3'>float3</a> frexp(<a href='rs_value_types.html#… 3320 …<td><a href='rs_value_types.html#android_rs:float4'>float4</a> frexp(<a href='rs_value_types.html#… 3559 …a, this number is one less than is returned by <a href='rs_math.html#android_rs:frexp'>frexp</a>(). 3623 <p> See <a href='rs_math.html#android_rs:frexp'>frexp</a>() for the reverse operation. 3888 <p> Because of the difference in mantissa, this number is one less than is returned by frexp().
|
/frameworks/compile/slang/tests/P_all_api_11/ |
D | all11.rs | 2696 *(float*)buf746 = frexp(*(float*)buf747, (int*) buf748); 2697 *(float2*)buf749 = frexp(*(float2*)buf750, (int2*) buf751); 2698 *(float3*)buf752 = frexp(*(float3*)buf753, (int3*) buf754); 2699 *(float4*)buf755 = frexp(*(float4*)buf756, (int4*) buf757);
|
/frameworks/compile/slang/tests/P_all_api_15/ |
D | all15.rs | 2766 *(float*)buf746 = frexp(*(float*)buf747, (int*) buf748); 2767 *(float2*)buf749 = frexp(*(float2*)buf750, (int2*) buf751); 2768 *(float3*)buf752 = frexp(*(float3*)buf753, (int3*) buf754); 2769 *(float4*)buf755 = frexp(*(float4*)buf756, (int4*) buf757);
|
/frameworks/compile/slang/tests/P_all_api_14/ |
D | all14.rs | 2766 *(float*)buf746 = frexp(*(float*)buf747, (int*) buf748); 2767 *(float2*)buf749 = frexp(*(float2*)buf750, (int2*) buf751); 2768 *(float3*)buf752 = frexp(*(float3*)buf753, (int3*) buf754); 2769 *(float4*)buf755 = frexp(*(float4*)buf756, (int4*) buf757);
|
/frameworks/compile/slang/tests/P_all_api_16/ |
D | all16.rs | 2858 *(float*)buf746 = frexp(*(float*)buf747, (int*) buf748); 2859 *(float2*)buf749 = frexp(*(float2*)buf750, (int2*) buf751); 2860 *(float3*)buf752 = frexp(*(float3*)buf753, (int3*) buf754); 2861 *(float4*)buf755 = frexp(*(float4*)buf756, (int4*) buf757);
|
/frameworks/compile/slang/tests/P_all_api_12/ |
D | all12.rs | 2696 *(float*)buf746 = frexp(*(float*)buf747, (int*) buf748); 2697 *(float2*)buf749 = frexp(*(float2*)buf750, (int2*) buf751); 2698 *(float3*)buf752 = frexp(*(float3*)buf753, (int3*) buf754); 2699 *(float4*)buf755 = frexp(*(float4*)buf756, (int4*) buf757);
|
/frameworks/compile/slang/tests/P_all_api_13/ |
D | all13.rs | 2696 *(float*)buf746 = frexp(*(float*)buf747, (int*) buf748); 2697 *(float2*)buf749 = frexp(*(float2*)buf750, (int2*) buf751); 2698 *(float3*)buf752 = frexp(*(float3*)buf753, (int3*) buf754); 2699 *(float4*)buf755 = frexp(*(float4*)buf756, (int4*) buf757);
|
/frameworks/compile/slang/tests/P_all_api_17/ |
D | all17.rs | 2978 *(float*)buf774 = frexp(*(float*)buf775, (int*) buf776); 2979 *(float2*)buf777 = frexp(*(float2*)buf778, (int2*) buf779); 2980 *(float3*)buf780 = frexp(*(float3*)buf781, (int3*) buf782); 2981 *(float4*)buf783 = frexp(*(float4*)buf784, (int4*) buf785);
|