HomeSort by relevance Sort by last modified time
    Searched defs:varType (Results 1 - 20 of 20) sorted by null

  /external/deqp/modules/glshared/
glsShaderExecUtil.hpp 51 glu::VarType varType; //!< Symbol type.
54 Symbol (const std::string& name_, const glu::VarType& varType_) : name(name_), varType(varType_) {}
glsRandomShaderProgram.cpp 34 static rr::GenericVecType mapToGenericVecType (const rsg::VariableType& varType)
36 if (varType.isFloatOrVec())
38 else if (varType.isIntOrVec())
47 static glu::DataType mapToBasicType (const rsg::VariableType& varType)
49 if (varType.isFloatOrVec() || varType.isIntOrVec() || varType.isBoolOrVec())
51 const glu::DataType scalarType = varType.isFloatOrVec() ? glu::TYPE_FLOAT :
52 varType.isIntOrVec() ? glu::TYPE_INT :
53 varType.isBoolOrVec() ? glu::TYPE_BOOL : glu::TYPE_LAST
    [all...]
glsFragOpInteractionCase.cpp 495 const rsg::VariableType& varType = shaderIn->getVariable()->getType();
497 const int numComponents = varType.getNumElements();
500 DE_ASSERT(varType.getBaseType() == rsg::VariableType::TYPE_FLOAT);
glsShaderExecUtil.cpp 91 src << in << " " << glu::declare(input->varType, input->name) << ";\n";
95 DE_ASSERT(output->varType.isBasicType());
97 if (glu::isDataTypeBoolOrBVec(output->varType.getBasicType()))
99 const int vecSize = glu::getDataTypeScalarSize(output->varType.getBasicType());
101 const glu::VarType intType (intBaseType, glu::PRECISION_HIGHP);
106 src << "flat " << out << " " << glu::declare(output->varType, output->name) << ";\n";
118 if (glu::isDataTypeBoolOrBVec(output->varType.getBasicType()))
119 src << "\t" << glu::declare(output->varType, output->name) << ";\n";
134 if (glu::isDataTypeBoolOrBVec(output->varType.getBasicType()))
136 const int vecSize = glu::getDataTypeScalarSize(output->varType.getBasicType())
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
Declarator.java 25 protected int varType;
32 varType = type;
40 varType = CLASS;
51 varType = type;
60 Declarator d = new Declarator(this.varType, this.arrayDim + dim);
70 public int getType() { return varType; }
  /external/deqp/framework/opengl/
gluVarType.hpp 47 class VarType
50 VarType (void);
51 VarType (const VarType& other);
53 VarType (DataType basicType, Precision precision); //!< Basic type constructor.
54 VarType (const VarType& elementType, int arraySize); //!< Array type constructor.
55 explicit VarType (const StructType* structPtr); //!< Struct type constructor.
56 ~VarType (void);
65 const VarType& getElementType (void) const { DE_ASSERT(isArrayType()); return *m_data.array.elementType;
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderIndexingTests.cpp 145 ShaderIndexingCase (Context& context, const char* name, const char* description, bool isVertexCase, DataType varType, ShaderEvalFunc evalFunc, deUint32 requirements, const char* vertShaderSource, const char* fragShaderSource);
161 ShaderIndexingCase::ShaderIndexingCase (Context& context, const char* name, const char* description, bool isVertexCase, DataType varType, ShaderEvalFunc evalFunc, deUint32 requirements, const char* vertShaderSource, const char* fragShaderSource)
165 m_varType = varType;
251 static ShaderIndexingCase* createVaryingArrayCase (Context& context, const char* caseName, const char* description, DataType varType, IndexAccessType vertAccess, IndexAccessType fragAccess)
341 params.insert(pair<string, string>("VAR_TYPE", getDataTypeName(varType)));
345 if (varType == TYPE_FLOAT)
347 else if (varType == TYPE_FLOAT_VEC2)
349 else if (varType == TYPE_FLOAT_VEC3)
359 ShaderEvalFunc evalFunc = getArrayCoordsEvalFunc(varType);
371 return new ShaderIndexingCase(context, caseName, description, true, varType, evalFunc, requirements, vertexShaderSource.c_str(), fragmentShaderSource.c_str())
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderIndexingTests.cpp 138 ShaderIndexingCase (Context& context, const char* name, const char* description, bool isVertexCase, DataType varType, ShaderEvalFunc evalFunc, const char* vertShaderSource, const char* fragShaderSource);
151 ShaderIndexingCase::ShaderIndexingCase (Context& context, const char* name, const char* description, bool isVertexCase, DataType varType, ShaderEvalFunc evalFunc, const char* vertShaderSource, const char* fragShaderSource)
154 m_varType = varType;
221 static ShaderIndexingCase* createVaryingArrayCase (Context& context, const char* caseName, const char* description, DataType varType, IndexAccessType vertAccess, IndexAccessType fragAccess)
314 params.insert(pair<string, string>("VAR_TYPE", getDataTypeName(varType)));
318 if (varType == TYPE_FLOAT)
320 else if (varType == TYPE_FLOAT_VEC2)
322 else if (varType == TYPE_FLOAT_VEC3)
332 ShaderEvalFunc evalFunc = getArrayCoordsEvalFunc(varType);
333 return new ShaderIndexingCase(context, caseName, description, true, varType, evalFunc, vertexShaderSource.c_str(), fragmentShaderSource.c_str())
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Filter.java 379 Class varType,
389 MutableFrameFormat format = ObjectFormat.fromClass(varType,
608 Class varType = generator.type();
610 addProgramPort(name, varName, field, varType, hasDefault);
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 579 QualType varType = varDecl->getType();
585 if (const ReferenceType *refType = varType->getAs<ReferenceType>()) {
586 varType = refType->getPointeeType();
590 VisitCXXDestructor(varType, Region, Dtor.getTriggerStmt(), /*IsBase=*/ false,
663 QualType varType = D.getBindTemporaryExpr()->getSubExpr()->getType();
667 VisitCXXDestructor(varType, nullptr, D.getBindTemporaryExpr(),
    [all...]
  /external/javassist/src/main/javassist/compiler/
TypeChecker.java 241 int varType = d.getType();
249 exprType = varType;
    [all...]
CodeGen.java 780 int varType = d.getType();
790 atArrayVariableAssign((ArrayInit)right, varType, varArray, varClass);
792 atAssignCore(expr, op, right, varType, varArray, varClass);
795 if (is2word(varType, varArray))
802 else if (varType == DOUBLE)
804 else if (varType == FLOAT)
806 else if (varType == LONG)
808 else if (isRefType(varType))
813 exprType = varType;
819 int varType, int varArray, String varClass) throws CompileError
    [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp     [all...]
  /external/deqp/modules/gles31/functional/
es31fSSBOLayoutCase.cpp 57 using glu::VarType;
103 BufferVar::BufferVar (const char* name, const VarType& type, deUint32 flags)
371 int computeStd140BaseAlignment (const VarType& type, deUint32 layoutFlags)
411 int computeStd430BaseAlignment (const VarType& type, deUint32 layoutFlags)
468 const VarType& type,
519 const VarType& elemType = type.getElementType();
591 const VarType& varType = bufVar.getType();
594 if (varType.isArrayType())
597 const int topLevelArraySize = varType.getArraySize() == VarType::UNSIZED_ARRAY ? 0 : varType.getArraySize()
    [all...]
  /external/robolectric/lib/main/
javassist-3.14.0-GA.jar 
  /external/chromium_org/third_party/closure_compiler/compiler/
compiler.jar 
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
xalan-2.6.0.jar 
  /external/chromium_org/third_party/android_platform/webview/
frameworks.jar 
  /external/chromium_org/third_party/checkstyle/
checkstyle-5.7-all.jar 
  /prebuilts/sdk/tools/
jack.jar 

Completed in 1379 milliseconds