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

1 2 3 4 5 6 7 8 91011>>

  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/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);
  /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);
  /external/e2fsprogs/lib/ext2fs/
gen_bitmap.c 2 * gen_bitmap.c --- Generic bitmap routines that used to be inlined.
30 int ext2fs_mark_generic_bitmap(ext2fs_generic_bitmap bitmap,
33 if ((bitno < bitmap->start) || (bitno > bitmap->end)) {
34 ext2fs_warn_bitmap2(bitmap, EXT2FS_MARK_ERROR, bitno);
37 return ext2fs_set_bit(bitno - bitmap->start, bitmap->bitmap);
40 int ext2fs_unmark_generic_bitmap(ext2fs_generic_bitmap bitmap,
43 if ((bitno < bitmap->start) || (bitno > bitmap->end))
    [all...]
bitmaps.c 34 ext2fs_generic_bitmap bitmap; local
39 &bitmap);
43 bitmap->magic = EXT2_ET_MAGIC_GENERIC_BITMAP;
44 bitmap->fs = NULL;
45 bitmap->start = start;
46 bitmap->end = end;
47 bitmap->real_end = real_end;
48 bitmap->base_error_code = EXT2_ET_BAD_GENERIC_MARK;
50 retval = ext2fs_get_mem(strlen(descr)+1, &bitmap->description);
52 ext2fs_free_mem(&bitmap);
118 ext2fs_inode_bitmap bitmap; local
147 ext2fs_block_bitmap bitmap; local
    [all...]
freefs.c 61 void ext2fs_free_generic_bitmap(ext2fs_inode_bitmap bitmap)
63 if (!bitmap || (bitmap->magic != EXT2_ET_MAGIC_GENERIC_BITMAP))
66 bitmap->magic = 0;
67 if (bitmap->description) {
68 ext2fs_free_mem(&bitmap->description);
69 bitmap->description = 0;
71 if (bitmap->bitmap) {
72 ext2fs_free_mem(&bitmap->bitmap)
    [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...]
  /frameworks/base/opengl/java/android/opengl/
GLUtils.java 20 import android.graphics.Bitmap;
42 * return the internal format as defined by OpenGL ES of the supplied bitmap.
43 * @param bitmap
44 * @return the internal format of the bitmap.
46 public static int getInternalFormat(Bitmap bitmap) {
47 if (bitmap == null) {
48 throw new NullPointerException("getInternalFormat can't be used with a null Bitmap");
50 int result = native_getInternalFormat(bitmap);
58 * Return the type as defined by OpenGL ES of the supplied bitmap, if ther
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
CanvasTexture.java 19 import android.graphics.Bitmap;
21 import android.graphics.Bitmap.Config;
32 protected Bitmap getBitmap() {
33 Bitmap bitmap = Bitmap.createBitmap(mWidth, mHeight, Config.ARGB_8888); local
34 mCanvas = new Canvas(bitmap);
35 onDraw(mCanvas, bitmap);
36 return bitmap;
40 protected void freeBitmap(Bitmap bitmap)
    [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);
  /frameworks/base/graphics/java/android/graphics/
BitmapShader.java 22 private Bitmap mBitmap;
25 * Call this to create a new shader that will draw with a bitmap.
27 * @param bitmap The bitmap to use inside the shader
28 * @param tileX The tiling mode for x to draw the bitmap in.
29 * @param tileY The tiling mode for y to draw the bitmap in.
31 public BitmapShader(Bitmap bitmap, TileMode tileX, TileMode tileY) {
32 mBitmap = bitmap;
33 native_instance = nativeCreate(bitmap.ni()
    [all...]
  /external/webkit/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/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/skia/src/utils/mac/
SkCreateCGImageRef.cpp 8 SkBitmap* bitmap = reinterpret_cast<SkBitmap*>(info); local
9 delete bitmap;
80 SkBitmap* bitmap = prepareForImageRef(bm, &bitsPerComponent, &info); local
81 if (NULL == bitmap) {
85 const int w = bitmap->width();
86 const int h = bitmap->height();
87 const size_t s = bitmap->getSize();
89 // our provider "owns" the bitmap*, and will take care of deleting it
90 // we initially lock it, so we can access the pixels. The bitmap will be deleted in the release
92 bitmap->lockPixels()
    [all...]
  /external/chromium/net/disk_cache/
bitmap_unittest.cc 5 #include "net/disk_cache/bitmap.h"
10 disk_cache::Bitmap map32(32, false);
13 disk_cache::Bitmap map64(64, false);
18 // Verify that the default constructor doesn't allocate a bitmap.
19 disk_cache::Bitmap map;
26 disk_cache::Bitmap bitmap(80, true);
30 EXPECT_EQ(80, bitmap.Size());
31 EXPECT_EQ(3, bitmap.ArraySize());
34 EXPECT_EQ(0U, bitmap.GetMapElement(1))
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
BitmapShader.java 24 private final Bitmap mBitmap;
27 * Call this to create a new shader that will draw with a bitmap.
29 * @param bitmap The bitmap to use inside the shader
30 * @param tileX The tiling mode for x to draw the bitmap in.
31 * @param tileY The tiling mode for y to draw the bitmap in.
33 public BitmapShader(Bitmap bitmap, TileMode tileX, TileMode tileY) {
34 mBitmap = bitmap;
39 public Bitmap getBitmap()
    [all...]
  /packages/apps/Gallery3D/src/com/cooliris/media/
BitmapTexture.java 19 import android.graphics.Bitmap;
22 // A simple flexible texture class that enables a Texture from a bitmap.
23 final Bitmap mBitmap;
25 BitmapTexture(Bitmap bitmap) {
26 mBitmap = bitmap;
30 protected Bitmap load(RenderView view) {
  /external/oprofile/libdb/
db_debug.c 21 unsigned char * bitmap = malloc(data->descr->current_size); local
22 memset(bitmap, '\0', data->descr->current_size);
29 if (bitmap[index])
32 bitmap[index] = 1;
41 memset(bitmap, '\0', data->descr->current_size);
46 if (bitmap[index])
49 bitmap[index] = 1;
59 bitmap[index] = 1;
64 free(bitmap);
73 unsigned char * bitmap = malloc(max + 1) local
    [all...]
  /external/skia/emoji/
EmojiFont.cpp 65 encoded data and length. The bitmap field is initialized to 0, and is not
98 /* Return the bitmap associated with the local index, or NULL if none is
99 available. Note that this will try to cache the bitmap the first time it
104 SkBitmap* bitmap = NULL; local
106 bitmap = rec->fBitmap;
107 if (NULL == bitmap) {
108 bitmap = new SkBitmap;
109 if (!SkImageDecoder::DecodeMemory(rec->fData, rec->fSize, bitmap)) {
110 delete bitmap;
116 rec->fBitmap = bitmap;
169 const SkBitmap* bitmap = get_bitmap(glyphID - kGlyphBase); local
189 const SkBitmap* bitmap = get_bitmap(glyphID - kGlyphBase); local
    [all...]
  /frameworks/base/core/jni/android/graphics/
Bitmap.cpp 224 SkBitmap bitmap; local
226 bitmap.setConfig(config, width, height);
227 if (!GraphicsJNI::setJavaPixelRef(env, &bitmap, NULL, true)) {
233 0, 0, width, height, bitmap);
236 return GraphicsJNI::createBitmap(env, new SkBitmap(bitmap), isMutable,
253 static void Bitmap_destructor(JNIEnv* env, jobject, SkBitmap* bitmap) {
254 delete bitmap;
257 static void Bitmap_recycle(JNIEnv* env, jobject, SkBitmap* bitmap) {
258 bitmap->setPixels(NULL, NULL);
261 // These must match the int values in Bitmap.java
351 SkBitmap* bitmap = new SkBitmap; local
    [all...]
  /external/freetype/src/base/
ftbitmap.c 99 FT_Bitmap* bitmap,
111 width = bitmap->width;
112 height = bitmap->rows;
113 pitch = bitmap->pitch;
117 switch ( bitmap->pixel_mode )
151 FT_Byte* line = bitmap->buffer + ( bit_last >> 3 );
152 FT_Byte* end = bitmap->buffer + pitch;
176 if ( FT_QALLOC_MULT( buffer, new_pitch, bitmap->rows + ypixels ) )
179 if ( bitmap->pitch > 0 )
184 for ( i = 0; i < bitmap->rows; i++
622 FT_Bitmap bitmap; local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/picogui/
SDL_pgvideo.h 45 pghandle bitmap; member in struct:SDL_PrivateVideoData
  /external/skia/src/gl/
SkGLDevice_FBO.h 8 SkGLDevice_FBO(const SkBitmap& bitmap, bool offscreen);
  /external/webkit/WebCore/platform/brew/
ScreenBrew.cpp 51 IBitmap* bitmap = IDisplay_GetDestination(display); local
52 ASSERT(bitmap);
55 IBitmap_GetInfo(bitmap, &bitmapInfo, sizeof(AEEBitmapInfo));
61 IBitmap_Release(bitmap);
  /external/webkit/WebKit/android/plugins/
ANPSurface_npapi.h 33 /** Locks the surface from manipulation by other threads and provides a bitmap
35 bitmap will be written to. If the dirtyRect is NULL then the entire
37 will return true and the bitmap will be set to point to a valid bitmap.
38 If not the function will return false and the bitmap will be set to NULL.
40 bool (*lock)(JNIEnv* env, jobject surface, ANPBitmap* bitmap, ANPRectI* dirtyRect);
42 the surface is unlocked and the contents of the bitmap, specifically

Completed in 1813 milliseconds

1 2 3 4 5 6 7 8 91011>>