Home
last modified time | relevance | path

Searched refs:TSpirvInstruction (Results 1 – 8 of 8) sorted by relevance

/third_party/glslang/glslang/MachineIndependent/
DSpirvIntrinsics.cpp273 void TPublicType::setSpirvType(const TSpirvInstruction& spirvInst, const TSpirvTypeParameters* type… in setSpirvType()
318 TSpirvInstruction* TParseContext::makeSpirvInstruction(const TSourceLoc& loc, const TString& name, … in makeSpirvInstruction()
320 TSpirvInstruction* spirvInst = new TSpirvInstruction; in makeSpirvInstruction()
329 TSpirvInstruction* TParseContext::makeSpirvInstruction(const TSourceLoc& loc, const TString& name, … in makeSpirvInstruction()
331 TSpirvInstruction* spirvInstuction = new TSpirvInstruction; in makeSpirvInstruction()
340 TSpirvInstruction* TParseContext::mergeSpirvInstruction(const TSourceLoc& loc, TSpirvInstruction* s… in mergeSpirvInstruction()
DParseHelper.h494TSpirvInstruction* makeSpirvInstruction(const TSourceLoc& loc, const TString& name, const TString&…
495 TSpirvInstruction* makeSpirvInstruction(const TSourceLoc& loc, const TString& name, int value);
496 TSpirvInstruction* mergeSpirvInstruction(const TSourceLoc& loc, TSpirvInstruction* spirvInst1,
497 TSpirvInstruction* spirvInst2);
DSymbolTable.h321 virtual void setSpirvInstruction(const TSpirvInstruction& inst) in setSpirvInstruction()
326 virtual const TSpirvInstruction& getSpirvInstruction() const { return spirvInst; } in getSpirvInstruction()
353 TSpirvInstruction spirvInst; // SPIR-V instruction qualifiers
Dglslang_tab.cpp.h551 glslang::TSpirvInstruction* spirvInst;
Dglslang.y95 glslang::TSpirvInstruction* spirvInst;
/third_party/glslang/glslang/Include/
DSpirvIntrinsics.h83 struct TSpirvInstruction { struct
86 TSpirvInstruction() { set = ""; id = -1; } in TSpirvInstruction() argument
88 bool operator==(const TSpirvInstruction& rhs) const { return set == rhs.set && id == rhs.id; }
89 bool operator!=(const TSpirvInstruction& rhs) const { return !operator==(rhs); }
136 TSpirvInstruction spirvInst;
Dintermediate.h1669 void setSpirvInstruction(const TSpirvInstruction& inst) { spirvInst = inst; } in setSpirvInstruction()
1670 const TSpirvInstruction& getSpirvInstruction() const { return spirvInst; } in getSpirvInstruction()
1673 TSpirvInstruction spirvInst;
1705 void setSpirvInstruction(const TSpirvInstruction& inst) { spirvInst = inst; } in setSpirvInstruction()
1706 const TSpirvInstruction& getSpirvInstruction() const { return spirvInst; } in getSpirvInstruction()
1720 TSpirvInstruction spirvInst;
DTypes.h1523 …void setSpirvType(const TSpirvInstruction& spirvInst, const TSpirvTypeParameters* typeParams = nul…