HomeSort by relevance Sort by last modified time
    Searched refs:vecSize (Results 1 - 17 of 17) sorted by null

  /frameworks/rs/
rsComponent.h 34 void set(RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize=1);
rsComponent.cpp 29 void Component::set(RsDataType dt, RsDataKind dk, bool norm, uint32_t vecSize) {
33 mVectorSize = vecSize;
34 rsAssert(vecSize <= 4);
rsElement.h 117 uint32_t vecSize);
128 uint32_t vecSize) {
129 ObjectBaseRef<const Element> elem = createRef(rsc, dt, dk, isNorm, vecSize);
rsElement.cpp 223 bool isNorm, uint32_t vecSize) {
233 (ee->getComponent().getVectorSize() == vecSize)) {
244 e->mComponent.set(dt, dk, isNorm, vecSize);
388 uint32_t vecSize) {
389 return (RsElement)Element::create(rsc, dt, dk, norm, vecSize);
  /external/skia/src/gpu/
GrDrawState.cpp 155 size_t vecSize = (vertexLayout & kTextFormat_VertexLayoutBit) ?
159 size_t size = vecSize; // position
160 size += num_tex_coords(vertexLayout) * vecSize;
197 int vecSize = (vertexLayout & kTextFormat_VertexLayoutBit) ?
200 int offset = vecSize; // position
204 offset += vecSize;
217 int vecSize = (vertexLayout & kTextFormat_VertexLayoutBit) ?
220 return vecSize * (num_tex_coords(vertexLayout) + 1); //+1 for pos
229 int vecSize = (vertexLayout & kTextFormat_VertexLayoutBit) ?
233 int offset = vecSize * (num_tex_coords(vertexLayout) + 1)
    [all...]
  /frameworks/rs/driver/
rsdRuntimeStubs.cpp 560 static void * ElementAt1D(Allocation *a, RsDataType dt, uint32_t vecSize, uint32_t x) {
572 if (vecSize > 0) {
573 if (vecSize != e->getVectorSize()) {
574 sprintf(buf, "Vector size mismatch for ElementAt %i of %i", vecSize, e->getVectorSize());
591 static void * ElementAt2D(Allocation *a, RsDataType dt, uint32_t vecSize, uint32_t x, uint32_t y) {
609 if (vecSize > 0) {
610 if (vecSize != e->getVectorSize()) {
611 sprintf(buf, "Vector size mismatch for ElementAt %i of %i", vecSize, e->getVectorSize());
629 static void * ElementAt3D(Allocation *a, RsDataType dt, uint32_t vecSize, uint32_t x, uint32_t y, uint32_t z) {
653 if (vecSize > 0)
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ParseHelper.h 59 bool parseVectorFields(const TString&, int vecSize, TVectorFields&, int line);
ParseHelper.cpp 51 bool TParseContext::parseVectorFields(const TString& compString, int vecSize, TVectorFields& fields, int line)
123 if (fields.offsets[i] >= vecSize) {
    [all...]
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
entropy_coding.c 690 WebRtc_Word16 vecSize;
693 vecSize = UB_LPC_ORDER;
710 memcpy(&poly[1], ptrIO, sizeof(double) * vecSize);
711 WebRtcIsac_Poly2Rc(poly, vecSize, rc);
712 WebRtcIsac_Rc2Lar(rc, ptrIO, vecSize);
713 ptrIO += vecSize;
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
Element.java 848 int vecSize = 1;
849 int id = rs.nElementCreate(dt.mID, dk.mID, norm, vecSize);
850 return new Element(id, rs, dt, dk, norm, vecSize);
    [all...]
RenderScript.java 253 native int rsnElementCreate(int con, int type, int kind, boolean norm, int vecSize);
254 synchronized int nElementCreate(int type, int kind, boolean norm, int vecSize) {
256 return rsnElementCreate(mContext, type, kind, norm, vecSize);
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Element.java 764 int vecSize = 1;
765 int id = rs.nElementCreate(dt.mID, dk.mID, norm, vecSize);
766 return new Element(id, rs, dt, dk, norm, vecSize);
    [all...]
RenderScript.java 186 native int rsnElementCreate(int con, int type, int kind, boolean norm, int vecSize);
187 synchronized int nElementCreate(int type, int kind, boolean norm, int vecSize) {
189 return rsnElementCreate(mContext, type, kind, norm, vecSize);
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.h 78 uint32_t vecSize;
slang_rs_export_type.cpp     [all...]
  /external/clang/lib/Sema/
SemaType.cpp     [all...]
  /prebuilts/sdk/renderscript/lib/
javalib.jar 

Completed in 1337 milliseconds