Home
last modified time | relevance | path

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

/external/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()
DIceTargetLoweringMIPS32.cpp5007 case Intrinsics::Cttz: { in lowerIntrinsic()
DIceTargetLoweringARM32.cpp5058 case Intrinsics::Cttz: { in lowerIntrinsic()
/external/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()
/external/swiftshader/src/Reactor/
DSIMD.cpp817 RValue<SIMD::UInt> Cttz(RValue<SIMD::UInt> x, bool isZeroUndef) in Cttz() function
821 return Insert128(result, Cttz(Extract128(x, 0), isZeroUndef), 0); in Cttz()
DSIMD.hpp440 RValue<SIMD::UInt> Cttz(RValue<SIMD::UInt> x, bool isZeroUndef);
DSubzeroReactor.cpp4209 RValue<UInt> Cttz(RValue<UInt> x, bool isZeroUndef) in Cttz() function
4220 …const Ice::Intrinsics::IntrinsicInfo intrinsic = { Ice::Intrinsics::Cttz, Ice::Intrinsics::SideEff… in Cttz()
4229 RValue<UInt4> Cttz(RValue<UInt4> x, bool isZeroUndef) in Cttz() function
4239 return Scalarize([isZeroUndef](auto a) { return Cttz(a, isZeroUndef); }, x); in Cttz()
DReactor.hpp2169 RValue<UInt> Cttz(RValue<UInt> x, bool isZeroUndef);
2170 RValue<UInt4> Cttz(RValue<UInt4> x, bool isZeroUndef);
DLLVMReactor.cpp3312 RValue<UInt> Cttz(RValue<UInt> v, bool isZeroUndef) in Cttz() function
3320 RValue<UInt4> Cttz(RValue<UInt4> v, bool isZeroUndef) in Cttz() function
/external/swiftshader/src/Pipeline/
DSpirvShaderGroup.cpp309 dst.move(0, Cttz(value.UInt(0) & SIMD::UInt(15), true)); in EmitGroupNonUniform()
DSpirvShaderGLSLstd450.cpp869 dst.move(i, Cttz(v, true) | CmpEQ(v, SIMD::UInt(0))); in EmitExtGLSLstd450()
/external/swiftshader/tests/ReactorUnitTests/
DReactorUnitTests.cpp3097 Return(rr::Cttz(x, false)); in TEST()
3120 *out = rr::Cttz(UInt4(x), false); in TEST()