Lines Matching defs:mip

254     native int  rsnAllocationCreateTyped(int con, int type, int mip, int usage, int pointer);
255 synchronized int nAllocationCreateTyped(int type, int mip, int usage, int pointer) {
257 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
259 native int rsnAllocationCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage);
260 synchronized int nAllocationCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) {
262 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
264 native int rsnAllocationCubeCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage);
265 synchronized int nAllocationCubeCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) {
267 return rsnAllocationCubeCreateFromBitmap(mContext, type, mip, bmp, usage);
331 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, int[] d, int sizeBytes);
332 synchronized void nAllocationData1D(int id, int off, int mip, int count, int[] d, int sizeBytes) {
334 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
336 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, short[] d, int sizeBytes);
337 synchronized void nAllocationData1D(int id, int off, int mip, int count, short[] d, int sizeBytes) {
339 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
341 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, byte[] d, int sizeBytes);
342 synchronized void nAllocationData1D(int id, int off, int mip, int count, byte[] d, int sizeBytes) {
344 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
346 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, float[] d, int sizeBytes);
347 synchronized void nAllocationData1D(int id, int off, int mip, int count, float[] d, int sizeBytes) {
349 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
352 native void rsnAllocationElementData1D(int con, int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes);
353 synchronized void nAllocationElementData1D(int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) {
355 rsnAllocationElementData1D(mContext, id, xoff, mip, compIdx, d, sizeBytes);
378 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes);
379 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) {
381 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
383 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes);
384 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) {
386 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
388 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes);
389 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) {
391 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
393 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes);
394 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) {
396 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
398 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, Bitmap b);
399 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, Bitmap b) {
401 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b);