Home
last modified time | relevance | path

Searched refs:vecType (Results 1 – 15 of 15) sorted by relevance

/external/deqp/modules/glshared/
DglsRandomShaderCase.cpp349 const char* vecType = DE_NULL; in operator <<() local
353 case rsg::VariableType::TYPE_FLOAT: scalarType = "float"; vecType = "vec"; break; in operator <<()
354 case rsg::VariableType::TYPE_INT: scalarType = "int"; vecType = "ivec"; break; in operator <<()
355 case rsg::VariableType::TYPE_BOOL: scalarType = "bool"; vecType = "bvec"; break; in operator <<()
366 message << vecType << numElements << "("; in operator <<()
DglsShaderExecUtil.cpp966 …const glu::DataType vecType = glu::getDataTypeFloatVec(glu::getDataTypeMatrixNumRows(basicType)… in computeVarLayout() local
967 const deUint32 vecAlignment = getVecStd430ByteAlignment(vecType); in computeVarLayout()
/external/clang/lib/AST/
DType.cpp171 VectorType::VectorType(QualType vecType, unsigned nElements, QualType canonType, in VectorType() argument
173 : Type(Vector, canonType, vecType->isDependentType(), in VectorType()
174 vecType->isInstantiationDependentType(), in VectorType()
175 vecType->isVariablyModifiedType(), in VectorType()
176 vecType->containsUnexpandedParameterPack()), in VectorType()
177 ElementType(vecType) in VectorType()
183 VectorType::VectorType(TypeClass tc, QualType vecType, unsigned nElements, in VectorType() argument
185 : Type(tc, canonType, vecType->isDependentType(), in VectorType()
186 vecType->isInstantiationDependentType(), in VectorType()
187 vecType->isVariablyModifiedType(), in VectorType()
[all …]
DASTContext.cpp2681 QualType ASTContext::getVectorType(QualType vecType, unsigned NumElts, in getVectorType() argument
2683 assert(vecType->isBuiltinType()); in getVectorType()
2687 VectorType::Profile(ID, vecType, NumElts, Type::Vector, VecKind); in getVectorType()
2696 if (!vecType.isCanonical()) { in getVectorType()
2697 Canonical = getVectorType(getCanonicalType(vecType), NumElts, VecKind); in getVectorType()
2704 VectorType(vecType, NumElts, Canonical, VecKind); in getVectorType()
2713 ASTContext::getExtVectorType(QualType vecType, unsigned NumElts) const { in getExtVectorType() argument
2714 assert(vecType->isBuiltinType() || vecType->isDependentType()); in getExtVectorType()
2718 VectorType::Profile(ID, vecType, NumElts, Type::ExtVector, in getExtVectorType()
2727 if (!vecType.isCanonical()) { in getExtVectorType()
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
DAMDGPUInstructions.td150 class Vector_Build <ValueType vecType, RegisterClass elemClass> : Pat <
152 (INSERT_SUBREG (vecType (IMPLICIT_DEF)), elemClass:$src, sel_x)
/external/mesa3d/src/gallium/drivers/radeon/
DAMDGPUInstructions.td150 class Vector_Build <ValueType vecType, RegisterClass elemClass> : Pat <
152 (INSERT_SUBREG (vecType (IMPLICIT_DEF)), elemClass:$src, sel_x)
/external/clang/lib/Sema/
DSemaExprMember.cpp297 const ExtVectorType *vecType = baseType->getAs<ExtVectorType>(); in CheckExtVectorComponent() local
322 (Idx = vecType->getPointAccessorIdx(*compStr)) != -1) { in CheckExtVectorComponent()
330 } while (*compStr && (Idx = vecType->getPointAccessorIdx(*compStr)) != -1); in CheckExtVectorComponent()
333 while ((Idx = vecType->getNumericAccessorIdx(*compStr)) != -1) { in CheckExtVectorComponent()
357 if (!vecType->isAccessorWithinNumElements(*compStr++)) { in CheckExtVectorComponent()
370 unsigned CompSize = HalvingSwizzle ? (vecType->getNumElements() + 1) / 2 in CheckExtVectorComponent()
376 return vecType->getElementType(); in CheckExtVectorComponent()
380 QualType VT = S.Context.getExtVectorType(vecType->getElementType(), CompSize); in CheckExtVectorComponent()
DSemaExpr.cpp5115 if (const VectorType *vecType = type->getAs<VectorType>()) { in breakDownVectorType() local
5116 len = vecType->getNumElements(); in breakDownVectorType()
5117 eltType = vecType->getElementType(); in breakDownVectorType()
/external/llvm/lib/Target/NVPTX/
DNVPTXISelDAGToDAG.cpp419 unsigned vecType = NVPTX::PTXLdStInstCode::Scalar; in SelectLoad() local
423 vecType = NVPTX::PTXLdStInstCode::V2; in SelectLoad()
425 vecType = NVPTX::PTXLdStInstCode::V4; in SelectLoad()
479 getI32Imm(vecType), getI32Imm(fromType), in SelectLoad()
508 getI32Imm(vecType), getI32Imm(fromType), in SelectLoad()
562 getI32Imm(vecType), getI32Imm(fromType), in SelectLoad()
614 getI32Imm(vecType), getI32Imm(fromType), in SelectLoad()
1794 unsigned vecType = NVPTX::PTXLdStInstCode::Scalar; in SelectStore() local
1798 vecType = NVPTX::PTXLdStInstCode::V2; in SelectStore()
1800 vecType = NVPTX::PTXLdStInstCode::V4; in SelectStore()
[all …]
/external/deqp/modules/gles2/functional/
Des2fShaderMatrixTests.cpp1181 DataType vecType = getDataTypeFloatVec(getDataTypeMatrixNumColumns(matType)); in init() local
1182 ShaderInput vecIn (op == OP_DIV ? INPUTTYPE_UNIFORM : INPUTTYPE_DYNAMIC, vecType, precision); in init()
1184 …opGroup->addChild(new ShaderMatrixCase(m_context, (baseName + getDataTypeName(vecType) + "_vertex"… in init()
1185 …opGroup->addChild(new ShaderMatrixCase(m_context, (baseName + getDataTypeName(vecType) + "_fragmen… in init()
1188 …ing(inTypeList[inTypeNdx].name) + "_" + precName + "_" + getDataTypeName(vecType) + "_" + matTypeN… in init()
Des2fShaderIndexingTests.cpp842 DataType vecType = getDataTypeFloatVec(matSize); in createMatrixSubscriptCase() local
963 params.insert(pair<string, string>("VEC_TYPE", getDataTypeName(vecType))); in createMatrixSubscriptCase()
/external/clang/patches/
D0003-Add-support-for-RenderScript-specific-options.patch137 (Idx = vecType->getPointAccessorIdx(*compStr)) != -1) {
/external/deqp/modules/gles3/functional/
Des3fShaderIndexingTests.cpp811 DataType vecType = getDataTypeFloatVec(numRows); in createMatrixSubscriptCase() local
936 params.insert(pair<string, string>("VEC_TYPE", getDataTypeName(vecType))); in createMatrixSubscriptCase()
/external/clang/include/clang/AST/
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) :
2589 VectorType(ExtVector, vecType, nElements, canonType, GenericVector) {}
/external/deqp/modules/gles31/functional/
Des31fSSBOLayoutCase.cpp637 const glu::DataType vecType = glu::getDataTypeFloatVec(vecSize); in computeReferenceLayout() local
638 const int vecBaseAlign = getDataTypeByteAlignment(vecType); in computeReferenceLayout()