Lines Matching refs:mip

387     native long  rsnAllocationCreateTyped(long con, long type, int mip, int usage, long pointer);
388 synchronized long nAllocationCreateTyped(long type, int mip, int usage, long pointer) {
390 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
392 native long rsnAllocationCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage);
393 synchronized long nAllocationCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) {
395 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
398 native long rsnAllocationCreateBitmapBackedAllocation(long con, long type, int mip, Bitmap bmp, int usage);
399 synchronized long nAllocationCreateBitmapBackedAllocation(long type, int mip, Bitmap bmp, int usage) {
401 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage);
405 native long rsnAllocationCubeCreateFromBitmap(long con, long type, int mip, Bitmap bmp, int usage);
406 synchronized long nAllocationCubeCreateFromBitmap(long type, int mip, Bitmap bmp, int usage) {
408 return rsnAllocationCubeCreateFromBitmap(mContext, type, mip, bmp, usage);
473 native void rsnAllocationData1D(long con, long id, int off, int mip, int count, Object d, int sizeBytes, int dt,
475 synchronized void nAllocationData1D(long id, int off, int mip, int count, Object d, int sizeBytes, Element.DataType dt,
478 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes, dt.mID, mSize, usePadding);
481 native void rsnAllocationElementData1D(long con,long id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes);
482 synchronized void nAllocationElementData1D(long id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) {
484 rsnAllocationElementData1D(mContext, id, xoff, mip, compIdx, d, sizeBytes);
487 native void rsnAllocationElementData(long con,long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes);
488 synchronized void nAllocationElementData(long id, int xoff, int yoff, int zoff, int mip, int compIdx, byte[] d, int sizeBytes) {
490 rsnAllocationElementData(mContext, id, xoff, yoff, zoff, mip, compIdx, d, sizeBytes);
514 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face,
517 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face,
521 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID, mSize, usePadding);
524 native void rsnAllocationData2D(long con, long id, int xoff, int yoff, int mip, int face, Bitmap b);
525 synchronized void nAllocationData2D(long id, int xoff, int yoff, int mip, int face, Bitmap b) {
527 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b);
549 native void rsnAllocationData3D(long con, long id, int xoff, int yoff, int zoff, int mip,
552 synchronized void nAllocationData3D(long id, int xoff, int yoff, int zoff, int mip,
556 rsnAllocationData3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes,
566 native void rsnAllocationRead1D(long con, long id, int off, int mip, int count, Object d,
568 synchronized void nAllocationRead1D(long id, int off, int mip, int count, Object d,
571 rsnAllocationRead1D(mContext, id, off, mip, count, d, sizeBytes, dt.mID, mSize, usePadding);
576 int mip, int compIdx, byte[] d, int sizeBytes);
578 int mip, int compIdx, byte[] d, int sizeBytes) {
580 rsnAllocationElementRead(mContext, id, xoff, yoff, zoff, mip, compIdx, d, sizeBytes);
584 native void rsnAllocationRead2D(long con, long id, int xoff, int yoff, int mip, int face,
587 synchronized void nAllocationRead2D(long id, int xoff, int yoff, int mip, int face,
591 rsnAllocationRead2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes, dt.mID, mSize, usePadding);
595 native void rsnAllocationRead3D(long con, long id, int xoff, int yoff, int zoff, int mip,
598 synchronized void nAllocationRead3D(long id, int xoff, int yoff, int zoff, int mip,
602 rsnAllocationRead3D(mContext, id, xoff, yoff, zoff, mip, w, h, depth, d, sizeBytes, dt.mID, mSize, usePadding);