Home
last modified time | relevance | path

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

/external/chromium_org/third_party/angle/src/compiler/
DParseContext.h73 bool parseVectorFields(const TString&, int vecSize, TVectorFields&, const TSourceLoc& line);
DParseContext.cpp25 bool TParseContext::parseVectorFields(const TString& compString, int vecSize, TVectorFields& fields… in parseVectorFields() argument
97 if (fields.offsets[i] >= vecSize) { in parseVectorFields()
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
Dentropy_coding.c690 WebRtc_Word16 vecSize; in WebRtcIsac_Poly2LarUB() local
693 vecSize = UB_LPC_ORDER; in WebRtcIsac_Poly2LarUB()
710 memcpy(&poly[1], ptrIO, sizeof(double) * vecSize); in WebRtcIsac_Poly2LarUB()
711 WebRtcIsac_Poly2Rc(poly, vecSize, rc); in WebRtcIsac_Poly2LarUB()
712 WebRtcIsac_Rc2Lar(rc, ptrIO, vecSize); in WebRtcIsac_Poly2LarUB()
713 ptrIO += vecSize; in WebRtcIsac_Poly2LarUB()
/external/clang/lib/Sema/
DSemaType.cpp1631 llvm::APSInt vecSize(32); in BuildExtVectorType() local
1632 if (!ArraySize->isIntegerConstantExpr(vecSize, Context)) { in BuildExtVectorType()
1641 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue()); in BuildExtVectorType()
4524 llvm::APSInt vecSize(32); in HandleVectorSizeAttr() local
4526 !sizeExpr->isIntegerConstantExpr(vecSize, S.Context)) { in HandleVectorSizeAttr()
4542 unsigned vectorSize = static_cast<unsigned>(vecSize.getZExtValue() * 8); in HandleVectorSizeAttr()
4683 unsigned vecSize = typeSize * numElts; in HandleNeonVectorTypeAttr() local
4684 if (vecSize != 64 && vecSize != 128) { in HandleNeonVectorTypeAttr()