/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceIntrinsics.h | 46 Cttz, enumerator
|
H A D | IceTargetLoweringX8632.cpp | 3976 case Intrinsics::Cttz: { in lowerIntrinsic() 4624 void TargetX8632::lowerCountZeros(bool Cttz, Type Ty, Variable *Dest, in lowerCountZeros() argument 4652 // Cttz, is similar, but uses bsf instead, and doesn't require the xor in lowerCountZeros() 4660 if (Cttz) { in lowerCountZeros() 4670 if (Cttz) { in lowerCountZeros() 4685 if (!Cttz) { in lowerCountZeros() 4705 if (Cttz) { in lowerCountZeros()
|
H A D | IceTargetLoweringX8664.cpp | 3512 case Intrinsics::Cttz: { in lowerIntrinsic() 4071 void TargetX8664::lowerCountZeros(bool Cttz, Type Ty, Variable *Dest, in lowerCountZeros() argument 4093 // Cttz, is similar, but uses bsf instead, and doesn't require the xor in lowerCountZeros() 4101 if (Cttz) { in lowerCountZeros() 4111 if (Cttz) { in lowerCountZeros() 4126 if (!Cttz) { in lowerCountZeros()
|
H A D | IceTargetLoweringX8632.h | 320 void lowerCountZeros(bool Cttz, Type Ty, Variable *Dest, Operand *FirstVal,
|
H A D | IceTargetLoweringX8664.h | 316 void lowerCountZeros(bool Cttz, Type Ty, Variable *Dest, Operand *FirstVal,
|
H A D | IceTargetLoweringARM32.cpp | 5058 case Intrinsics::Cttz: {
|
H A D | IceTargetLoweringMIPS32.cpp | 5007 case Intrinsics::Cttz: { in lowerIntrinsic()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/MCTargetDesc/ |
H A D | HexagonShuffler.cpp | 103 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/ |
H A D | SpirvShaderGroup.cpp | 268 dst.move(0, Cttz(value.UInt(0) & SIMD::UInt(15), true)); in EmitGroupNonUniform()
|
H A D | SpirvShaderGLSLstd450.cpp | 879 dst.move(i, Cttz(v, true) | CmpEQ(v, SIMD::UInt(0))); in EmitExtGLSLstd450()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A D | SubzeroReactor.cpp | 4483 RValue<UInt> Cttz(RValue<UInt> x, bool isZeroUndef) 4488 UNIMPLEMENTED_NO_BUG("Subzero Cttz()"); 4494 const Ice::Intrinsics::IntrinsicInfo intrinsic = { Ice::Intrinsics::Cttz, Ice::Intrinsics::SideEffects_F, Ice::Intrinsics::ReturnsTwice_F, Ice::Intrinsics::MemoryWrite_F }; 4503 RValue<UInt4> Cttz(RValue<UInt4> x, bool isZeroUndef) 4508 UNIMPLEMENTED_NO_BUG("Subzero Cttz()"); 4515 result = Insert(result, Cttz(Extract(x, 0), isZeroUndef), 0); 4516 result = Insert(result, Cttz(Extract(x, 1), isZeroUndef), 1); 4517 result = Insert(result, Cttz(Extract(x, 2), isZeroUndef), 2); 4518 result = Insert(result, Cttz(Extract(x, 3), isZeroUndef), 3);
|
H A D | Reactor.hpp | 2443 RValue<UInt> Cttz(RValue<UInt> x, bool isZeroUndef); 2444 RValue<UInt4> Cttz(RValue<UInt4> x, bool isZeroUndef);
|
H A D | LLVMReactor.cpp | 3550 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/ |
H A D | ReactorUnitTests.cpp | 2950 Return(rr::Cttz(x, false)); 2973 *out = rr::Cttz(UInt4(x), false);
|