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

  /external/valgrind/drd/
drd_bitmap.h 160 * Compute index into bm0[] array.
239 /** Set the bit corresponding to address a in bitmap bm0. */
240 static __inline__ void bm0_set(UWord* bm0, const UWord a)
245 bm0[uword_msb(a)] |= (UWord)1 << uword_lsb(a);
251 * in bitmap bm0.
253 static __inline__ void bm0_set_range(UWord* bm0,
262 bm0[uword_msb(a)]
266 /** Clear the bit corresponding to address a in bitmap bm0. */
267 static __inline__ void bm0_clear(UWord* bm0, const UWord a)
272 bm0[uword_msb(a)] &= ~((UWord)1 << uword_lsb(a))
    [all...]
  /frameworks/base/core/jni/android/graphics/
Bitmap.cpp 1283 SkBitmap bm0; local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapTest.java 405 Bitmap bm0 = Bitmap.createBitmap(100, 200, Bitmap.Config.ALPHA_8); local
410 assertEquals(Bitmap.Config.ALPHA_8, bm0.getConfig());
472 Bitmap bm0 = Bitmap.createBitmap(100, 200, Bitmap.Config.ALPHA_8); local
477 assertEquals(100, bm0.getRowBytes());
    [all...]

Completed in 162 milliseconds