Home
last modified time | relevance | path

Searched refs:res3 (Results 1 – 4 of 4) sorted by relevance

/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
Dclamp.rscript35 float3 res3 = clamp(src3, min3, max3);
36 _RS_ASSERT(res3.x == 1.0f);
37 _RS_ASSERT(res3.y == 2.0f);
38 _RS_ASSERT(res3.z == 3.0f);
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dclamp.rscript37 float3 res3 = clamp(src3, min3, max3);
38 _RS_ASSERT(res3.x == 1.0f);
39 _RS_ASSERT(res3.y == 2.0f);
40 _RS_ASSERT(res3.z == 3.0f);
/frameworks/libs/binary_translation/tests/inline_asm_tests/
Dmain_arm64.cc105 __uint128_t res3 = ASM_INSN_WRAP_FUNC_W_RES("fmov s0, #1.60e+01")(); in TEST() local
106 ASSERT_EQ(res3, MakeUInt128(0x41800000U, 0U)); in TEST()
212 __uint128_t res3 = ASM_INSN_WRAP_FUNC_W_RES("fmov %d0, #1.60e+01")(); in TEST() local
213 ASSERT_EQ(res3, MakeUInt128(0x4030000000000000ULL, 0U)); in TEST()
294 __uint128_t res3 = ASM_INSN_WRAP_FUNC_W_RES("fmov %0.4s, #1.60e+01")(); in TEST() local
295 ASSERT_EQ(res3, MakeUInt128(0x4180000041800000ULL, 0x4180000041800000ULL)); in TEST()
376 __uint128_t res3 = ASM_INSN_WRAP_FUNC_W_RES("fmov %0.2d, #1.60e+01")(); in TEST() local
377 ASSERT_EQ(res3, MakeUInt128(0x4030000000000000ULL, 0x4030000000000000ULL)); in TEST()
2570 __uint128_t res3 = AsmFrecps(bit_cast<uint32_t>(3.00f), bit_cast<uint32_t>(0.25f)); in TEST() local
2571 ASSERT_EQ(res3, bit_cast<uint32_t>(1.25f)); in TEST()
[all …]
/frameworks/av/media/module/foundation/
DColorUtils.cpp240 status_t res3 = unwrapColorAspectsFromColorTransfer(transfer, &aspects.mTransfer); in convertPlatformColorAspectsToCodecAspects() local
241 return res1 != OK ? res1 : (res2 != OK ? res2 : res3); in convertPlatformColorAspectsToCodecAspects()