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

1 2 3 4 5 6 7 8 91011>>

  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
ipa-reference.h 23 #include "bitmap.h"
27 bitmap ipa_reference_get_read_global (struct cgraph_node *fn);
28 bitmap ipa_reference_get_written_global (struct cgraph_node *fn);
29 bitmap ipa_reference_get_not_read_global (struct cgraph_node *fn);
30 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);
  /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...]
bitops.h 2 * bitops.h --- Bitmap frobbing code. The byte swapping routines are
51 * EXT2FS bitmap manipulation routines.
62 extern void ext2fs_warn_bitmap2(ext2fs_generic_bitmap bitmap,
65 extern int ext2fs_mark_block_bitmap(ext2fs_block_bitmap bitmap, blk_t block);
66 extern int ext2fs_unmark_block_bitmap(ext2fs_block_bitmap bitmap,
68 extern int ext2fs_test_block_bitmap(ext2fs_block_bitmap bitmap, blk_t block);
70 extern int ext2fs_mark_inode_bitmap(ext2fs_inode_bitmap bitmap, ext2_ino_t inode);
71 extern int ext2fs_unmark_inode_bitmap(ext2fs_inode_bitmap bitmap,
73 extern int ext2fs_test_inode_bitmap(ext2fs_inode_bitmap bitmap, ext2_ino_t inode);
75 extern void ext2fs_fast_mark_block_bitmap(ext2fs_block_bitmap bitmap,
    [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...]
CanvasTexture.java 19 import android.graphics.Bitmap;
20 import android.graphics.Bitmap.Config;
24 // The subclasses should override onDraw() to draw on the bitmap.
37 protected Bitmap onGetBitmap() {
38 Bitmap bitmap = Bitmap.createBitmap(mWidth, mHeight, mConfig); local
39 mCanvas = new Canvas(bitmap);
40 onDraw(mCanvas, bitmap);
41 return bitmap;
    [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...]
  /external/skia/src/gpu/
SkGr.cpp 14 based bitmap. [palette (colortable) + indices].
24 static void build_compressed_data(void* buffer, const SkBitmap& bitmap) {
25 SkASSERT(SkBitmap::kIndex8_Config == bitmap.config());
27 SkAutoLockPixels apl(bitmap);
28 if (!bitmap.readyToDraw()) {
29 SkDEBUGFAIL("bitmap not ready to draw!");
33 SkColorTable* ctable = bitmap.getColorTable();
42 if (bitmap.width() == bitmap.rowBytes()) {
43 memcpy(dst, bitmap.getPixels(), bitmap.getSize())
72 const SkBitmap* bitmap = &origBitmap; local
    [all...]
  /external/skia/src/images/
SkBitmapRegionDecoder.cpp 3 bool SkBitmapRegionDecoder::decodeRegion(SkBitmap* bitmap, SkIRect rect,
6 return fDecoder->decodeRegion(bitmap, rect, pref);
  /dalvik/vm/alloc/
Verify.h 26 * Verifies the object references in a heap bitmap. Assumes the VM is
29 void dvmVerifyBitmap(const HeapBitmap *bitmap);
  /external/webkit/Source/WebCore/platform/graphics/android/
BitmapAllocatorAndroid.cpp 57 bool BitmapAllocatorAndroid::allocPixelRef(SkBitmap* bitmap, SkColorTable*)
60 if (should_use_ashmem(*bitmap)) {
61 // SkDebugf("ashmem [%d %d]\n", bitmap->width(), bitmap->height());
62 ref = new SkImageRef_ashmem(fStream, bitmap->config(), fSampleSize);
64 // SkDebugf("globalpool [%d %d]\n", bitmap->width(), bitmap->height());
65 ref = new SkImageRef_GlobalPool(fStream, bitmap->config(), fSampleSize);
67 bitmap->setPixelRef(ref)->unref();
  /frameworks/base/libs/hwui/
TextureCache.cpp 105 void TextureCache::operator()(SkBitmap*& bitmap, Texture*& texture) {
123 Texture* TextureCache::get(SkBitmap* bitmap) {
124 Texture* texture = mCache.get(bitmap);
127 if (bitmap->width() > mMaxTextureSize || bitmap->height() > mMaxTextureSize) {
128 ALOGW("Bitmap too large to be uploaded into a texture (%dx%d, max=%dx%d)",
129 bitmap->width(), bitmap->height(), mMaxTextureSize, mMaxTextureSize);
133 const uint32_t size = bitmap->rowBytes() * bitmap->height()
    [all...]
  /external/skia/samplecode/
SampleWritePixels.cpp 19 static void create_bitmap(SkBitmap* bitmap) {
22 bitmap->setConfig(SkBitmap::kARGB_8888_Config, W, H);
23 bitmap->allocPixels();
25 SkCanvas canvas(*bitmap);
48 SkBitmap bitmap; local
49 create_bitmap(&bitmap);
50 int x = bitmap.width() / 2;
51 int y = bitmap.height() / 2;
54 bitmap.extractSubset(&subset, SkIRect::MakeXYWH(x, y, x, y));
58 canvas->writePixels(bitmap, 0, 0)
    [all...]
SampleDrawBitmap.cpp 15 static void create_bitmap(SkBitmap* bitmap) {
18 bitmap->setConfig(SkBitmap::kARGB_8888_Config, W, H);
19 bitmap->allocPixels();
21 SkCanvas canvas(*bitmap);
44 SkBitmap bitmap; local
45 create_bitmap(&bitmap);
46 int x = bitmap.width() / 2;
47 int y = bitmap.height() / 2;
49 bitmap.extractSubset(&subset, SkIRect::MakeXYWH(x, y, x, y));
53 canvas->drawBitmap(bitmap, 0, 0)
    [all...]
  /external/jmonkeyengine/engine/src/android/com/jme3/asset/
AndroidImageInfo.java 3 import android.graphics.Bitmap;
13 * method to retrieve a {@link Bitmap} when it is needed by the renderer.
15 * {@link AndroidImageInfo#loadBitmap()} method to acquire a bitmap by their own means.
22 protected Bitmap bitmap; field in class:AndroidImageInfo
29 public Bitmap getBitmap(){
30 if (bitmap == null || bitmap.isRecycled()){
40 return bitmap;
50 * Loads the bitmap directly from the asset info, possibly updatin
    [all...]
  /frameworks/base/media/tests/omxjpegdecoder/
jpeg_decoder_bench.cpp 53 SkBitmap* bitmap) {
58 // Decode the input stream and then use the bitmap.
59 if (!decoder->decode(stream, bitmap, prefConfig, decodeMode)) {
63 printf("WidthxHeight: %dx%d\n", bitmap->width(), bitmap->height());
70 SkBitmap* bitmap) {
75 // Decode the input stream and then use the bitmap.
76 if (!decoder->decode(stream, bitmap, prefConfig, decodeMode)) {
82 return storeBitmapToFile(bitmap, filename);
89 SkBitmap* bitmap = new SkBitmap local
    [all...]
  /external/webkit/Source/WebKit2/Shared/
WebCoreArgumentCoders.cpp 40 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::createShareable(image->size(), ShareableBitmap::SupportsAlpha); local
41 bitmap->createGraphicsContext()->drawImage(image, ColorSpaceDeviceRGB, IntPoint());
43 bitmap->createHandle(handle);
54 RefPtr<ShareableBitmap> bitmap = ShareableBitmap::create(handle);
55 if (!bitmap)
57 image = createImage(bitmap.get());

Completed in 2030 milliseconds

1 2 3 4 5 6 7 8 91011>>