Home | History | Annotate | Download | only in renderscript

Lines Matching refs:yoff

517     native void rsnAllocationElementData(long con,long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes);
518 synchronized void nAllocationElementData(long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes) {
520 rsnAllocationElementData(mContext, id, xoff, yoff, zoff, mip, compIdx, d, sizeBytes);
543 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face,
546 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face,
550 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID, mSize, usePadding);
553 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, Bitmap b);
554 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, Bitmap b) {
556 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b);
577 native void rsnAllocationData3D(long con, long id, int xoff, int yoff, int zoff, int mip,
580 synchronized void nAllocationData3D(long id, int xoff, int yoff, int zoff, int mip,
584 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes,
602 native void rsnAllocationElementRead(long con,long id, int xoff, int yoff, int zoff,
604 synchronized void nAllocationElementRead(long id, int xoff, int yoff, int zoff,
607 rsnAllocationElementRead(mContext, id, xoff, yoff, zoff, mip, compIdx, d, sizeBytes);
610 native void rsnAllocationRead2D(long con, long id, int xoff, int yoff, int mip, int face,
613 synchronized void nAllocationRead2D(long id, int xoff, int yoff, int mip, int face,
617 rsnAllocationRead2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID, mSize, usePadding);
620 native void rsnAllocationRead3D(long con, long id, int xoff, int yoff, int zoff, int mip,
623 synchronized void nAllocationRead3D(long id, int xoff, int yoff, int zoff, int mip,
627 rsnAllocationRead3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes, dt.mID, mSize, usePadding);