/external/deqp/framework/opengl/ |
D | gluVarTypeUtil.hpp | 188 struct IsBasicType { bool operator() (const VarType& type) const { return type.isBasicType(); } }; in operator ()() 189 struct IsScalarType { bool operator() (const VarType& type) const { return type.isBasicType() && … in operator ()() 190 struct IsVectorOrScalarType { bool operator() (const VarType& type) const { return type.isBasicType… in operator ()() 292 if (curType.isBasicType()) in findNext() 346 if (!curType->isBasicType()) in isValidTypePath()
|
D | gluVarType.hpp | 58 bool isBasicType (void) const { return m_type == TYPE_BASIC; } in isBasicType() function in glu::VarType 62 DataType getBasicType (void) const { DE_ASSERT(isBasicType()); return m_data.basic.type; } in getBasicType() 63 Precision getPrecision (void) const { DE_ASSERT(isBasicType()); return m_data.basic.precision; } in getPrecision()
|
D | gluVarTypeUtil.cpp | 140 else if (curType.isBasicType() && isDataTypeMatrix(curType.getBasicType())) in parseTypePath() 145 else if (curType.isBasicType() && isDataTypeVector(curType.getBasicType())) in parseTypePath()
|
D | gluVarType.cpp | 371 if (curType->isBasicType()) in operator <<()
|
D | gluShaderLibrary.cpp | 75 if (!value.type.isBasicType()) in isValid()
|
/external/deqp/modules/gles31/functional/ |
D | es31fProgramInterfaceDefinition.cpp | 61 if (varType.isBasicType() && predicate(varType.getBasicType())) in containsMatchingSubtype() 118 if (!varType.isBasicType()) in isIllegalVertexInput() 129 if (varType.isBasicType()) in isIllegalVertexOutput() 175 if (varType.isBasicType()) in isIllegalFragmentOutput() 200 if (varType.isBasicType()) in isTypeIntegerOrContainsIntegers()
|
D | es31fProgramInterfaceDefinitionUtil.cpp | 177 if (type.isBasicType()) in generateVariableTypeResourceNames() 189 if (type.getElementType().isBasicType() && in generateVariableTypeResourceNames() 195 else if (type.getElementType().isBasicType() || in generateVariableTypeResourceNames() 290 if (type.isBasicType()) in collectNamedStructureDefinitions() 397 if (varType.isBasicType()) in writeVariableReadAccumulateExpression() 566 if (varType.isBasicType()) in writeVariableWriteExpression() 820 if (complexType.isBasicType()) in containsSubType() 881 if (complexType.isBasicType()) in accumulateComplexType() 1089 if (type.isBasicType()) in getBufferVariableSize()
|
D | es31fSSBOLayoutCase.cpp | 375 if (type.isBasicType()) in computeStd140BaseAlignment() 416 if (type.isBasicType()) in computeStd430BaseAlignment() 480 if (type.isBasicType()) in computeReferenceLayout() 521 if (elemType.isBasicType() && !glu::isDataTypeMatrix(elemType.getBasicType())) in computeReferenceLayout() 542 else if (elemType.isBasicType() && glu::isDataTypeMatrix(elemType.getBasicType())) in computeReferenceLayout() 606 if (elemType.isBasicType() && !glu::isDataTypeMatrix(elemType.getBasicType())) in computeReferenceLayout() 628 else if (elemType.isBasicType() && glu::isDataTypeMatrix(elemType.getBasicType())) in computeReferenceLayout() 883 DE_ASSERT(type.isBasicType()); in collectUniqueBasicTypes() 1147 DE_ASSERT(curType.isBasicType()); in generateCompareSrc() 1231 DE_ASSERT(curType.isBasicType()); in generateWriteSrc() [all …]
|
D | es31fProgramUniformTests.cpp | 220 if (type.isBasicType()) in typeContainsMatchingBasicType() 237 if (type.isBasicType()) in getDistinctSamplerTypes() 256 if (type.isBasicType()) in getNumSamplersInType() 992 if (varType.isBasicType()) in generateBasicUniforms() 1017 if (varType.getElementType().isBasicType()) in generateBasicUniforms() 1030 if (varType.getElementType().isBasicType()) in generateBasicUniforms()
|
D | es31fProgramInterfaceQueryTestCase.cpp | 112 if (type.isBasicType()) in getVarTypeSize() 252 if (!variable || !variable->isBasicType()) in validate() 797 if (type.isBasicType()) in getVariableLocationLength() 825 if (path[startNdx].getVariableType()->isBasicType()) in getIOSubVariableLocation() 1345 else if (path[1].getDeclaration()->varType.getElementType().isBasicType()) in validateSingleVariable() 1399 else if (path[1].getDeclaration()->varType.getElementType().isBasicType()) in validateSingleVariable() 1626 DE_ASSERT(elementType.isBasicType()); in validateSingleVariable()
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
D | DebugInfo.cpp | 135 bool DIDescriptor::isBasicType() const { in isBasicType() function in DIDescriptor 199 return isBasicType() || isCompositeType() || isDerivedType(); in isType() 298 if (!isBasicType() && !isDerivedType() && !isCompositeType()) { in DIType() 383 if (!isBasicType() && Tag != dwarf::DW_TAG_const_type && in Verify() 396 return isBasicType(); in Verify() 680 if (isBasicType()) in print()
|
/external/deqp/external/vulkancts/modules/vulkan/ubo/ |
D | vktUniformBlockCase.cpp | 414 if (type.isBasicType()) in computeStd140BaseAlignment() 455 if (type.isBasicType()) in computeStd430BaseAlignment() 489 if (type.isBasicType()) in computeRelaxedBlockBaseAlignment() 523 if (type.isBasicType()) in computeScalarBlockAlignment() 575 if (type.isBasicType()) in computeReferenceLayout() 624 if (elemType.isBasicType() && !glu::isDataTypeMatrix(elemType.getBasicType())) in computeReferenceLayout() 645 else if (elemType.isBasicType() && glu::isDataTypeMatrix(elemType.getBasicType())) in computeReferenceLayout() 908 DE_ASSERT(type.isBasicType()); in collectUniqueBasicTypes() 1040 if (type.isBasicType()) in generateDeclaration() 1054 if (curType->isBasicType()) in generateDeclaration() [all …]
|
D | vktUniformBlockCase.hpp | 88 bool isBasicType (void) const { return m_type == TYPE_BASIC; } in isBasicType() function in vkt::ubo::VarType
|
/external/deqp/external/vulkancts/modules/vulkan/ssbo/ |
D | vktSSBOLayoutCase.cpp | 329 if (type.isBasicType()) in computeStd140BaseAlignment() 370 if (type.isBasicType()) in computeStd430BaseAlignment() 404 if (type.isBasicType()) in computeRelaxedBlockBaseAlignment() 438 if (type.isBasicType()) in computeScalarBlockAlignment() 488 if (type.isBasicType()) in computeReferenceLayout() 537 if (elemType.isBasicType() && !glu::isDataTypeMatrix(elemType.getBasicType())) in computeReferenceLayout() 558 else if (elemType.isBasicType() && glu::isDataTypeMatrix(elemType.getBasicType())) in computeReferenceLayout() 628 if (elemType.isBasicType() && !glu::isDataTypeMatrix(elemType.getBasicType())) in computeReferenceLayout() 653 else if (elemType.isBasicType() && glu::isDataTypeMatrix(elemType.getBasicType())) in computeReferenceLayout() 949 DE_ASSERT(type.isBasicType()); in collectUniqueBasicTypes() [all …]
|
/external/deqp/modules/glshared/ |
D | glsUniformBlockCase.cpp | 418 if (type.isBasicType()) in computeStd140BaseAlignment() 472 if (type.isBasicType()) in computeStd140Layout() 514 if (elemType.isBasicType() && !glu::isDataTypeMatrix(elemType.getBasicType())) in computeStd140Layout() 533 else if (elemType.isBasicType() && glu::isDataTypeMatrix(elemType.getBasicType())) in computeStd140Layout() 761 DE_ASSERT(type.isBasicType()); in collectUniqueBasicTypes() 860 if (type.isBasicType()) in generateDeclaration() 872 if (curType->isBasicType()) in generateDeclaration() 1002 if (type.isBasicType() || (type.isArrayType() && type.getElementType().isBasicType())) in generateCompareSrc()
|
D | glsUniformBlockCase.hpp | 81 bool isBasicType (void) const { return m_type == TYPE_BASIC; } in isBasicType() function in deqp::gls::ub::VarType
|
D | glsShaderExecUtil.cpp | 115 DE_ASSERT(output->varType.isBasicType()); in generateVertexShader() 194 DE_ASSERT(output->varType.isBasicType()); in generateGeometryShader() 309 TCU_CHECK_INTERNAL(output.varType.isBasicType()); in generateFragShaderOutputDecl() 970 if (varType.isBasicType()) in copyToBuffer() 997 if (varType.isBasicType()) in copyFromBuffer()
|
/external/deqp/external/openglcts/modules/common/ |
D | glcUniformBlockCase.cpp | 389 if (type.isBasicType()) in computeStd140BaseAlignment() 445 if (type.isBasicType()) in computeStd140Layout() 487 if (elemType.isBasicType() && !glu::isDataTypeMatrix(elemType.getBasicType())) in computeStd140Layout() 506 else if (elemType.isBasicType() && glu::isDataTypeMatrix(elemType.getBasicType())) in computeStd140Layout() 777 if (type.isBasicType()) in generateDeclaration() 789 if (curType->isBasicType()) in generateDeclaration() 931 if (type.isBasicType() || (type.isArrayType() && type.getElementType().isBasicType())) in generateCompareSrc()
|
D | glcUniformBlockCase.hpp | 76 bool isBasicType(void) const in isBasicType() function in deqp::ub::VarType
|
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/ |
D | DebugInfo.h | 114 bool isBasicType() const; 291 return DbgNode && (isBasicType() || isDerivedType() || isCompositeType()); in isValid()
|
/external/deqp/modules/gles2/functional/ |
D | es2fUniformApiTests.cpp | 156 if (type.isBasicType()) in typeContainsMatchingBasicType() 173 if (type.isBasicType()) in getDistinctSamplerTypes() 192 if (type.isBasicType()) in getNumSamplersInType() 1003 if (varType.isBasicType()) in generateBasicUniforms() 1029 if (varType.getElementType().isBasicType()) in generateBasicUniforms() 1043 if (varType.getElementType().isBasicType()) in generateBasicUniforms()
|
/external/deqp/modules/gles3/functional/ |
D | es3fUniformApiTests.cpp | 216 if (type.isBasicType()) in typeContainsMatchingBasicType() 233 if (type.isBasicType()) in getDistinctSamplerTypes() 252 if (type.isBasicType()) in getNumSamplersInType() 1174 if (varType.isBasicType()) in generateBasicUniforms() 1200 if (varType.getElementType().isBasicType()) in generateBasicUniforms() 1214 if (varType.getElementType().isBasicType()) in generateBasicUniforms()
|
/external/deqp/external/vulkancts/modules/vulkan/tessellation/ |
D | vktTessellationUserDefinedIO.cpp | 122 if (rootType.isBasicType()) in glslTraverseBasicTypes() 224 if (type.isBasicType()) in numBasicSubobjects()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderExecutor.cpp | 222 DE_ASSERT(output->varType.isBasicType()); in generateVertexShader() 321 TCU_CHECK_INTERNAL(output.varType.isBasicType()); in generateFragShaderOutputDecl() 453 DE_ASSERT(output->varType.isBasicType()); in generateGeometryShader() 1739 if (varType.isBasicType()) in copyToBuffer() 1767 if (varType.isBasicType()) in copyFromBuffer()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/ |
D | DwarfCompileUnit.cpp | 449 if (Ty.isBasicType()) in isTypeSigned() 593 if (Ty.isBasicType()) in getOrCreateTypeDIE()
|