Searched refs:TSpirvInstruction (Results 1 – 8 of 8) sorted by relevance
/third_party/glslang/glslang/MachineIndependent/ |
D | SpirvIntrinsics.cpp | 273 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()
|
D | ParseHelper.h | 494 …TSpirvInstruction* 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);
|
D | SymbolTable.h | 321 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
|
D | glslang_tab.cpp.h | 551 glslang::TSpirvInstruction* spirvInst;
|
D | glslang.y | 95 glslang::TSpirvInstruction* spirvInst;
|
/third_party/glslang/glslang/Include/ |
D | SpirvIntrinsics.h | 83 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;
|
D | intermediate.h | 1669 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;
|
D | Types.h | 1523 …void setSpirvType(const TSpirvInstruction& spirvInst, const TSpirvTypeParameters* typeParams = nul…
|