Home
last modified time | relevance | path

Searched refs:vecSize (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/gpu/
DGrDrawTarget.cpp125 size_t vecSize = (vertexLayout & kTextFormat_VertexLayoutBit) ? in VertexSize() local
129 size_t size = vecSize; // position in VertexSize()
130 size += num_tex_coords(vertexLayout) * vecSize; in VertexSize()
166 int vecSize = (vertexLayout & kTextFormat_VertexLayoutBit) ? in VertexStageCoordOffset() local
169 int offset = vecSize; // position in VertexStageCoordOffset()
173 offset += vecSize; in VertexStageCoordOffset()
186 int vecSize = (vertexLayout & kTextFormat_VertexLayoutBit) ? in VertexColorOffset() local
189 return vecSize * (num_tex_coords(vertexLayout) + 1); //+1 for pos in VertexColorOffset()
198 int vecSize = (vertexLayout & kTextFormat_VertexLayoutBit) ? in VertexCoverageOffset() local
202 int offset = vecSize * (num_tex_coords(vertexLayout) + 1); in VertexCoverageOffset()
[all …]
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
DParseHelper.h59 bool parseVectorFields(const TString&, int vecSize, TVectorFields&, int line);
DParseHelper.cpp51 bool TParseContext::parseVectorFields(const TString& compString, int vecSize, TVectorFields& fields… in parseVectorFields() argument
123 if (fields.offsets[i] >= vecSize) { in parseVectorFields()
/external/clang/lib/Sema/
DSemaType.cpp1437 llvm::APSInt vecSize(32); in BuildExtVectorType() local
1438 if (!ArraySize->isIntegerConstantExpr(vecSize, Context)) { in BuildExtVectorType()
1446 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue()); in BuildExtVectorType()
3990 llvm::APSInt vecSize(32); in HandleVectorSizeAttr() local
3992 !sizeExpr->isIntegerConstantExpr(vecSize, S.Context)) { in HandleVectorSizeAttr()
4006 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8); in HandleVectorSizeAttr()
4112 unsigned vecSize = typeSize * numElts; in HandleNeonVectorTypeAttr() local
4113 if (vecSize != 64 && vecSize != 128) { in HandleNeonVectorTypeAttr()