Lines Matching defs:mip

185     native int  rsnAllocationCreateTyped(int con, int type, int mip, int usage, int pointer);
186 synchronized int nAllocationCreateTyped(int type, int mip, int usage, int pointer) {
188 return rsnAllocationCreateTyped(mContext, type, mip, usage, pointer);
190 native int rsnAllocationCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage);
191 synchronized int nAllocationCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) {
193 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
195 native int rsnAllocationCubeCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage);
196 synchronized int nAllocationCubeCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) {
198 return rsnAllocationCubeCreateFromBitmap(mContext, type, mip, bmp, usage);
237 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, int[] d, int sizeBytes);
238 synchronized void nAllocationData1D(int id, int off, int mip, int count, int[] d, int sizeBytes) {
240 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
242 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, short[] d, int sizeBytes);
243 synchronized void nAllocationData1D(int id, int off, int mip, int count, short[] d, int sizeBytes) {
245 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
247 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, byte[] d, int sizeBytes);
248 synchronized void nAllocationData1D(int id, int off, int mip, int count, byte[] d, int sizeBytes) {
250 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
252 native void rsnAllocationData1D(int con, int id, int off, int mip, int count, float[] d, int sizeBytes);
253 synchronized void nAllocationData1D(int id, int off, int mip, int count, float[] d, int sizeBytes) {
255 rsnAllocationData1D(mContext, id, off, mip, count, d, sizeBytes);
258 native void rsnAllocationElementData1D(int con, int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes);
259 synchronized void nAllocationElementData1D(int id, int xoff, int mip, int compIdx, byte[] d, int sizeBytes) {
261 rsnAllocationElementData1D(mContext, id, xoff, mip, compIdx, d, sizeBytes);
284 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes);
285 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, byte[] d, int sizeBytes) {
287 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
289 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes);
290 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, short[] d, int sizeBytes) {
292 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
294 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes);
295 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, int[] d, int sizeBytes) {
297 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
299 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes);
300 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, int w, int h, float[] d, int sizeBytes) {
302 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, w, h, d, sizeBytes);
304 native void rsnAllocationData2D(int con, int id, int xoff, int yoff, int mip, int face, Bitmap b);
305 synchronized void nAllocationData2D(int id, int xoff, int yoff, int mip, int face, Bitmap b) {
307 rsnAllocationData2D(mContext, id, xoff, yoff, mip, face, b);