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

  /frameworks/base/libs/rs/
rsType.h 66 ObjectBaseRef<Type> cloneAndResize2D(Context *rsc, uint32_t dimX, uint32_t dimY) const;
69 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
73 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
75 ObjectBaseRef<Type> type = getTypeRef(rsc, e, dimX, dimY, dimZ, dimLOD, dimFaces);
rsType.cpp 210 uint32_t dimX, uint32_t dimY, uint32_t dimZ,
221 if (t->getDimY() != dimY) continue;
236 nt->mDimY = dimY;
256 uint32_t dimY) const {
257 return getTypeRef(rsc, mElement.get(), dimX, dimY,
268 uint32_t dimY, uint32_t dimZ, bool mips, bool faces) {
271 return Type::getType(rsc, e, dimX, dimY, dimZ, mips, faces);
rs.spec 33 param uint32_t dimY
212 param uint32_t dimY
rsAllocation.h 81 void resize2D(Context *rsc, uint32_t dimX, uint32_t dimY);
rsAllocation.cpp 321 void Allocation::resize2D(Context *rsc, uint32_t dimX, uint32_t dimY) {
459 void rsi_AllocationResize2D(Context *rsc, RsAllocation va, uint32_t dimX, uint32_t dimY) {
461 a->resize2D(rsc, dimX, dimY);
  /frameworks/base/libs/rs/driver/
rsdBcc.cpp 214 uint32_t dimY;
302 mtls.dimY = ain->getType()->getDimY();
307 mtls.dimY = aout->getType()->getDimY();
327 mtls.yEnd = mtls.dimY;
329 rsAssert(sc->yStart < mtls.dimY);
330 rsAssert(sc->yEnd <= mtls.dimY);
332 mtls.yStart = rsMin(mtls.dimY, sc->yStart);
333 mtls.yEnd = rsMin(mtls.dimY, sc->yEnd);
371 if (mtls.dimY > 1) {
390 uint32_t offset = mtls.dimX * mtls.dimY * mtls.dimZ * p.ar[0]
    [all...]
  /frameworks/compile/libbcc/lib/ScriptCRT/
rs_core.c 298 const uint32_t dimY = alloc->mHal.state.dimensionY;
299 return &p[eSize * (x + y * dimX + z * dimX * dimY)];
  /frameworks/base/graphics/java/android/renderscript/
RenderScript.java 388 native void rsnAllocationResize2D(int con, int id, int dimX, int dimY);
389 synchronized void nAllocationResize2D(int id, int dimX, int dimY) {
391 rsnAllocationResize2D(mContext, id, dimX, dimY);
    [all...]
  /frameworks/base/graphics/jni/
android_renderscript_RenderScript.cpp 403 jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces)
406 con, eid, dimx, dimy, dimz, mips, faces);
408 jint id = (jint)rsTypeCreate(con, (RsElement)eid, dimx, dimy, dimz, mips, faces);
701 nAllocationResize2D(JNIEnv *_env, jobject _this, RsContext con, jint alloc, jint dimX, jint dimY)
703 LOG_API("nAllocationResize1D, con(%p), alloc(%p), sizeX(%i), sizeY(%i)", con, (RsAllocation)alloc, dimX, dimY);
704 rsAllocationResize2D(con, (RsAllocation)alloc, dimX, dimY);
    [all...]

Completed in 541 milliseconds