Lines Matching refs:mip
360 native long rsnAllocationCreateTyped(long con, long type, int mip, int usage, long pointer); in rsnAllocationCreateTyped() argument
361 synchronized long nAllocationCreateTyped(long type, int mip, int usage, long pointer) { in nAllocationCreateTyped() argument
363 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer); in nAllocationCreateTyped()
365 native long rsnAllocationCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage); in rsnAllocationCreateFromBitmap() argument
366 synchronized long nAllocationCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) { in nAllocationCreateFromBitmap() argument
368 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage); in nAllocationCreateFromBitmap()
371 …native long rsnAllocationCreateBitmapBackedAllocation(long con, long type, int mip, Bitmap bmp, in… in rsnAllocationCreateBitmapBackedAllocation() argument
372 …synchronized long nAllocationCreateBitmapBackedAllocation(long type, int mip, Bitmap bmp, int usag… in nAllocationCreateBitmapBackedAllocation() argument
374 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage); in nAllocationCreateBitmapBackedAllocation()
377 …native long rsnAllocationCubeCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage); in rsnAllocationCubeCreateFromBitmap() argument
378 synchronized long nAllocationCubeCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) { in nAllocationCubeCreateFromBitmap() argument
380 return rsnAllocationCubeCreateFromBitmap(mContext, type, mip, bmp, usage); in nAllocationCubeCreateFromBitmap()
439 …native void rsnAllocationData1D(long con, long id, int off, int mip, int count, Object d, int size… in rsnAllocationData1D() argument
440 …synchronized void nAllocationData1D(long id, int off, int mip, int count, Object d, int sizeBytes,… in nAllocationData1D() argument
442 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes, dt.mID); in nAllocationData1D()
445 …native void rsnAllocationElementData1D(long con,long id, int xoff, int mip, int compIdx, byte[] d,… in rsnAllocationElementData1D() argument
446 …synchronized void nAllocationElementData1D(long id, int xoff, int mip, int compIdx, byte[] d, int … in nAllocationElementData1D() argument
448 rsnAllocationElementData1D(mContext, id, xoff, mip, compIdx, d, sizeBytes); in nAllocationElementData1D()
471 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, in rsnAllocationData2D() argument
473 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, in nAllocationData2D() argument
476 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID); in nAllocationData2D()
479 …native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, Bitmap b… in rsnAllocationData2D() argument
480 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, Bitmap b) { in nAllocationData2D() argument
482 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b); in nAllocationData2D()
503 native void rsnAllocationData3D(long con, long id, int xoff, int yoff, int zoff, int mip, in rsnAllocationData3D() argument
505 synchronized void nAllocationData3D(long id, int xoff, int yoff, int zoff, int mip, in nAllocationData3D() argument
508 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes, dt.mID); in nAllocationData3D()
517 native void rsnAllocationRead1D(long con, long id, int off, int mip, int count, Object d, in rsnAllocationRead1D() argument
519 synchronized void nAllocationRead1D(long id, int off, int mip, int count, Object d, in nAllocationRead1D() argument
522 rsnAllocationRead1D(mContext, id, off, mip, count, d, sizeBytes, dt.mID); in nAllocationRead1D()
525 native void rsnAllocationRead2D(long con, long id, int xoff, int yoff, int mip, int face, in rsnAllocationRead2D() argument
527 synchronized void nAllocationRead2D(long id, int xoff, int yoff, int mip, int face, in nAllocationRead2D() argument
530 rsnAllocationRead2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID); in nAllocationRead2D()