Home
last modified time | relevance | path

Searched refs:UShort8 (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Reactor/
Dx86.hpp70 RValue<UShort8> packusdw(RValue<Int4> x, RValue<Int4> y);
73 RValue<UShort8> psrlw(RValue<UShort8> x, unsigned char y);
95 RValue<UShort8> pmulhuw(RValue<UShort8> x, RValue<UShort8> y);
103 RValue<Int4> pmovzxwd(RValue<UShort8> x);
DReactor.cpp2192 UShort8::UShort8(unsigned short c) in UShort8() function in rr::UShort8
2198 UShort8::UShort8(unsigned short c0, unsigned short c1, unsigned short c2, unsigned short c3, unsign… in UShort8() function in rr::UShort8
2204 UShort8::UShort8(RValue<UShort8> rhs) in UShort8() function in rr::UShort8
2209 UShort8::UShort8(const Reference<UShort8> &rhs) in UShort8() function in rr::UShort8
2214 UShort8::UShort8(RValue<UShort4> lo, RValue<UShort4> hi) in UShort8() function in rr::UShort8
2222 RValue<UShort8> UShort8::operator=(RValue<UShort8> rhs) in operator =()
2227 RValue<UShort8> UShort8::operator=(const UShort8 &rhs) in operator =()
2232 RValue<UShort8> UShort8::operator=(const Reference<UShort8> &rhs) in operator =()
2237 RValue<UShort8> operator&(RValue<UShort8> lhs, RValue<UShort8> rhs) in operator &()
2239 return RValue<UShort8>(Nucleus::createAnd(lhs.value(), rhs.value())); in operator &()
[all …]
DReactor.hpp104 class UShort8;
1075 class UShort8 : public LValue<UShort8> class
1078 UShort8() = default;
1079 UShort8(unsigned short c);
1080UShort8(unsigned short c0, unsigned short c1, unsigned short c2, unsigned short c3, unsigned short…
1081 UShort8(RValue<UShort8> rhs);
1083 UShort8(const Reference<UShort8> &rhs);
1084 UShort8(RValue<UShort4> lo, RValue<UShort4> hi);
1086 RValue<UShort8> operator=(RValue<UShort8> rhs);
1087 RValue<UShort8> operator=(const UShort8 &rhs);
[all …]
DLLVMReactor.cpp2330 RValue<UShort8> operator<<(RValue<UShort8> lhs, unsigned char rhs) in operator <<()
2334 return As<UShort8>(x86::psllw(As<Short8>(lhs), rhs)); in operator <<()
2336 return As<UShort8>(V(lowerVectorShl(V(lhs.value()), rhs))); in operator <<()
2340 RValue<UShort8> operator>>(RValue<UShort8> lhs, unsigned char rhs) in operator >>()
2346 return As<UShort8>(V(lowerVectorLShr(V(lhs.value()), rhs))); in operator >>()
2350 RValue<UShort8> MulHigh(RValue<UShort8> x, RValue<UShort8> y) in MulHigh()
2356 return As<UShort8>(V(lowerMulHigh(V(x.value()), V(y.value()), false))); in MulHigh()
2360 Type *UShort8::type() in type()
2628 *this = x86::pmovzxwd(As<UShort8>(cast)); in Int4()
2789 RValue<UShort8> PackUnsigned(RValue<Int4> x, RValue<Int4> y) in PackUnsigned()
[all …]
DSubzeroReactor.cpp3133 RValue<UShort> Extract(RValue<UShort8> val, int i) in Extract()
3139 RValue<UShort8> Insert(RValue<UShort8> val, RValue<UShort> element, int i) in Insert()
3142 return RValue<UShort8>(Nucleus::createInsertElement(val.value(), element.value(), i)); in Insert()
3145 RValue<UShort8> operator<<(RValue<UShort8> lhs, unsigned char rhs) in operator <<()
3150 UShort8 result; in operator <<()
3164 return RValue<UShort8>(Nucleus::createShl(lhs.value(), V(::context->getConstantInt32(rhs)))); in operator <<()
3168 RValue<UShort8> operator>>(RValue<UShort8> lhs, unsigned char rhs) in operator >>()
3173 UShort8 result; in operator >>()
3187 return RValue<UShort8>(Nucleus::createLShr(lhs.value(), V(::context->getConstantInt32(rhs)))); in operator >>()
3191 RValue<UShort8> MulHigh(RValue<UShort8> x, RValue<UShort8> y) in MulHigh()
[all …]
DLLVMReactorDebugInfo.cpp434 …diTypes.emplace(T(UShort8::type()), diBuilder->createVectorType(128, 128, diTypes[T(UShort::type()… in registerBasicTypes()
/third_party/skia/third_party/externals/swiftshader/src/Shader/
DPixelRoutine.cpp2590 UShort8 value = *Pointer<UShort8>(buffer); in writeColor()
2591 UShort8 packedCol = UShort8(UShort4(As<Int4>(oC.x)), UShort4(As<Int4>(oC.y))); in writeColor()
2603 value = *Pointer<UShort8>(buffer); in writeColor()
2604 packedCol = UShort8(UShort4(As<Int4>(oC.z)), UShort4(As<Int4>(oC.w))); in writeColor()
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DPixelRoutine.cpp3072 UShort8 value = *Pointer<UShort8>(buffer); in writeColor()
3073 UShort8 packedCol = UShort8(UShort4(As<Int4>(color.x)), UShort4(As<Int4>(color.y))); in writeColor()
3085 value = *Pointer<UShort8>(buffer); in writeColor()
3086 packedCol = UShort8(UShort4(As<Int4>(color.z)), UShort4(As<Int4>(color.w))); in writeColor()
/third_party/skia/third_party/externals/swiftshader/tests/ReactorUnitTests/
DReactorUnitTests.cpp1014 *Pointer<UShort8>(out + 16 * 2) = Swizzle(As<UShort8>(c), 0x76543210u); in TEST()
1621 *Pointer<UShort8>(out + 8 * 4) = in TEST()
2376 std::pair<int16_t[8], UShort8>,