Searched refs:vecType (Results 1 - 12 of 12) sorted by relevance

/external/deqp/modules/glshared/
H A DglsRandomShaderCase.cpp349 const char* vecType = DE_NULL; local
353 case rsg::VariableType::TYPE_FLOAT: scalarType = "float"; vecType = "vec"; break;
354 case rsg::VariableType::TYPE_INT: scalarType = "int"; vecType = "ivec"; break;
355 case rsg::VariableType::TYPE_BOOL: scalarType = "bool"; vecType = "bvec"; break;
366 message << vecType << numElements << "(";
H A DglsShaderExecUtil.cpp966 const glu::DataType vecType = glu::getDataTypeFloatVec(glu::getDataTypeMatrixNumRows(basicType)); local
967 const deUint32 vecAlignment = getVecStd430ByteAlignment(vecType);
/external/clang/lib/AST/
H A DType.cpp171 VectorType::VectorType(QualType vecType, unsigned nElements, QualType canonType, argument
173 : Type(Vector, canonType, vecType->isDependentType(),
174 vecType->isInstantiationDependentType(),
175 vecType->isVariablyModifiedType(),
176 vecType->containsUnexpandedParameterPack()),
177 ElementType(vecType)
183 VectorType::VectorType(TypeClass tc, QualType vecType, unsigned nElements, argument
185 : Type(tc, canonType, vecType->isDependentType(),
186 vecType->isInstantiationDependentType(),
187 vecType
[all...]
H A DASTContext.cpp2681 QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts, argument
2683 assert(vecType->isBuiltinType());
2687 VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind);
2696 if (!vecType.isCanonical()) {
2697 Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind);
2704 VectorType(vecType, NumElts, Canonical, VecKind);
2713 ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) const { argument
2714 assert(vecType->isBuiltinType() || vecType->isDependentType());
2718 VectorType::Profile(ID, vecType, NumElt
2742 getDependentSizedExtVectorType(QualType vecType, Expr *SizeExpr, SourceLocation AttrLoc) const argument
[all...]
/external/clang/lib/Sema/
H A DSemaExprMember.cpp297 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); local
322 (Idx = vecType->getPointAccessorIdx(*compStr)) != -1) {
330 } while (*compStr && (Idx = vecType->getPointAccessorIdx(*compStr)) != -1);
333 while ((Idx = vecType->getNumericAccessorIdx(*compStr)) != -1) {
357 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
370 unsigned CompSize = HalvingSwizzle ? (vecType->getNumElements() + 1) / 2
376 return vecType->getElementType();
380 QualType VT = S.Context.getExtVectorType(vecType->getElementType(), CompSize);
H A DSemaExpr.cpp5115 if (const VectorType *vecType = type->getAs<VectorType>()) {
5116 len = vecType->getNumElements();
5117 eltType = vecType->getElementType();
/external/deqp/modules/gles2/functional/
H A Des2fShaderMatrixTests.cpp1181 DataType vecType = getDataTypeFloatVec(getDataTypeMatrixNumColumns(matType)); local
1182 ShaderInput vecIn (op == OP_DIV ? INPUTTYPE_UNIFORM : INPUTTYPE_DYNAMIC, vecType, precision);
1184 opGroup->addChild(new ShaderMatrixCase(m_context, (baseName + getDataTypeName(vecType) + "_vertex").c_str(), "Matrix-vector case", matIn, vecIn, op, true));
1185 opGroup->addChild(new ShaderMatrixCase(m_context, (baseName + getDataTypeName(vecType) + "_fragment").c_str(), "Matrix-vector case", matIn, vecIn, op, false));
1188 string vecMatName = string(inTypeList[inTypeNdx].name) + "_" + precName + "_" + getDataTypeName(vecType) + "_" + matTypeName;
H A Des2fShaderIndexingTests.cpp842 DataType vecType = getDataTypeFloatVec(matSize); local
963 params.insert(pair<string, string>("VEC_TYPE", getDataTypeName(vecType)));
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp419 unsigned vecType = NVPTX::PTXLdStInstCode::Scalar; local
423 vecType = NVPTX::PTXLdStInstCode::V2;
425 vecType = NVPTX::PTXLdStInstCode::V4;
479 getI32Imm(vecType), getI32Imm(fromType),
508 getI32Imm(vecType), getI32Imm(fromType),
562 getI32Imm(vecType), getI32Imm(fromType),
614 getI32Imm(vecType), getI32Imm(fromType),
1794 unsigned vecType = NVPTX::PTXLdStInstCode::Scalar; local
1798 vecType = NVPTX::PTXLdStInstCode::V2;
1800 vecType
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fShaderIndexingTests.cpp811 DataType vecType = getDataTypeFloatVec(numRows); local
936 params.insert(pair<string, string>("VEC_TYPE", getDataTypeName(vecType)));
/external/clang/include/clang/AST/
H A DType.h2541 VectorType(QualType vecType, unsigned nElements, QualType canonType,
2544 VectorType(TypeClass tc, QualType vecType, unsigned nElements,
2588 ExtVectorType(QualType vecType, unsigned nElements, QualType canonType) : argument
2589 VectorType(ExtVector, vecType, nElements, canonType, GenericVector) {}
/external/deqp/modules/gles31/functional/
H A Des31fSSBOLayoutCase.cpp637 const glu::DataType vecType = glu::getDataTypeFloatVec(vecSize); local
638 const int vecBaseAlign = getDataTypeByteAlignment(vecType);

Completed in 738 milliseconds