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

/external/deqp/modules/glshared/
H A DglsRandomShaderCase.cpp411 const char* vecType = DE_NULL; local
415 case rsg::VariableType::TYPE_FLOAT: scalarType = "float"; vecType = "vec"; break;
416 case rsg::VariableType::TYPE_INT: scalarType = "int"; vecType = "ivec"; break;
417 case rsg::VariableType::TYPE_BOOL: scalarType = "bool"; vecType = "bvec"; break;
428 message << vecType << numElements << "(";
H A DglsShaderExecUtil.cpp982 const glu::DataType vecType = glu::getDataTypeFloatVec(glu::getDataTypeMatrixNumRows(basicType)); local
983 const deUint32 vecAlignment = getVecStd430ByteAlignment(vecType);
/external/clang/lib/Sema/
H A DSemaExprMember.cpp299 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); local
324 (Idx = vecType->getPointAccessorIdx(*compStr)) != -1) {
332 } while (*compStr && (Idx = vecType->getPointAccessorIdx(*compStr)) != -1);
335 while ((Idx = vecType->getNumericAccessorIdx(*compStr)) != -1) {
359 if (!vecType->isAccessorWithinNumElements(*compStr++)) {
372 unsigned CompSize = HalvingSwizzle ? (vecType->getNumElements() + 1) / 2
378 return vecType->getElementType();
382 QualType VT = S.Context.getExtVectorType(vecType->getElementType(), CompSize);
H A DSemaExpr.cpp5338 if (const VectorType *vecType = type->getAs<VectorType>()) {
5339 len = vecType->getNumElements();
5340 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/clang/lib/AST/
H A DType.cpp171 VectorType::VectorType(QualType vecType, unsigned nElements, QualType canonType, argument
173 : VectorType(Vector, vecType, nElements, canonType, vecKind) {}
175 VectorType::VectorType(TypeClass tc, QualType vecType, unsigned nElements, argument
177 : Type(tc, canonType, vecType->isDependentType(),
178 vecType->isInstantiationDependentType(),
179 vecType->isVariablyModifiedType(),
180 vecType->containsUnexpandedParameterPack()),
181 ElementType(vecType)
H A DASTContext.cpp2761 QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts, argument
2763 assert(vecType->isBuiltinType());
2767 VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind);
2776 if (!vecType.isCanonical()) {
2777 Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind);
2784 VectorType(vecType, NumElts, Canonical, VecKind);
2793 ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) const { argument
2794 assert(vecType->isBuiltinType() || vecType->isDependentType());
2798 VectorType::Profile(ID, vecType, NumElt
2822 getDependentSizedExtVectorType(QualType vecType, Expr *SizeExpr, SourceLocation AttrLoc) const argument
[all...]
/external/llvm/lib/Target/NVPTX/
H A DNVPTXISelDAGToDAG.cpp647 unsigned vecType = NVPTX::PTXLdStInstCode::Scalar; local
651 vecType = NVPTX::PTXLdStInstCode::V2;
653 vecType = NVPTX::PTXLdStInstCode::V4;
707 getI32Imm(vecType), getI32Imm(fromType),
735 getI32Imm(vecType), getI32Imm(fromType),
788 getI32Imm(vecType), getI32Imm(fromType),
840 getI32Imm(vecType), getI32Imm(fromType),
2017 unsigned vecType = NVPTX::PTXLdStInstCode::Scalar; local
2021 vecType = NVPTX::PTXLdStInstCode::V2;
2023 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.h2585 VectorType(QualType vecType, unsigned nElements, QualType canonType,
2588 VectorType(TypeClass tc, QualType vecType, unsigned nElements,
2632 ExtVectorType(QualType vecType, unsigned nElements, QualType canonType) : argument
2633 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 1959 milliseconds