Home
last modified time | relevance | path

Searched refs:MulHigh (Results 1 – 8 of 8) sorted by relevance

/external/swiftshader/src/Pipeline/
DSamplerCore.cpp332 cc.x = MulHigh(As<UShort4>(cc.x), utri); in sampleFilter()
334 cc.x = MulHigh(cc.x, stri); in sampleFilter()
336 cc.y = MulHigh(As<UShort4>(cc.y), utri); in sampleFilter()
338 cc.y = MulHigh(cc.y, stri); in sampleFilter()
340 cc.z = MulHigh(As<UShort4>(cc.z), utri); in sampleFilter()
342 cc.z = MulHigh(cc.z, stri); in sampleFilter()
344 cc.w = MulHigh(As<UShort4>(cc.w), utri); in sampleFilter()
346 cc.w = MulHigh(cc.w, stri); in sampleFilter()
352 c.x = MulHigh(As<UShort4>(c.x), utri); in sampleFilter()
354 c.x = MulHigh(c.x, stri); in sampleFilter()
[all …]
DSpirvShaderArithmetic.cpp535 dst.move(i + lhsType.componentCount, MulHigh(lhs.Int(i), rhs.Int(i))); in EmitBinaryOp()
539 dst.move(i + lhsType.componentCount, MulHigh(lhs.UInt(i), rhs.UInt(i))); in EmitBinaryOp()
/external/swiftshader/src/Reactor/
DSIMD.cpp824 RValue<SIMD::Int> MulHigh(RValue<SIMD::Int> x, RValue<SIMD::Int> y) in MulHigh() function
828 return Insert128(result, MulHigh(Extract128(x, 0), Extract128(y, 0)), 0); in MulHigh()
831 RValue<SIMD::UInt> MulHigh(RValue<SIMD::UInt> x, RValue<SIMD::UInt> y) in MulHigh() function
835 return Insert128(result, MulHigh(Extract128(x, 0), Extract128(y, 0)), 0); in MulHigh()
DReactor.hpp1037 RValue<Short4> MulHigh(RValue<Short4> x, RValue<Short4> y);
1110 RValue<UShort4> MulHigh(RValue<UShort4> x, RValue<UShort4> y);
1168 RValue<Short8> MulHigh(RValue<Short8> x, RValue<Short8> y);
1227 RValue<UShort8> MulHigh(RValue<UShort8> x, RValue<UShort8> y);
1681 RValue<Int4> MulHigh(RValue<Int4> x, RValue<Int4> y);
1767 RValue<UInt4> MulHigh(RValue<UInt4> x, RValue<UInt4> y);
DSIMD.hpp441 RValue<SIMD::Int> MulHigh(RValue<SIMD::Int> x, RValue<SIMD::Int> y);
442 RValue<SIMD::UInt> MulHigh(RValue<SIMD::UInt> x, RValue<SIMD::UInt> y);
DSubzeroReactor.cpp2610 RValue<Short4> MulHigh(RValue<Short4> x, RValue<Short4> y) in MulHigh() function
2863 RValue<UShort4> MulHigh(RValue<UShort4> x, RValue<UShort4> y) in MulHigh() function
2883 RValue<Int4> MulHigh(RValue<Int4> x, RValue<Int4> y) in MulHigh() function
2891 RValue<UInt4> MulHigh(RValue<UInt4> x, RValue<UInt4> y) in MulHigh() function
2974 RValue<Short8> MulHigh(RValue<Short8> x, RValue<Short8> y) in MulHigh() function
3024 RValue<UShort8> MulHigh(RValue<UShort8> x, RValue<UShort8> y) in MulHigh() function
DLLVMReactor.cpp2077 RValue<Short4> MulHigh(RValue<Short4> x, RValue<Short4> y) in MulHigh() function
2223 RValue<UShort4> MulHigh(RValue<UShort4> x, RValue<UShort4> y) in MulHigh() function
2278 RValue<Short8> MulHigh(RValue<Short8> x, RValue<Short8> y) in MulHigh() function
2313 RValue<UShort8> MulHigh(RValue<UShort8> x, RValue<UShort8> y) in MulHigh() function
2713 RValue<Int4> MulHigh(RValue<Int4> x, RValue<Int4> y) in MulHigh() function
2720 RValue<UInt4> MulHigh(RValue<UInt4> x, RValue<UInt4> y) in MulHigh() function
/external/swiftshader/tests/ReactorUnitTests/
DReactorUnitTests.cpp1808 TEST(ReactorUnitTests, MulHigh) in TEST() argument
1815 MulHigh(Short4(0x01AA, 0x02DD, 0x03EE, 0xF422), in TEST()
1818 MulHigh(UShort4(0x01AA, 0x02DD, 0x03EE, 0xF422), in TEST()
1822 MulHigh(Int4(0x000001AA, 0x000002DD, 0xC8000000, 0xF8000000), in TEST()
1825 MulHigh(UInt4(0x000001AAu, 0x000002DDu, 0xC8000000u, 0xD8000000u), in TEST()
1829 MulHigh(Int4(0x7FFFFFFF, 0x7FFFFFFF, 0x80008000, 0xFFFFFFFF), in TEST()
1832 MulHigh(UInt4(0x7FFFFFFFu, 0x7FFFFFFFu, 0x80008000u, 0xFFFFFFFFu), in TEST()