Home
last modified time | relevance | path

Searched refs:TheType (Results 1 – 10 of 10) sorted by relevance

/external/spirv-llvm/lib/SPIRV/libSPIRV/
DSPIRVValue.h60 SPIRVType *TheType, SPIRVId TheId) in SPIRVValue() argument
61 :SPIRVEntry(M, TheWordCount, TheOpCode, TheId), Type(TheType) { in SPIRVValue()
66 SPIRVType *TheType) in SPIRVValue() argument
67 :SPIRVEntry(M, TheWordCount, TheOpCode), Type(TheType) { in SPIRVValue()
130 SPIRVConstant(SPIRVModule *M, SPIRVType *TheType, SPIRVId TheId, in SPIRVConstant() argument
132 :SPIRVValue(M, 0, OpConstant, TheType, TheId){ in SPIRVConstant()
138 SPIRVConstant(SPIRVModule *M, SPIRVType *TheType, SPIRVId TheId, float TheValue) in SPIRVConstant() argument
139 :SPIRVValue(M, 0, OpConstant, TheType, TheId){ in SPIRVConstant()
145 SPIRVConstant(SPIRVModule *M, SPIRVType *TheType, SPIRVId TheId, double TheValue) in SPIRVConstant() argument
146 :SPIRVValue(M, 0, OpConstant, TheType, TheId){ in SPIRVConstant()
[all …]
DSPIRVInstruction.cpp50 SPIRVType *TheType, SPIRVId TheId, SPIRVBasicBlock *TheBB) in SPIRVInstruction() argument
51 :SPIRVValue(TheBB->getModule(), TheWordCount, TheOC, TheType, TheId), in SPIRVInstruction()
57 SPIRVType *TheType, SPIRVId TheId, SPIRVBasicBlock *TheBB, SPIRVModule *TheBM) in SPIRVInstruction() argument
58 : SPIRVValue(TheBM, TheWordCount, TheOC, TheType, TheId), BB(TheBB){ in SPIRVInstruction()
76 SPIRVType *TheType, SPIRVBasicBlock *TheBB) in SPIRVInstruction() argument
77 :SPIRVValue(TheBB->getModule(), TheWordCount, TheOC, TheType), BB(TheBB){ in SPIRVInstruction()
DSPIRVInstruction.h106 SPIRVInstruction(unsigned TheWordCount, Op TheOC, SPIRVType *TheType,
110 SPIRVType *TheType, SPIRVId TheId, SPIRVBasicBlock *TheBB,
119 SPIRVInstruction(unsigned TheWordCount, Op TheOC, SPIRVType *TheType,
189 static SPIRVInstTemplateBase *create(Op TheOC, SPIRVType *TheType, in create() argument
193 Inst->init(TheType, TheId, TheBB, TheModule); in create()
197 static SPIRVInstTemplateBase *create(Op TheOC, SPIRVType *TheType, in create() argument
201 Inst->init(TheType, TheId, TheBB, TheModule); in create()
211 SPIRVInstTemplateBase *init(SPIRVType *TheType, in init() argument
221 setType(hasType() ? TheType : nullptr); in init()
443 SPIRVVariable(SPIRVType *TheType, SPIRVId TheId, in SPIRVVariable() argument
[all …]
DSPIRVModule.cpp224 virtual SPIRVValue *addUndef(SPIRVType *TheType);
225 virtual SPIRVValue *addSamplerConstant(SPIRVType *TheType, SPIRVWord AddrMode,
227 virtual SPIRVValue* addPipeStorageConstant(SPIRVType* TheType,
257 virtual SPIRVInstruction *addCopyObjectInst(SPIRVType *TheType,
437 SPIRVModuleImpl::addSamplerConstant(SPIRVType* TheType, in addSamplerConstant() argument
439 return addConstant(new SPIRVConstantSampler(this, TheType, getId(), AddrMode, in addSamplerConstant()
444 SPIRVModuleImpl::addPipeStorageConstant(SPIRVType* TheType, in addPipeStorageConstant() argument
446 return addConstant(new SPIRVConstantPipeStorage(this, TheType, getId(), in addPipeStorageConstant()
923 SPIRVModuleImpl::addUndef(SPIRVType *TheType) { in addUndef() argument
924 return addConstant(new SPIRVUndef(this, TheType, getId())); in addUndef()
[all …]
DSPIRVFunction.cpp49 SPIRVFunctionParameter::SPIRVFunctionParameter(SPIRVType *TheType, SPIRVId TheId, in SPIRVFunctionParameter() argument
52 TheType, TheId), in SPIRVFunctionParameter()
DSPIRVModule.h225 virtual SPIRVValue *addUndef(SPIRVType *TheType) = 0;
226 virtual SPIRVValue *addSamplerConstant(SPIRVType *TheType, SPIRVWord AddrMode,
228 virtual SPIRVValue* addPipeStorageConstant(SPIRVType* TheType,
DSPIRVFunction.h52 SPIRVFunctionParameter(SPIRVType *TheType, SPIRVId TheId,
/external/clang/test/SemaTemplate/
Dms-lookup-template-base-classes.cpp583 void *P = new TheType; // expected-warning {{unqualified lookup}} expected-error {{no type}} in foo()
584 …size_t x = __builtin_offsetof(TheType, f2); // expected-warning {{unqualified lookup}} expected-er… in foo()
586 } catch (TheType) { // expected-warning {{unqualified lookup}} expected-error {{no type}} in foo()
589 _Atomic(TheType) a; // expected-warning {{unqualified lookup}} expected-error {{no type}} in foo()
595 void *p = new TheType; // expected-warning {{unqualified lookup}} expected-error {{no type}} in out_of_line()
599 struct TheType { struct
/external/swiftshader/third_party/LLVM/lib/VMCore/
DAsmWriter.cpp1913 Type *TheType = Operand->getType(); in printInstruction() local
1924 if (Operand && Operand->getType() != TheType) { in printInstruction()
1933 TypePrinter.print(TheType, Out); in printInstruction()
/external/llvm/lib/IR/
DAsmWriter.cpp3136 Type *TheType = Operand->getType(); in printInstruction() local
3147 if (Operand && Operand->getType() != TheType) { in printInstruction()
3156 TypePrinter.print(TheType, Out); in printInstruction()