HomeSort by relevance Sort by last modified time
    Searched refs:TIntermOperator (Results 1 - 13 of 13) sorted by null

  /external/swiftshader/src/OpenGL/compiler/
intermediate.h 459 class TIntermOperator : public TIntermTyped {
468 TIntermOperator(TOperator o) : TIntermTyped(TType(EbtFloat, EbpUndefined)), op(o) {}
469 TIntermOperator(TOperator o, TType& t) : TIntermTyped(t), op(o) {}
476 class TIntermBinary : public TIntermOperator {
478 TIntermBinary(TOperator o) : TIntermOperator(o) {}
507 class TIntermUnary : public TIntermOperator {
509 TIntermUnary(TOperator o, TType& t) : TIntermOperator(o, t), operand(0) {}
510 TIntermUnary(TOperator o) : TIntermOperator(o), operand(0) {}
539 class TIntermAggregate : public TIntermOperator {
541 TIntermAggregate() : TIntermOperator(EOpNull), userDefined(false) { endLine = { 0, 0, 0, 0 };
    [all...]
ValidateLimitations.h 54 bool validateOperation(TIntermOperator* node, TIntermNode* operand);
ValidateLimitations.cpp 450 bool ValidateLimitations::validateOperation(TIntermOperator* node,
Intermediate.cpp 807 bool TIntermOperator::modifiesState() const
838 bool TIntermOperator::isConstructor() const
    [all...]
  /external/deqp-deps/glslang/glslang/Include/
intermediate.h 995 class TIntermOperator;
1024 virtual glslang::TIntermOperator* getAsOperator() { return 0; }
1037 virtual const glslang::TIntermOperator* getAsOperator() const { return 0; }
    [all...]
  /external/deqp-deps/glslang/glslang/MachineIndependent/
propagateNoContraction.cpp 69 typedef std::unordered_multimap<ObjectAccessChain, glslang::TIntermOperator*> NodeMapping;
485 getPrecisenessAndRemainedAccessChain(glslang::TIntermOperator* node,
    [all...]
ParseHelper.h 320 void builtInOpCheck(const TSourceLoc&, const TFunction&, TIntermOperator&);
327 void memorySemanticsCheck(const TSourceLoc&, const TFunction&, const TIntermOperator& callNode);
localintermediate.h 649 bool promote(TIntermOperator*);
734 bool isSpecializationOperation(const TIntermOperator&) const;
    [all...]
Intermediate.cpp     [all...]
ParseHelper.cpp     [all...]
  /external/deqp-deps/glslang/hlsl/
hlslParseHelper.h 104 TIntermTyped* addOutputArgumentConversions(const TFunction&, TIntermOperator&);
105 void builtInOpCheck(const TSourceLoc&, const TFunction&, TIntermOperator&);
hlslParseHelper.cpp     [all...]
  /external/deqp-deps/glslang/SPIRV/
GlslangToSpv.cpp 176 spv::Id createImageTextureFunctionCall(glslang::TIntermOperator* node);
    [all...]

Completed in 90 milliseconds