/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | MachineIRBuilder.h | 67 enum class DstType { Ty_LLT, Ty_Reg, Ty_RC }; class in llvm::DstOp 68 DstOp(unsigned R) : Reg(R), Ty(DstType::Ty_Reg) {} in DstOp() 69 DstOp(Register R) : Reg(R), Ty(DstType::Ty_Reg) {} in DstOp() 70 DstOp(const MachineOperand &Op) : Reg(Op.getReg()), Ty(DstType::Ty_Reg) {} in DstOp() 71 DstOp(const LLT &T) : LLTTy(T), Ty(DstType::Ty_LLT) {} in DstOp() 72 DstOp(const TargetRegisterClass *TRC) : RC(TRC), Ty(DstType::Ty_RC) {} in DstOp() 76 case DstType::Ty_Reg: in addDefToMIB() 79 case DstType::Ty_LLT: in addDefToMIB() 82 case DstType::Ty_RC: in addDefToMIB() 90 case DstType in getLLTTy() [all...] |
/third_party/node/deps/v8/src/utils/ |
H A D | memcopy.h | 267 template <typename SrcType, typename DstType> 268 void CopyChars(DstType* dst, const SrcType* src, size_t count) V8_NONNULL(1, 2); 270 template <typename SrcType, typename DstType> 271 void CopyChars(DstType* dst, const SrcType* src, size_t count) { in CopyChars() 273 STATIC_ASSERT(std::is_integral<DstType>::value); in CopyChars() 275 using DstTypeUnsigned = typename std::make_unsigned<DstType>::type; in CopyChars() 282 Address dst_end = dst_start + count * sizeof(DstType); in CopyChars()
|
/third_party/vk-gl-cts/framework/randomshaders/ |
H A D | rsgExpression.cpp | 537 template <typename SrcType, typename DstType> 538 inline DstType convert (SrcType src) in convert() 541 return Scalar::min<DstType>().template as<DstType>(); in convert() 543 return Scalar::max<DstType>().template as<DstType>(); in convert() 545 return DstType(src); in convert() 567 template <typename SrcType, typename DstType> 568 inline void convertValueRange (SrcType srcMin, SrcType srcMax, DstType& dstMin, DstType [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
H A D | CSEMIRBuilder.cpp | 61 case DstOp::DstType::Ty_RC: in profileDstOp() 119 DstOp::DstType DT = Op.getDstOpKind(); in checkCopyToDefsPossible() 120 return DT == DstOp::DstType::Ty_LLT || DT == DstOp::DstType::Ty_RC; in checkCopyToDefsPossible() 131 if (Op.getDstOpKind() == DstOp::DstType::Ty_Reg)
|
H A D | CombinerHelper.cpp | 205 LLT DstType = MRI.getType(MI.getOperand(0).getReg()); in matchCombineShuffleVector() local 211 unsigned DstNumElts = DstType.isVector() ? DstType.getNumElements() : 1; in matchCombineShuffleVector()
|
/third_party/skia/tests/ |
H A D | VkHardwareBufferTest.cpp | 1076 enum class DstType { class 1082 SrcType srcType, DstType dstType, bool shareSyncs) { in run_test() 1106 if (DstType::kVulkan == dstType) { in run_test() 1110 SkASSERT(DstType::kEGL == dstType); in run_test() 1113 SkASSERT(false, "DstType::kEGL used without OpenGL support."); in run_test() 1295 run_test(reporter, options, SrcType::kCPU, DstType::kVulkan, false); in DEF_GPUTEST() 1299 run_test(reporter, options, SrcType::kVulkan, DstType::kVulkan, false); in DEF_GPUTEST() 1303 run_test(reporter, options, SrcType::kVulkan, DstType::kVulkan, true); in DEF_GPUTEST() 1308 run_test(reporter, options, SrcType::kEGL, DstType::kVulkan, false); in DEF_GPUTEST() 1312 run_test(reporter, options, SrcType::kCPU, DstType in DEF_GPUTEST() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | IceInstMIPS32.cpp | 550 const Type DstType = Dest->getType(); in emit() local 554 if ((isScalarIntegerType(DstType) && isScalarFloatingType(SrcType)) || in emit() 555 (isScalarFloatingType(DstType) && isScalarIntegerType(SrcType))) { in emit() 556 if (isScalarFloatingType(DstType)) { in emit()
|
H A D | IceAssemblerMIPS32.cpp | 798 const Type DstType = OpRd->getType(); in move() local 801 if ((isScalarIntegerType(DstType) && isScalarFloatingType(SrcType)) || in move() 802 (isScalarFloatingType(DstType) && isScalarIntegerType(SrcType))) { in move() 803 if (isScalarFloatingType(DstType)) { in move() 809 switch (DstType) { in move()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUPrintfRuntimeBinding.cpp | 477 Type *DstType = (Size == 32) ? Int32Ty : Int64Ty; in lowerPrintfForGpu() local 478 Arg = new PtrToIntInst(Arg, DstType, "PrintArgPtr", Brnch); in lowerPrintfForGpu()
|
/third_party/node/deps/v8/src/codegen/mips64/ |
H A D | assembler-mips64.h | 1775 template <typename DstType, typename SrcType> 1777 SrcType src, DstType dst);
|
H A D | assembler-mips64.cc | 1240 template <typename DstType, typename SrcType> 1242 uint32_t n, SrcType src, DstType dst) { in GenInstrMsaElm()
|
/third_party/node/deps/v8/src/codegen/mips/ |
H A D | assembler-mips.h | 1739 template <typename DstType, typename SrcType> 1741 SrcType src, DstType dst);
|
H A D | assembler-mips.cc | 1311 template <typename DstType, typename SrcType> 1313 uint32_t n, SrcType src, DstType dst) { in GenInstrMsaElm()
|