HomeSort by relevance Sort by last modified time
    Searched refs:bitmap (Results 1 - 25 of 1087) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
ipa-reference.h 24 #include "bitmap.h"
28 bitmap ipa_reference_get_not_read_global (struct cgraph_node *fn);
29 bitmap ipa_reference_get_not_written_global (struct cgraph_node *fn);
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ipa-reference.h 24 #include "bitmap.h"
28 bitmap ipa_reference_get_not_read_global (struct cgraph_node *fn);
29 bitmap ipa_reference_get_not_written_global (struct cgraph_node *fn);
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
ipa-reference.h 24 #include "bitmap.h"
28 bitmap ipa_reference_get_not_read_global (struct cgraph_node *fn);
29 bitmap ipa_reference_get_not_written_global (struct cgraph_node *fn);
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
ipa-reference.h 24 #include "bitmap.h"
28 bitmap ipa_reference_get_not_read_global (struct cgraph_node *fn);
29 bitmap ipa_reference_get_not_written_global (struct cgraph_node *fn);
  /gdk/samples/PhotoEditor/src/com/android/photoeditor/
Photo.java 19 import android.graphics.Bitmap;
27 private Bitmap bitmap; field in class:Photo
30 * Factory method to ensure every Photo instance holds a non-null bitmap.
32 public static Photo create(Bitmap bitmap) {
33 return (bitmap != null) ? new Photo(bitmap) : null;
36 private Photo(Bitmap bitmap) {
40 public Bitmap bitmap() { method in class:Photo
    [all...]
  /frameworks/base/opengl/java/android/opengl/
GLUtils.java 19 import android.graphics.Bitmap;
44 * return the internal format as defined by OpenGL ES of the supplied bitmap.
45 * @param bitmap
46 * @return the internal format of the bitmap.
48 public static int getInternalFormat(Bitmap bitmap) {
49 if (bitmap == null) {
50 throw new NullPointerException("getInternalFormat can't be used with a null Bitmap");
52 if (bitmap.isRecycled()) {
53 throw new IllegalArgumentException("bitmap is recycled")
    [all...]
  /gdk/samples/PhotoEditor/src/com/android/photoeditor/filters/
DocumentaryFilter.java 32 ImageUtils.nativeWhiteBlack(src.bitmap(), dst.bitmap(), 0.5f, 0f);
33 ImageUtils.nativeGrayscale(dst.bitmap(), dst.bitmap(), 1.0f);
34 ImageUtils.nativeVignetting(dst.bitmap(), dst.bitmap(), 0.83f);
FlipFilter.java 38 ImageUtils.nativeFlipBoth(src.bitmap(), dst.bitmap());
40 ImageUtils.nativeFlipHorizontal(src.bitmap(), dst.bitmap());
42 ImageUtils.nativeFlipVertical(src.bitmap(), dst.bitmap());
44 ImageUtils.nativeCopy(src.bitmap(), dst.bitmap());
LomoishFilter.java 32 ImageUtils.nativeBlur(src.bitmap(), dst.bitmap(), 0.3f);
33 ImageUtils.nativeCrossProcess(dst.bitmap(), dst.bitmap());
34 ImageUtils.nativeWhiteBlack(dst.bitmap(), dst.bitmap(), 0.8f, 0.15f);
35 ImageUtils.nativeVignetting(dst.bitmap(), dst.bitmap(), 0.73f);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterBW.java 19 import android.graphics.Bitmap;
27 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h);
30 public Bitmap apply(Bitmap bitmap, float scaleFactor, boolean highQuality) {
31 int w = bitmap.getWidth();
32 int h = bitmap.getHeight();
33 nativeApplyFilter(bitmap, w, h);
34 return bitmap;
    [all...]
ImageFilterBWBlue.java 19 import android.graphics.Bitmap;
27 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h);
30 public Bitmap apply(Bitmap bitmap, float scaleFactor, boolean highQuality) {
31 int w = bitmap.getWidth();
32 int h = bitmap.getHeight();
33 nativeApplyFilter(bitmap, w, h);
34 return bitmap;
    [all...]
ImageFilterBWGreen.java 19 import android.graphics.Bitmap;
27 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h);
30 public Bitmap apply(Bitmap bitmap, float scaleFactor, boolean highQuality) {
31 int w = bitmap.getWidth();
32 int h = bitmap.getHeight();
33 nativeApplyFilter(bitmap, w, h);
34 return bitmap;
    [all...]
ImageFilterBWRed.java 19 import android.graphics.Bitmap;
27 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h);
30 public Bitmap apply(Bitmap bitmap, float scaleFactor, boolean highQuality) {
31 int w = bitmap.getWidth();
32 int h = bitmap.getHeight();
33 nativeApplyFilter(bitmap, w, h);
34 return bitmap;
    [all...]
ImageFilterContrast.java 19 import android.graphics.Bitmap;
27 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float strength);
30 public Bitmap apply(Bitmap bitmap, float scaleFactor, boolean highQuality) {
31 int w = bitmap.getWidth();
32 int h = bitmap.getHeight();
35 nativeApplyFilter(bitmap, w, h, value);
36 return bitmap;
    [all...]
ImageFilterExposure.java 19 import android.graphics.Bitmap;
27 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float bright);
30 public Bitmap apply(Bitmap bitmap, float scaleFactor, boolean highQuality) {
31 int w = bitmap.getWidth();
32 int h = bitmap.getHeight();
35 nativeApplyFilter(bitmap, w, h, value);
36 return bitmap;
    [all...]
ImageFilterVibrance.java 19 import android.graphics.Bitmap;
27 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float bright);
30 public Bitmap apply(Bitmap bitmap, float scaleFactor, boolean highQuality) {
31 int w = bitmap.getWidth();
32 int h = bitmap.getHeight();
35 nativeApplyFilter(bitmap, w, h, value);
37 return bitmap;
    [all...]
ImageFilterWBalance.java 19 import android.graphics.Bitmap;
29 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, int locX, int locY);
32 public Bitmap apply(Bitmap bitmap, float scaleFactor, boolean highQuality) {
33 int w = bitmap.getWidth();
34 int h = bitmap.getHeight();
35 nativeApplyFilter(bitmap, w, h, -1,-1);
36 return bitmap;
    [all...]
ImageFilterSaturated.java 19 import android.graphics.Bitmap;
27 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float saturation);
30 public Bitmap apply(Bitmap bitmap, float scaleFactor, boolean highQuality) {
31 int w = bitmap.getWidth();
32 int h = bitmap.getHeight();
35 nativeApplyFilter(bitmap, w, h, value);
36 return bitmap;
    [all...]
ImageFilterShadows.java 19 import android.graphics.Bitmap;
34 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float factor);
37 public Bitmap apply(Bitmap bitmap, float scaleFactor, boolean highQuality) {
38 int w = bitmap.getWidth();
39 int h = bitmap.getHeight();
42 nativeApplyFilter(bitmap, w, h, p);
43 return bitmap;
    [all...]
ImageFilterVignette.java 19 import android.graphics.Bitmap;
28 native protected void nativeApplyFilter(Bitmap bitmap, int w, int h, float strength);
31 public Bitmap apply(Bitmap bitmap, float scaleFactor, boolean highQuality) {
32 int w = bitmap.getWidth();
33 int h = bitmap.getHeight();
36 nativeApplyFilter(bitmap, w, h, value);
38 return bitmap;
    [all...]
  /external/e2fsprogs/lib/ext2fs/
gen_bitmap.c 2 * gen_bitmap.c --- Generic (32-bit) bitmap routines
36 char * bitmap; member in struct:ext2fs_struct_generic_bitmap
45 void ext2fs_warn_bitmap2(ext2fs_generic_bitmap bitmap,
49 if (bitmap->description)
50 com_err(0, bitmap->base_error_code+code,
51 "#%lu for %s", arg, bitmap->description);
53 com_err(0, bitmap->base_error_code + code, "#%lu", arg);
57 static errcode_t check_magic(ext2fs_generic_bitmap bitmap)
59 if (!bitmap || !((bitmap->magic == EXT2_ET_MAGIC_GENERIC_BITMAP) |
71 ext2fs_generic_bitmap bitmap; local
    [all...]
  /external/linux-tools-perf/util/
bitmap.c 2 * From lib/bitmap.c
3 * Helper functions for bitmap.h.
10 #include <linux/bitmap.h>
12 #include "include/linux/bitmap.h"
16 int __bitmap_weight(const unsigned long *bitmap, int bits)
21 w += hweight_long(bitmap[k]);
24 w += hweight_long(bitmap[k] & BITMAP_LAST_WORD_MASK(bits));
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
BitmapTexture.java 19 import android.graphics.Bitmap;
23 // BitmapTexture is a texture whose content is specified by a fixed Bitmap.
25 // The texture does not own the Bitmap. The user should make sure the Bitmap
27 // does not free the Bitmap.
29 protected Bitmap mContentBitmap;
31 public BitmapTexture(Bitmap bitmap) {
32 this(bitmap, false);
35 public BitmapTexture(Bitmap bitmap, boolean hasBorder)
    [all...]
  /external/valgrind/main/drd/
pub_drd_bitmap.h 27 * A bitmap is a data structure that contains information about which
54 struct bitmap;
69 /* Complete bitmap. */
70 struct bitmap struct
79 struct bitmap* DRD_(bm_new)(void);
80 void DRD_(bm_delete)(struct bitmap* const bm);
81 void DRD_(bm_init)(struct bitmap* const bm);
82 void DRD_(bm_cleanup)(struct bitmap* const bm);
83 void DRD_(bm_access_range)(struct bitmap* const bm,
86 void DRD_(bm_access_range_load)(struct bitmap* const bm
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageWithIcon.java 20 import android.graphics.Bitmap;
36 private Bitmap bitmap; field in class:ImageWithIcon
38 public void setIcon(Bitmap bitmap){
39 this.bitmap = bitmap;
45 if (bitmap != null) {
47 drawImage(canvas, bitmap, d);

Completed in 335 milliseconds

1 2 3 4 5 6 7 8 91011>>