/third_party/skia/experimental/graphite/src/ |
D | UniformManager.cpp | 151 template <typename MemType, typename UniformType> 153 if constexpr (std::is_same<MemType, UniformType>::value) { in CopyUniforms() 155 std::memcpy(dst, src, numUniforms * sizeof(MemType)); in CopyUniforms() 159 if constexpr (std::is_same<MemType, float>::value && in CopyUniforms() 173 template <typename MemType, typename UniformType, int RowsOrVecLength = 1, int Cols = 1> 174 static uint32_t Write(void *dst, int n, const MemType src[]) { in Write() 181 CopyUniforms<MemType, UniformType>(dst, src, n * RowsOrVecLength); in Write() 184 CopyUniforms<MemType, UniformType>(dst, src, RowsOrVecLength); in Write()
|
/third_party/mesa3d/src/gallium/auxiliary/tgsi/ |
D | tgsi_text.c | 1465 decl.Declaration.MemType = TGSI_MEMORY_TYPE_GLOBAL; in parse_declaration() 1468 decl.Declaration.MemType = TGSI_MEMORY_TYPE_SHARED; in parse_declaration() 1471 decl.Declaration.MemType = TGSI_MEMORY_TYPE_PRIVATE; in parse_declaration() 1474 decl.Declaration.MemType = TGSI_MEMORY_TYPE_INPUT; in parse_declaration()
|
D | tgsi_build.c | 114 declaration.MemType = TGSI_MEMORY_TYPE_GLOBAL; in tgsi_default_declaration() 149 declaration.MemType = mem_type; in tgsi_build_declaration() 428 full_decl->Declaration.MemType, in tgsi_build_full_declaration()
|
D | tgsi_dump.c | 399 switch (decl->Declaration.MemType) { in iter_declaration()
|
D | tgsi_ureg.c | 1781 out[0].decl.MemType = memory_type; in emit_decl_memory()
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | WasmTranslator.cpp | 1204 Node LoadMem(wasm::LocalType Type, MachineType MemType, Node Index, in LoadMem() argument 1206 LOG(out << "LoadMem." << toIceType(MemType) << "(" << Index << "[" << Offset in LoadMem() 1211 auto *LoadResult = makeVariable(toIceType(MemType)); in LoadMem() 1216 if (toIceType(Type) != toIceType(MemType)) { in LoadMem() 1221 if (MemType.IsSigned()) { in LoadMem()
|
D | IceInstX8664.cpp | 2853 const Type MemType = getType(); in emit() local 2854 if (Base->getType() != IceType_i32 && MemType != IceType_void && in emit() 2855 !isVectorType(MemType)) { in emit()
|
D | IceTargetLoweringX8664.h | 299 X86OperandMem *computeAddressOpt(const Inst *Instr, Type MemType,
|
D | IceTargetLoweringX8632.h | 303 X86OperandMem *computeAddressOpt(const Inst *Instr, Type MemType,
|
D | IceTargetLoweringX8664.cpp | 4779 X86OperandMem *TargetX8664::computeAddressOpt(const Inst *Instr, Type MemType, in computeAddressOpt() argument 4922 return X86OperandMem::create(Func, MemType, NewAddr.Base, OffsetOp, in computeAddressOpt()
|
D | IceTargetLoweringX8632.cpp | 5358 X86OperandMem *TargetX8632::computeAddressOpt(const Inst *Instr, Type MemType, in computeAddressOpt() argument 5512 return X86OperandMem::create(Func, MemType, NewAddr.Base, OffsetOp, in computeAddressOpt()
|
/third_party/mesa3d/src/gallium/include/pipe/ |
D | p_shader_tokens.h | 136 unsigned MemType : 2; /**< TGSI_MEMORY_TYPE_x for TGSI_FILE_MEMORY */ member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelLowering.h | 1445 bool needsCmpXchgNb(Type *MemType) const;
|
D | X86ISelLowering.cpp | 27295 bool X86TargetLowering::needsCmpXchgNb(Type *MemType) const { in needsCmpXchgNb() 27296 unsigned OpWidth = MemType->getPrimitiveSizeInBits(); in needsCmpXchgNb() 27309 Type *MemType = SI->getValueOperand()->getType(); in shouldExpandAtomicStoreInIR() local 27313 if (MemType->getPrimitiveSizeInBits() == 64 && !Subtarget.is64Bit() && in shouldExpandAtomicStoreInIR() 27317 return needsCmpXchgNb(MemType); in shouldExpandAtomicStoreInIR() 27324 Type *MemType = LI->getType(); in shouldExpandAtomicLoadInIR() local 27331 if (MemType->getPrimitiveSizeInBits() == 64 && !Subtarget.is64Bit() && in shouldExpandAtomicLoadInIR() 27336 return needsCmpXchgNb(MemType) ? AtomicExpansionKind::CmpXChg in shouldExpandAtomicLoadInIR() 27343 Type *MemType = AI->getType(); in shouldExpandAtomicRMWInIR() local 27347 if (MemType->getPrimitiveSizeInBits() > NativeWidth) { in shouldExpandAtomicRMWInIR() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZInstrFormats.td | 40 // MemKey identifies a targe reg-mem opcode, while MemType can be either 44 string MemType = "none"; 152 let ColFields = ["MemType"]; 4771 let MemType = "pseudo"; 5045 let MemType = "target"; 5060 let MemType = "target";
|
/third_party/mesa3d/src/nouveau/codegen/ |
D | nv50_ir_from_tgsi.cpp | 1432 memoryFiles[i].mem_type = decl->Declaration.MemType; in scanDeclaration()
|
/third_party/mesa3d/src/gallium/drivers/svga/ |
D | svga_tgsi_vgpu10.c | 4985 decl->Declaration.MemType == TGSI_MEMORY_TYPE_SHARED) { in emit_vgpu10_declaration()
|