Home
last modified time | relevance | path

Searched defs:Ty (Results 1 – 25 of 682) sorted by relevance

12345678910>>...28

/external/swiftshader/src/Pipeline/
DSpirvShaderDebug.hpp53 struct PrintValue::Ty<sw::Spirv::Object::ID> struct in rr::PrintValue
55 …ne std::string fmt(sw::Spirv::Object::ID v) { return "Object<" + std::to_string(v.value()) + ">"; } in fmt()
56 static inline std::vector<Value *> val(sw::Spirv::Object::ID v) { return {}; } in val()
59 struct PrintValue::Ty<sw::Spirv::Type::ID> struct in rr::PrintValue
61 …inline std::string fmt(sw::Spirv::Type::ID v) { return "Type<" + std::to_string(v.value()) + ">"; } in fmt()
62 static inline std::vector<Value *> val(sw::Spirv::Type::ID v) { return {}; } in val()
65 struct PrintValue::Ty<sw::Spirv::Block::ID> struct in rr::PrintValue
67 …line std::string fmt(sw::Spirv::Block::ID v) { return "Block<" + std::to_string(v.value()) + ">"; } in fmt()
68 static inline std::vector<Value *> val(sw::Spirv::Block::ID v) { return {}; } in val()
72 struct PrintValue::Ty<sw::Intermediate> struct in rr::PrintValue
[all …]
DShaderCore.hpp290 struct PrintValue::Ty<sw::Vector4f> struct in rr::PrintValue
292 static std::string fmt(const sw::Vector4f &v) in fmt()
300 static std::vector<rr::Value *> val(const sw::Vector4f &v) in val()
306 struct PrintValue::Ty<sw::Vector4s> struct in rr::PrintValue
308 static std::string fmt(const sw::Vector4s &v) in fmt()
316 static std::vector<rr::Value *> val(const sw::Vector4s &v) in val()
/external/swiftshader/src/Reactor/
DPrint.hpp47 struct Ty struct in rr::PrintValue
213 struct PrintValue::Ty<const char *> struct in rr::PrintValue
215 static std::string fmt(const char *v) { return "%s"; } in fmt()
219 struct PrintValue::Ty<std::string> struct in rr::PrintValue
221 …atic std::string fmt(const std::string &v) { return PrintValue::Ty<const char *>::fmt(v.c_str()); } in fmt()
222 …:vector<Value *> val(const std::string &v) { return PrintValue::Ty<const char *>::val(v.c_str()); } in val()
227 struct PrintValue::Ty<Bool> struct in rr::PrintValue
229 static std::string fmt(const RValue<Bool> &v) { return "%s"; } in fmt()
233 struct PrintValue::Ty<Byte> struct in rr::PrintValue
235 static std::string fmt(const RValue<Byte> &v) { return "%d"; } in fmt()
[all …]
/external/swiftshader/third_party/subzero/src/
DIceAssemblerX8632.cpp279 void AssemblerX8632::mov(Type Ty, GPRRegister dst, const Immediate &imm) { in mov()
295 void AssemblerX8632::mov(Type Ty, GPRRegister dst, GPRRegister src) { in mov()
307 void AssemblerX8632::mov(Type Ty, GPRRegister dst, const AsmAddress &src) { in mov()
319 void AssemblerX8632::mov(Type Ty, const AsmAddress &dst, GPRRegister src) { in mov()
331 void AssemblerX8632::mov(Type Ty, const AsmAddress &dst, const Immediate &imm) { in mov()
384 void AssemblerX8632::lea(Type Ty, GPRRegister dst, const AsmAddress &src) { in lea()
393 void AssemblerX8632::cmov(Type Ty, BrCond cond, GPRRegister dst, in cmov()
405 void AssemblerX8632::cmov(Type Ty, BrCond cond, GPRRegister dst, in cmov()
423 void AssemblerX8632::movss(Type Ty, XmmRegister dst, const AsmAddress &src) { in movss()
431 void AssemblerX8632::movss(Type Ty, const AsmAddress &dst, XmmRegister src) { in movss()
[all …]
DIceAssemblerX8664.cpp261 void AssemblerX8664::mov(Type Ty, GPRRegister dst, const Immediate &imm) { in mov()
278 void AssemblerX8664::mov(Type Ty, GPRRegister dst, GPRRegister src) { in mov()
291 void AssemblerX8664::mov(Type Ty, GPRRegister dst, const AsmAddress &src) { in mov()
304 void AssemblerX8664::mov(Type Ty, const AsmAddress &dst, GPRRegister src) { in mov()
317 void AssemblerX8664::mov(Type Ty, const AsmAddress &dst, const Immediate &imm) { in mov()
411 void AssemblerX8664::lea(Type Ty, GPRRegister dst, const AsmAddress &src) { in lea()
421 void AssemblerX8664::cmov(Type Ty, BrCond cond, GPRRegister dst, in cmov()
434 void AssemblerX8664::cmov(Type Ty, BrCond cond, GPRRegister dst, in cmov()
453 void AssemblerX8664::movss(Type Ty, XmmRegister dst, const AsmAddress &src) { in movss()
462 void AssemblerX8664::movss(Type Ty, const AsmAddress &dst, XmmRegister src) { in movss()
[all …]
DIceTypes.cpp143 size_t typeWidthInBytes(Type Ty) { in typeWidthInBytes()
148 int8_t typeWidthInBytesLog2(Type Ty) { in typeWidthInBytesLog2()
155 size_t typeAlignInBytes(Type Ty) { in typeAlignInBytes()
162 size_t typeNumElements(Type Ty) { in typeNumElements()
169 Type typeElementType(Type Ty) { in typeElementType()
178 bool isVectorType(Type Ty) { in isVectorType()
185 bool isBooleanType(Type Ty) { in isBooleanType()
192 bool isIntegerType(Type Ty) { in isIntegerType()
199 bool isScalarIntegerType(Type Ty) { in isScalarIntegerType()
206 bool isVectorIntegerType(Type Ty) { in isVectorIntegerType()
[all …]
DIceTypes.h85 inline std::string typeStdString(Type Ty) { return typeString(Ty); } in typeStdString()
109 inline bool isCallReturnType(Type Ty) { in isCallReturnType()
122 inline bool isByteSizedType(Type Ty) { in isByteSizedType()
130 inline bool isByteSizedArithType(Type Ty) { in isByteSizedArithType()
136 inline bool isInt32Asserting32Or64(Type Ty) { in isInt32Asserting32Or64()
143 inline bool isFloat32Asserting32Or64(Type Ty) { in isFloat32Asserting32Or64()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder_gfx_mem.cpp129 Value* BuilderGfxMem::GEP(Value* Ptr, Value* Idx, Type* Ty, bool isReadOnly, const Twine& Name) in GEP()
153 Value* BuilderGfxMem::GEP(Type* Ty, Value* Ptr, Value* Idx, const Twine& Name) in GEP()
170 Value* BuilderGfxMem::GEP(Value* Ptr, const std::initializer_list<Value*>& indexList, Type* Ty) in GEP()
188 BuilderGfxMem::GEP(Value* Ptr, const std::initializer_list<uint32_t>& indexList, Type* Ty) in GEP()
205 Value* BuilderGfxMem::TranslationHelper(Value* Ptr, Type* Ty, Value* pfnTranslateGfxAddress) in TranslationHelper()
219 void BuilderGfxMem::TrackerHelper(Value* Ptr, Type* Ty, MEM_CLIENT usage, bool isRead) in TrackerHelper()
266 LoadInst* BuilderGfxMem::LOAD(Value* Ptr, const char* Name, Type* Ty, MEM_CLIENT usage) in LOAD()
275 LoadInst* BuilderGfxMem::LOAD(Value* Ptr, const Twine& Name, Type* Ty, MEM_CLIENT usage) in LOAD()
285 Value* Ptr, bool isVolatile, const Twine& Name, Type* Ty, MEM_CLIENT usage) in LOAD()
297 Type* Ty, in LOAD()
[all …]
/external/rust/crates/clap_derive/src/utils/
Dty.rs11 pub enum Ty { enum
22 impl Ty { impl
152 fn get_vec_ty(ty: &Type, vec_ty: Ty, vecvec_ty: Ty) -> Option<Ty> { in get_vec_ty()
163 fn get_vec_ty(ty: &Type, vec_ty: Ty, _vecvec_ty: Ty) -> Option<Ty> { in get_vec_ty()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMRegisterBankInfo.cpp235 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
280 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
293 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
300 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
360 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
374 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
398 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
420 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
435 LLT Ty = MRI.getType(MI.getOperand(0).getReg()); in getInstrMapping() local
/external/llvm/lib/IR/
DConstants.cpp195 Constant *Constant::getNullValue(Type *Ty) { in getNullValue()
232 Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) { in getIntegerValue()
249 Constant *Constant::getAllOnesValue(Type *Ty) { in getAllOnesValue()
503 ConstantInt::ConstantInt(IntegerType *Ty, const APInt &V) in ConstantInt()
522 Constant *ConstantInt::getTrue(Type *Ty) { in getTrue()
534 Constant *ConstantInt::getFalse(Type *Ty) { in getFalse()
560 Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) { in get()
570 ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V, bool isSigned) { in get()
574 ConstantInt *ConstantInt::getSigned(IntegerType *Ty, int64_t V) { in getSigned()
578 Constant *ConstantInt::getSigned(Type *Ty, int64_t V) { in getSigned()
[all …]
DGlobals.cpp220 GlobalVariable::GlobalVariable(Type *Ty, bool constant, LinkageTypes Link, in GlobalVariable()
237 GlobalVariable::GlobalVariable(Module &M, Type *Ty, bool constant, in GlobalVariable()
312 GlobalIndirectSymbol::GlobalIndirectSymbol(Type *Ty, ValueTy VTy, in GlobalIndirectSymbol()
324 GlobalAlias::GlobalAlias(Type *Ty, unsigned AddressSpace, LinkageTypes Link, in GlobalAlias()
333 GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace, in create()
339 GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace, in create()
345 GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace, in create()
384 GlobalIFunc::GlobalIFunc(Type *Ty, unsigned AddressSpace, LinkageTypes Link, in GlobalIFunc()
393 GlobalIFunc *GlobalIFunc::create(Type *Ty, unsigned AddressSpace, in create()
DDIBuilder.cpp237 DIDerivedType *DIBuilder::createTypedef(DIType *Ty, StringRef Name, in createTypedef()
245 DIDerivedType *DIBuilder::createFriend(DIType *Ty, DIType *FriendTy) { in createFriend()
252 DIDerivedType *DIBuilder::createInheritance(DIType *Ty, DIType *BaseTy, in createInheritance()
265 unsigned Flags, DIType *Ty) { in createMemberType()
280 uint64_t StorageOffsetInBits, unsigned Flags, DIType *Ty) { in createBitFieldMemberType()
292 DIType *Ty, unsigned Flags, in createStaticMemberType()
305 DIType *Ty, MDNode *PropertyNode) { in createObjCIVar()
315 unsigned PropertyAttributes, DIType *Ty) { in createObjCProperty()
322 DIType *Ty) { in createTemplateTypeParameter()
329 DIScope *Context, StringRef Name, DIType *Ty, in createTemplateValueParameterHelper()
[all …]
/external/clang/test/Misc/
Dinteger-literal-printing.cpp15 template <> struct Type3Helper<boolTy::b> { typedef boolTy Ty; }; typedef
24 template <> struct Type4Helper<charTy::c> { typedef charTy Ty; }; typedef
32 template <> struct Type5Helper<scharTy::c> { typedef scharTy Ty; }; typedef
40 template <> struct Type6Helper<ucharTy::c> { typedef ucharTy Ty; }; typedef
48 template <> struct Type7Helper<wcharTy::c> { typedef wcharTy Ty; }; typedef
56 template <> struct Type8Helper<char16Ty::c> { typedef char16Ty Ty; }; typedef
64 template <> struct Type9Helper<char32Ty::c> { typedef char32Ty Ty; }; typedef
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstants.cpp285 Type *Ty = getType(); in isElementWiseEqual() local
318 Constant *Constant::getNullValue(Type *Ty) { in getNullValue()
355 Constant *Constant::getIntegerValue(Type *Ty, const APInt &V) { in getIntegerValue()
372 Constant *Constant::getAllOnesValue(Type *Ty) { in getAllOnesValue()
629 Type *Ty = C->getType(); in replaceUndefsWith() local
655 ConstantInt::ConstantInt(IntegerType *Ty, const APInt &V) in ConstantInt()
674 Constant *ConstantInt::getTrue(Type *Ty) { in getTrue()
682 Constant *ConstantInt::getFalse(Type *Ty) { in getFalse()
704 Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) { in get()
714 ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V, bool isSigned) { in get()
[all …]
DGlobals.cpp336 GlobalVariable::GlobalVariable(Type *Ty, bool constant, LinkageTypes Link, in GlobalVariable()
355 GlobalVariable::GlobalVariable(Module &M, Type *Ty, bool constant, in GlobalVariable()
427 GlobalIndirectSymbol::GlobalIndirectSymbol(Type *Ty, ValueTy VTy, in GlobalIndirectSymbol()
476 GlobalAlias::GlobalAlias(Type *Ty, unsigned AddressSpace, LinkageTypes Link, in GlobalAlias()
485 GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace, in create()
491 GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace, in create()
497 GlobalAlias *GlobalAlias::create(Type *Ty, unsigned AddressSpace, in create()
532 GlobalIFunc::GlobalIFunc(Type *Ty, unsigned AddressSpace, LinkageTypes Link, in GlobalIFunc()
541 GlobalIFunc *GlobalIFunc::create(Type *Ty, unsigned AddressSpace, in create()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp49 static void executeFNegInst(GenericValue &Dest, GenericValue Src, Type *Ty) { in executeFNegInst()
64 Type *Ty = I.getOperand(0)->getType(); in visitUnaryOperator() local
109 GenericValue Src2, Type *Ty) { in executeFAddInst()
120 GenericValue Src2, Type *Ty) { in executeFSubInst()
131 GenericValue Src2, Type *Ty) { in executeFMulInst()
142 GenericValue Src2, Type *Ty) { in executeFDivInst()
153 GenericValue Src2, Type *Ty) { in executeFRemInst()
192 Type *Ty) { in executeICMP_EQ()
206 Type *Ty) { in executeICMP_NE()
220 Type *Ty) { in executeICMP_ULT()
[all …]
/external/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp56 GenericValue Src2, Type *Ty) { in executeFAddInst()
67 GenericValue Src2, Type *Ty) { in executeFSubInst()
78 GenericValue Src2, Type *Ty) { in executeFMulInst()
89 GenericValue Src2, Type *Ty) { in executeFDivInst()
100 GenericValue Src2, Type *Ty) { in executeFRemInst()
139 Type *Ty) { in executeICMP_EQ()
153 Type *Ty) { in executeICMP_NE()
167 Type *Ty) { in executeICMP_ULT()
181 Type *Ty) { in executeICMP_SLT()
195 Type *Ty) { in executeICMP_UGT()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLowLevelType.cpp20 LLT llvm::getLLTForType(Type &Ty, const DataLayout &DL) { in getLLTForType()
45 MVT llvm::getMVTForLLT(LLT Ty) { in getMVTForLLT()
54 LLT llvm::getLLTForMVT(MVT Ty) { in getLLTForMVT()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVTargetTransformInfo.cpp18 int RISCVTTIImpl::getIntImmCost(const APInt &Imm, Type *Ty) { in getIntImmCost()
33 Type *Ty) { in getIntImmCostInst()
89 const APInt &Imm, Type *Ty) { in getIntImmCostIntrin()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/
DTarget.cpp101 unsigned long long LLVMSizeOfTypeInBits(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMSizeOfTypeInBits()
105 unsigned long long LLVMStoreSizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMStoreSizeOfType()
109 unsigned long long LLVMABISizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMABISizeOfType()
113 unsigned LLVMABIAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMABIAlignmentOfType()
117 unsigned LLVMCallFrameAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMCallFrameAlignmentOfType()
121 unsigned LLVMPreferredAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMPreferredAlignmentOfType()
/external/llvm/lib/Target/
DTarget.cpp102 unsigned long long LLVMSizeOfTypeInBits(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMSizeOfTypeInBits()
106 unsigned long long LLVMStoreSizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMStoreSizeOfType()
110 unsigned long long LLVMABISizeOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMABISizeOfType()
114 unsigned LLVMABIAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMABIAlignmentOfType()
118 unsigned LLVMCallFrameAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMCallFrameAlignmentOfType()
122 unsigned LLVMPreferredAlignmentOfType(LLVMTargetDataRef TD, LLVMTypeRef Ty) { in LLVMPreferredAlignmentOfType()
/external/clang/lib/Analysis/
DBodyFarm.cpp29 static bool isDispatchBlock(QualType Ty) { in isDispatchBlock()
87 QualType Ty) { in makeAssignment()
122 UnaryOperator *ASTMaker::makeDereference(const Expr *Arg, QualType Ty) { in makeDereference()
127 ImplicitCastExpr *ASTMaker::makeLvalueToRvalue(const Expr *Arg, QualType Ty) { in makeLvalueToRvalue()
132 Expr *ASTMaker::makeIntegralCast(const Expr *Arg, QualType Ty) { in makeIntegralCast()
146 QualType Ty = C.getBOOLDecl() ? C.getBOOLType() : C.ObjCBuiltinBoolTy; in makeObjCBool() local
188 QualType Ty = Block->getType(); in create_dispatch_once() local
255 QualType Ty = PV->getType(); in create_dispatch_sync() local
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DDataLayout.h384 bool isNonIntegralPointerType(Type *Ty) const { in isNonIntegralPointerType()
417 unsigned getPointerTypeSize(Type *Ty) const { in getPointerTypeSize()
454 TypeSize getTypeStoreSize(Type *Ty) const { in getTypeStoreSize()
466 TypeSize getTypeStoreSizeInBits(Type *Ty) const { in getTypeStoreSizeInBits()
474 bool typeSizeEqualsStoreSize(Type *Ty) const { in typeSizeEqualsStoreSize()
486 TypeSize getTypeAllocSize(Type *Ty) const { in getTypeAllocSize()
499 TypeSize getTypeAllocSizeInBits(Type *Ty) const { in getTypeAllocSizeInBits()
509 Type *Ty) const { in getValueOrABITypeAlignment()
624 inline TypeSize DataLayout::getTypeSizeInBits(Type *Ty) const { in getTypeSizeInBits()
/external/llvm/lib/Target/SystemZ/
DSystemZTargetTransformInfo.cpp34 int SystemZTTIImpl::getIntImmCost(const APInt &Imm, Type *Ty) { in getIntImmCost()
67 const APInt &Imm, Type *Ty) { in getIntImmCost()
185 const APInt &Imm, Type *Ty) { in getIntImmCost()

12345678910>>...28