Home | History | Annotate | Download | only in renderscript

Lines Matching refs:bmp

342     native int  rsnAllocationCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage);
343 synchronized int nAllocationCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) {
345 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
348 native int rsnAllocationCreateBitmapBackedAllocation(int con, int type, int mip, Bitmap bmp, int usage);
349 synchronized int nAllocationCreateBitmapBackedAllocation(int type, int mip, Bitmap bmp, int usage) {
351 return rsnAllocationCreateBitmapBackedAllocation(mContext, type, mip, bmp, usage);
355 native int rsnAllocationCubeCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage);
356 synchronized int nAllocationCubeCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) {
358 return rsnAllocationCubeCreateFromBitmap(mContext, type, mip, bmp, usage);
360 native int rsnAllocationCreateBitmapRef(int con, int type, Bitmap bmp);
361 synchronized int nAllocationCreateBitmapRef(int type, Bitmap bmp) {
363 return rsnAllocationCreateBitmapRef(mContext, type, bmp);
371 native void rsnAllocationCopyToBitmap(int con, int alloc, Bitmap bmp);
372 synchronized void nAllocationCopyToBitmap(int alloc, Bitmap bmp) {
374 rsnAllocationCopyToBitmap(mContext, alloc, bmp);
410 native void rsnAllocationCopyFromBitmap(int con, int alloc, Bitmap bmp);
411 synchronized void nAllocationCopyFromBitmap(int alloc, Bitmap bmp) {
413 rsnAllocationCopyFromBitmap(mContext, alloc, bmp);