Searched refs:bmp (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/graphics/java/android/renderscript/
H A DRenderScript.java236 native int rsnAllocationCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage); argument
237 synchronized int nAllocationCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) { argument
239 return rsnAllocationCreateFromBitmap(mContext, type, mip, bmp, usage);
241 native int rsnAllocationCubeCreateFromBitmap(int con, int type, int mip, Bitmap bmp, int usage); argument
242 synchronized int nAllocationCubeCreateFromBitmap(int type, int mip, Bitmap bmp, int usage) { argument
244 return rsnAllocationCubeCreateFromBitmap(mContext, type, mip, bmp, usage);
246 native int rsnAllocationCreateBitmapRef(int con, int type, Bitmap bmp); argument
247 synchronized int nAllocationCreateBitmapRef(int type, Bitmap bmp) { argument
249 return rsnAllocationCreateBitmapRef(mContext, type, bmp);
257 native void rsnAllocationCopyToBitmap(int con, int alloc, Bitmap bmp); argument
258 nAllocationCopyToBitmap(int alloc, Bitmap bmp) argument
274 rsnAllocationCopyFromBitmap(int con, int alloc, Bitmap bmp) argument
275 nAllocationCopyFromBitmap(int alloc, Bitmap bmp) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
H A DBridge.java534 * @param bmp the Bitmap object
537 public static void setCachedBitmap(String value, Bitmap bmp, Object projectKey) { argument
546 map.put(value, new SoftReference<Bitmap>(bmp));
548 sFrameworkBitmapCache.put(value, new SoftReference<Bitmap>(bmp));
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp516 static void ReleaseBitmapCallback(void *bmp) argument
518 SkBitmap const * nativeBitmap = (SkBitmap const *)bmp;

Completed in 371 milliseconds