Searched refs:dimY (Results 1 - 25 of 34) sorted by relevance

12

/frameworks/rs/
H A DrsType.h45 uint32_t dimY; member in struct:android::renderscript::Type::Hal::State
67 uint32_t getDimY() const {return mHal.state.dimY;}
107 ObjectBaseRef<Type> cloneAndResize2D(Context *rsc, uint32_t dimX, uint32_t dimY) const;
110 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
114 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
116 ObjectBaseRef<Type> type = getTypeRef(rsc, e, dimX, dimY, dimZ, dimLOD, dimFaces);
H A DrsType.cpp67 uint32_t l2y = rsFindHighBit(mHal.state.dimY) + 1;
89 uint32_t ty = mHal.state.dimY;
150 mHal.state.dimY,
168 stream->addU32(mHal.state.dimY);
219 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
230 if (t->getDimY() != dimY) continue;
246 nt->mHal.state.dimY = dimY;
265 uint32_t dimY) const {
266 return getTypeRef(rsc, mElement.get(), dimX, dimY,
218 getTypeRef(Context *rsc, const Element *e, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool dimLOD, bool dimFaces) argument
307 rsi_TypeCreate(Context *rsc, RsElement _e, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mips, bool faces) argument
[all...]
H A Drs.spec33 param uint32_t dimY
238 param uint32_t dimY
H A DrsAllocation.h93 void resize2D(Context *rsc, uint32_t dimX, uint32_t dimY);
/frameworks/support/renderscript/v8/rs_support/
H A DrsType.h45 uint32_t dimY; member in struct:android::renderscript::Type::Hal::State
67 uint32_t getDimY() const {return mHal.state.dimY;}
107 ObjectBaseRef<Type> cloneAndResize2D(Context *rsc, uint32_t dimX, uint32_t dimY) const;
110 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
114 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
116 ObjectBaseRef<Type> type = getTypeRef(rsc, e, dimX, dimY, dimZ, dimLOD, dimFaces);
H A DrsType.cpp67 uint32_t l2y = rsFindHighBit(mHal.state.dimY) + 1;
89 uint32_t ty = mHal.state.dimY;
150 mHal.state.dimY,
168 stream->addU32(mHal.state.dimY);
219 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
230 if (t->getDimY() != dimY) continue;
246 nt->mHal.state.dimY = dimY;
265 uint32_t dimY) const {
266 return getTypeRef(rsc, mElement.get(), dimX, dimY,
218 getTypeRef(Context *rsc, const Element *e, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool dimLOD, bool dimFaces) argument
307 rsi_TypeCreate(Context *rsc, RsElement _e, uint32_t dimX, uint32_t dimY, uint32_t dimZ, bool mips, bool faces) argument
[all...]
H A Drs.spec33 param uint32_t dimY
176 param uint32_t dimY
H A DrsAllocation.h90 void resize2D(Context *rsc, uint32_t dimX, uint32_t dimY);
/frameworks/compile/libbcc/lib/Renderscript/runtime/
H A Drs_allocation.c59 const uint32_t dimY = alloc->mHal.state.dimensionY; local
60 return &p[(eSize * x) + (y * stride) + (z * stride * dimY)];
H A Drs_structs.h210 uint32_t dimY; member in struct:Type::__anon1215::__anon1216
/frameworks/rs/driver/
H A DrsdBcc.cpp261 mtls->fep.dimY = ain->getType()->getDimY();
266 mtls->fep.dimY = aout->getType()->getDimY();
286 mtls->yEnd = mtls->fep.dimY;
288 rsAssert(sc->yStart < mtls->fep.dimY);
289 rsAssert(sc->yEnd <= mtls->fep.dimY);
291 mtls->yStart = rsMin(mtls->fep.dimY, sc->yStart);
292 mtls->yEnd = rsMin(mtls->fep.dimY, sc->yEnd);
349 if (mtls->fep.dimY > 1) {
350 uint32_t s1 = mtls->fep.dimY / ((dc->mWorkers.mCount + 1) * 4);
400 uint32_t offset = mtls->fep.dimY * mtl
[all...]
H A DrsdIntrinsicConvolve5x5.cpp115 uint32_t y3 = rsMin((int32_t)p->y+1, (int32_t)(p->dimY-1));
116 uint32_t y4 = rsMin((int32_t)p->y+2, (int32_t)(p->dimY-1));
H A DrsdIntrinsicYuvToRGB.cpp97 const uchar *uv = pin + (p->dimX * p->dimY);
H A DrsdAllocation.cpp238 drv->lod[0].dimY = type->getDimY();
247 size_t o = drv->lod[0].stride * rsMax(drv->lod[0].dimY, 1u) * rsMax(drv->lod[0].dimZ, 1u);
250 uint32_t ty = drv->lod[0].dimY;
254 drv->lod[lod].dimY = ty;
414 RSD_CALL_GL(glReadPixels, 0, 0, drv->lod[0].dimX, drv->lod[0].dimY,
772 uint32_t h = drv->lod[lod + 1].dimY;
791 uint32_t h = drv->lod[lod + 1].dimY;
810 uint32_t h = drv->lod[lod + 1].dimY;
H A DrsdIntrinsicBlur.cpp102 validY = rsMin(validY, (int)(p->dimY - 1));
204 if ((y > cp->iradius) && (y < ((int)p->dimY - cp->iradius))) {
H A DrsdAllocation.h57 uint32_t dimY; member in struct:DrvAllocation::LodState
H A DrsdIntrinsicConvolve3x3.cpp88 uint32_t y1 = rsMin((int32_t)p->y + 1, (int32_t)(p->dimY-1));
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdBcc.cpp434 mtls->fep.dimY = ain->getType()->getDimY();
439 mtls->fep.dimY = aout->getType()->getDimY();
459 mtls->yEnd = mtls->fep.dimY;
461 rsAssert(sc->yStart < mtls->fep.dimY);
462 rsAssert(sc->yEnd <= mtls->fep.dimY);
464 mtls->yStart = rsMin(mtls->fep.dimY, sc->yStart);
465 mtls->yEnd = rsMin(mtls->fep.dimY, sc->yEnd);
521 if (mtls->fep.dimY > 1) {
522 mtls->mSliceSize = mtls->fep.dimY / (dc->mWorkers.mCount * 4);
549 uint32_t offset = mtls->fep.dimY * mtl
[all...]
H A DrsdIntrinsicBlur.cpp100 validY = rsMin(validY, (int)(p->dimY - 1));
175 if ((y > cp->iradius) && (y < ((int)p->dimY - cp->iradius))) {
H A DrsdIntrinsicConvolve5x5.cpp111 uint32_t y3 = rsMin((int32_t)p->y+1, (int32_t)(p->dimY-1));
112 uint32_t y4 = rsMin((int32_t)p->y+2, (int32_t)(p->dimY-1));
H A DrsdAllocation.cpp73 drv->lod[0].dimY = type->getDimY();
82 size_t o = drv->lod[0].stride * rsMax(drv->lod[0].dimY, 1u) * rsMax(drv->lod[0].dimZ, 1u);
85 uint32_t ty = drv->lod[0].dimY;
89 drv->lod[lod].dimY = ty;
465 uint32_t h = drv->lod[lod + 1].dimY;
484 uint32_t h = drv->lod[lod + 1].dimY;
503 uint32_t h = drv->lod[lod + 1].dimY;
H A DrsdIntrinsicYuvToRGB.cpp93 const uchar *uv = pin + (p->dimX * p->dimY);
H A DrsdAllocation.h57 uint32_t dimY; member in struct:DrvAllocation::LodState
H A DrsdIntrinsicConvolve3x3.cpp83 uint32_t y1 = rsMin((int32_t)p->y + 1, (int32_t)(p->dimY-1));
/frameworks/rs/cpp/
H A DAllocation.h113 void resize(int dimX, int dimY);

Completed in 3753 milliseconds

12