Home
last modified time | relevance | path

Searched refs:Cttz (Results 1 – 14 of 14) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceIntrinsics.h46 Cttz, enumerator
DIceTargetLoweringX8632.cpp3976 case Intrinsics::Cttz: { in lowerIntrinsic()
4624 void TargetX8632::lowerCountZeros(bool Cttz, Type Ty, Variable *Dest, in lowerCountZeros() argument
4660 if (Cttz) { in lowerCountZeros()
4670 if (Cttz) { in lowerCountZeros()
4685 if (!Cttz) { in lowerCountZeros()
4705 if (Cttz) { in lowerCountZeros()
DIceTargetLoweringX8664.h316 void lowerCountZeros(bool Cttz, Type Ty, Variable *Dest, Operand *FirstVal,
DIceTargetLoweringX8632.h320 void lowerCountZeros(bool Cttz, Type Ty, Variable *Dest, Operand *FirstVal,
DIceTargetLoweringX8664.cpp3512 case Intrinsics::Cttz: { in lowerIntrinsic()
4071 void TargetX8664::lowerCountZeros(bool Cttz, Type Ty, Variable *Dest, in lowerCountZeros() argument
4101 if (Cttz) { in lowerCountZeros()
4111 if (Cttz) { in lowerCountZeros()
4126 if (!Cttz) { in lowerCountZeros()
DIceTargetLoweringARM32.cpp5058 case Intrinsics::Cttz: { in lowerIntrinsic()
DIceTargetLoweringMIPS32.cpp5007 case Intrinsics::Cttz: { in lowerIntrinsic()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonShuffler.cpp103 unsigned Cttz = countTrailingZeros(Units); in setWeight() local
104 Weight = (1u << (SlotWeight * s)) * ((MaskWeight - Ctpop) << Cttz); in setWeight()
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DSpirvShaderGroup.cpp268 dst.move(0, Cttz(value.UInt(0) & SIMD::UInt(15), true)); in EmitGroupNonUniform()
DSpirvShaderGLSLstd450.cpp879 dst.move(i, Cttz(v, true) | CmpEQ(v, SIMD::UInt(0))); in EmitExtGLSLstd450()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DSubzeroReactor.cpp4483 RValue<UInt> Cttz(RValue<UInt> x, bool isZeroUndef) in Cttz() function
4494 …const Ice::Intrinsics::IntrinsicInfo intrinsic = { Ice::Intrinsics::Cttz, Ice::Intrinsics::SideEff… in Cttz()
4503 RValue<UInt4> Cttz(RValue<UInt4> x, bool isZeroUndef) in Cttz() function
4515 result = Insert(result, Cttz(Extract(x, 0), isZeroUndef), 0); in Cttz()
4516 result = Insert(result, Cttz(Extract(x, 1), isZeroUndef), 1); in Cttz()
4517 result = Insert(result, Cttz(Extract(x, 2), isZeroUndef), 2); in Cttz()
4518 result = Insert(result, Cttz(Extract(x, 3), isZeroUndef), 3); in Cttz()
DReactor.hpp2443 RValue<UInt> Cttz(RValue<UInt> x, bool isZeroUndef);
2444 RValue<UInt4> Cttz(RValue<UInt4> x, bool isZeroUndef);
DLLVMReactor.cpp3550 RValue<UInt> Cttz(RValue<UInt> v, bool isZeroUndef) in Cttz() function
3558 RValue<UInt4> Cttz(RValue<UInt4> v, bool isZeroUndef) in Cttz() function
/third_party/skia/third_party/externals/swiftshader/tests/ReactorUnitTests/
DReactorUnitTests.cpp2950 Return(rr::Cttz(x, false)); in TEST()
2973 *out = rr::Cttz(UInt4(x), false); in TEST()