HomeSort by relevance Sort by last modified time
    Searched refs:bm0 (Results 1 - 3 of 3) sorted by null

  /external/valgrind/main/drd/
drd_bitmap.h 158 * Compute index into bm0[] array.
237 /** Set the bit corresponding to address a in bitmap bm0. */
238 static __inline__ void bm0_set(UWord* bm0, const UWord a)
243 bm0[uword_msb(a)] |= (UWord)1 << uword_lsb(a);
249 * in bitmap bm0.
251 static __inline__ void bm0_set_range(UWord* bm0,
260 bm0[uword_msb(a)]
264 /** Clear the bit corresponding to address a in bitmap bm0. */
265 static __inline__ void bm0_clear(UWord* bm0, const UWord a)
270 bm0[uword_msb(a)] &= ~((UWord)1 << uword_lsb(a))
    [all...]
  /frameworks/base/core/jni/android/graphics/
Bitmap.cpp 586 static bool Bitmap_sameAs(JNIEnv* env, jobject, const SkBitmap* bm0,
588 if (bm0->width() != bm1->width() ||
589 bm0->height() != bm1->height() ||
590 bm0->config() != bm1->config()) {
594 SkAutoLockPixels alp0(*bm0);
598 if (NULL == bm0->getPixels() || NULL == bm1->getPixels()) {
602 if (bm0->config() == SkBitmap::kIndex8_Config) {
603 SkColorTable* ct0 = bm0->getColorTable();
623 const int h = bm0->height();
624 const size_t size = bm0->width() * bm0->bytesPerPixel();
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java 469 Bitmap bm0 = Bitmap.createBitmap(100, 200, Bitmap.Config.ALPHA_8); local
474 assertEquals(Bitmap.Config.ALPHA_8, bm0.getConfig());
542 Bitmap bm0 = Bitmap.createBitmap(100, 200, Bitmap.Config.ALPHA_8); local
547 assertEquals(100, bm0.getRowBytes());

Completed in 31 milliseconds