HomeSort by relevance Sort by last modified time
    Searched refs:TIntermOperator (Results 1 - 14 of 14) 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 804 bool TIntermOperator::modifiesState() const
835 bool TIntermOperator::isConstructor() const
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/Include/
intermediate.h 544 class TIntermOperator;
572 virtual glslang::TIntermOperator* getAsOperator() { return 0; }
584 virtual const glslang::TIntermOperator* getAsOperator() const { return 0; }
767 class TIntermOperator : public TIntermTyped {
769 virtual TIntermOperator* getAsOperator() { return this; }
770 virtual const TIntermOperator* getAsOperator() const { return this; }
911 TIntermOperator(TOperator o) : TIntermTyped(EbtFloat), op(o) {}
912 TIntermOperator(TOperator o, TType& t) : TIntermTyped(t), op(o) {}
919 class TIntermBinary : public TIntermOperator {
921 TIntermBinary(TOperator o) : TIntermOperator(o) {
    [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
propagateNoContraction.cpp 69 typedef std::unordered_multimap<ObjectAccessChain, glslang::TIntermOperator*> NodeMapping;
484 getPrecisenessAndRemainedAccessChain(glslang::TIntermOperator* node,
    [all...]
ParseHelper.h 205 void builtInOpCheck(const TSourceLoc&, const TFunction&, TIntermOperator&);
localintermediate.h 348 bool isSpecializationOperation(const TIntermOperator&) const;
Intermediate.cpp     [all...]
ParseHelper.cpp     [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/hlsl/
hlslParseHelper.h 94 void builtInOpCheck(const TSourceLoc&, const TFunction&, TIntermOperator&);
hlslParseHelper.cpp     [all...]
  /prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/SPIRV/
GlslangToSpv.cpp 140 spv::Id createImageTextureFunctionCall(glslang::TIntermOperator* node);
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/glslang/SPIRV/
GlslangToSpv.cpp 140 spv::Id createImageTextureFunctionCall(glslang::TIntermOperator* node);
    [all...]

Completed in 166 milliseconds