Home
last modified time | relevance | path

Searched refs:h3 (Results 1 – 10 of 10) sorted by relevance

/frameworks/rs/tests/java_api/RsTest/src/com/android/rs/test/
Dmath_fp16.rs5 static volatile half3 h3;
16 h3 = fn(h3); \
22 i3 = fn(h3); \
28 h3 = fn(h3, h3); \
34 h3 = fn(h3, i3); \
40 h3 = fn(h3, (int3 *) &i3); \
46 h3 = fn(h3, i1); \
52 h3 = fn(h3, h1); \
58 h3 = fn(h1, h3); \
64 h3 = fn(h3, (half3 *) &h3); \
[all …]
Dfp16_globals.rs19 void validateHalf3(half3 h3) {
20 _RS_ASSERT_EQU((float) h3.x, 10.f);
21 _RS_ASSERT_EQU((float) h3.y, 11.f);
22 _RS_ASSERT_EQU((float) h3.z, -12.f);
32 void test(half h, half2 h2, half3 h3, half4 h4) {
40 validateHalf3(h3);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
DarmVCM4P10_TransformResidual4x4.c88 int h3 = g0 - g3; in armVCM4P10_TransformResidual4x4() local
92 pDst[i+12] = (OMX_S16)((h3+32)>>6); in armVCM4P10_TransformResidual4x4()
DarmVCM4P10_FwdTransformResidual4x4.c87 int h3 = g1 - (g3 << 1); in armVCM4P10_FwdTransformResidual4x4() local
91 pDst[i+12] = (OMX_S16) h3; in armVCM4P10_FwdTransformResidual4x4()
/frameworks/native/libs/math/tests/
Dhalf_test.cpp88 half3 h3(f4.xyz); in TEST_F() local
92 EXPECT_EQ(f4.xyz, h3); in TEST_F()
/frameworks/compile/slang/tests/P_invoke_half_parameter/
Dinvoke_half_parameter.rs4 void test(half h, half2 h2, half3 h3, half4 h4) {
/frameworks/compile/slang/tests/P_export_types/
Dexport_types.rs6 half3 h3 = {(half) 1.2f, (half) 2.3f, (half) 3.4f};
/frameworks/opt/vcard/tests/res/raw/
Dv21_multiple_entry.vcf3 N;CHARSET=SHIFT_JIS:�������C�h3;;;;
/frameworks/rs/driver/runtime/
Drs_core.c304 extern void __attribute__((overloadable)) rsDebug(const char *s, half3 h3) { in rsDebug() argument
305 float3 f = convert_float3(h3); in rsDebug()
306 rsDebug(s, &f, (ushort3 *) &h3); in rsDebug()
Drs_cl.c1744 extern half __attribute__((overloadable)) fn(half h1, half h2, half h3) { \
1745 return (half) fn((float) h1, (float) h2, (float) h3); \