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

  /external/deqp-deps/glslang/glslang/MachineIndependent/
RemoveTree.cpp 88 virtual void visitConstantUnion(TIntermConstantUnion* node)
LiveTraverser.h 103 TIntermConstantUnion* constant = node->getCondition()->getAsConstantUnion();
localintermediate.h 481 TIntermConstantUnion* addConstantUnion(const TConstUnionArray&, const TType&, const TSourceLoc&, bool literal = false) const;
482 TIntermConstantUnion* addConstantUnion(signed char, const TSourceLoc&, bool literal = false) const;
483 TIntermConstantUnion* addConstantUnion(unsigned char, const TSourceLoc&, bool literal = false) const;
484 TIntermConstantUnion* addConstantUnion(signed short, const TSourceLoc&, bool literal = false) const;
485 TIntermConstantUnion* addConstantUnion(unsigned short, const TSourceLoc&, bool literal = false) const;
486 TIntermConstantUnion* addConstantUnion(int, const TSourceLoc&, bool literal = false) const;
487 TIntermConstantUnion* addConstantUnion(unsigned int, const TSourceLoc&, bool literal = false) const;
488 TIntermConstantUnion* addConstantUnion(long long, const TSourceLoc&, bool literal = false) const;
489 TIntermConstantUnion* addConstantUnion(unsigned long long, const TSourceLoc&, bool literal = false) const;
490 TIntermConstantUnion* addConstantUnion(bool, const TSourceLoc&, bool literal = false) const
    [all...]
parseConst.cpp 51 virtual void visitConstantUnion(TIntermConstantUnion* node);
113 void TConstTraverser::visitConstantUnion(TIntermConstantUnion* node)
IntermTraverse.cpp 69 void TIntermConstantUnion::traverse(TIntermTraverser *it)
Constant.cpp 101 TIntermTyped* TIntermConstantUnion::fold(TOperator op, const TIntermTyped* rightConstantNode) const
112 const TIntermConstantUnion *rightNode = rightConstantNode->getAsConstantUnion();
387 TIntermConstantUnion *newNode = new TIntermConstantUnion(newConstArray, returnType);
398 TIntermTyped* TIntermConstantUnion::fold(TOperator op, const TType& returnType) const
    [all...]
Intermediate.cpp 149 TIntermConstantUnion *leftTempConstant = node->getLeft()->getAsConstantUnion();
150 TIntermConstantUnion *rightTempConstant = node->getRight()->getAsConstantUnion();
    [all...]
intermOut.cpp 108 virtual void visitConstantUnion(TIntermConstantUnion* node);
    [all...]
ParseHelper.cpp     [all...]
  /external/swiftshader/src/OpenGL/compiler/
ValidateSwitch.h 32 void visitConstantUnion(TIntermConstantUnion *) override;
localintermediate.h 47 TIntermConstantUnion* addConstantUnion(ConstantUnion*, const TType&, const TSourceLoc&);
48 TIntermTyped* promoteConstantUnion(TBasicType, TIntermConstantUnion*);
ValidateSwitch.cpp 49 void ValidateSwitch::visitConstantUnion(TIntermConstantUnion *)
115 TIntermConstantUnion *condition = node->getCondition()->getAsConstantUnion();
intermediate.h 248 class TIntermConstantUnion;
278 virtual TIntermConstantUnion* getAsConstantUnion() { return 0; }
430 class TIntermConstantUnion : public TIntermTyped {
432 TIntermConstantUnion(ConstantUnion *unionPointer, const TType& t) : TIntermTyped(t), unionArrayPointer(unionPointer)
447 virtual TIntermConstantUnion* getAsConstantUnion() { return this; }
706 virtual void visitConstantUnion(TIntermConstantUnion*) {}
Intermediate.cpp 413 TIntermConstantUnion *leftTempConstant = left->getAsConstantUnion();
414 TIntermConstantUnion *rightTempConstant = right->getAsConstantUnion();
505 TIntermConstantUnion *childTempConstant = 0;
711 TIntermConstantUnion* TIntermediate::addConstantUnion(ConstantUnion* unionArrayPointer, const TType& t, const TSourceLoc &line)
713 TIntermConstantUnion* node = new TIntermConstantUnion(unionArrayPointer, t);
725 TIntermConstantUnion* constIntNode;
798 TIntermConstantUnion *node = new TIntermConstantUnion(u, type);
    [all...]
parseConst.cpp 40 void visitConstantUnion(TIntermConstantUnion*);
157 void TConstTraverser::visitConstantUnion(TIntermConstantUnion* node)
intermOut.cpp 38 void visitConstantUnion(TIntermConstantUnion*);
370 void TOutputTraverser::visitConstantUnion(TIntermConstantUnion* node)
IntermTraverse.cpp 39 void TIntermConstantUnion::traverse(TIntermTraverser* it)
ParseHelper.cpp 808 TIntermConstantUnion* constant = expr->getAsConstantUnion();
    [all...]
OutputASM.cpp 236 class Constant : public TIntermConstantUnion
239 Constant(float x, float y, float z, float w) : TIntermConstantUnion(constants, TType(EbtFloat, EbpHigh, EvqConstExpr, 4, 1, false))
247 Constant(bool b) : TIntermConstantUnion(constants, TType(EbtBool, EbpHigh, EvqConstExpr, 1, 1, false))
252 Constant(int i) : TIntermConstantUnion(constants, TType(EbtInt, EbpHigh, EvqConstExpr, 1, 1, false))
809 TIntermConstantUnion *element = (*sit)->getAsConstantUnion();
    [all...]
  /external/deqp-deps/glslang/glslang/Include/
intermediate.h 999 class TIntermConstantUnion;
1025 virtual glslang::TIntermConstantUnion* getAsConstantUnion() { return 0; }
1038 virtual const glslang::TIntermConstantUnion* getAsConstantUnion() const { return 0; }
    [all...]
  /external/deqp-deps/glslang/hlsl/
hlslParseHelper.h 297 TIntermConstantUnion* getSamplePosArray(int count);
hlslParseHelper.cpp 336 const TIntermConstantUnion* asConst = swizzle->getRight()->getAsConstantUnion();
    [all...]
  /external/deqp-deps/glslang/SPIRV/
GlslangToSpv.cpp 114 void visitConstantUnion(glslang::TIntermConstantUnion*);
    [all...]

Completed in 247 milliseconds