Home
last modified time | relevance | path

Searched refs:b1 (Results 1 – 6 of 6) sorted by relevance

/development/ndk/platforms/android-21/include/
Dstrings.h47 #define bcopy(b1, b2, len) \ argument
48 (void)(__builtin___memmove_chk((b2), (b1), (len), __bos0(b2)))
52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
/development/ndk/platforms/android-9/include/
Dstrings.h46 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len))) argument
/development/tools/axl/
Dsingletonmixin.py139 b1 = B.getInstance('arg1 value', 'arg2 value')
141 self.assertEquals(b1.arg1, 'arg1 value')
142 self.assertEquals(b1.arg2, 'arg2 value')
143 self.assertEquals(id(b1), id(b2))
192 b1 = B.getInstance('arg1 value', 'arg2 value')
/development/ndk/platforms/android-9/include/linux/
Dbio.h143 #define BIOVEC_SEG_BOUNDARY(q, b1, b2) __BIO_SEG_BOUNDARY(bvec_to_phys((b1)), bvec_to_phys((b2)) … argument
144 #define BIO_SEG_BOUNDARY(q, b1, b2) BIOVEC_SEG_BOUNDARY((q), __BVEC_END((b1)), __BVEC_START((b2))) argument
/development/samples/ApiDemos/src/com/example/android/apis/view/
DGameView.java494 int a1, int r1, int g1, int b1,
497 blend(alpha, g1, g2), blend(alpha, b1, b2));
/development/samples/ControllerSample/src/com/example/controllersample/
DGameView.java459 int a1, int r1, int g1, int b1, in setPaintARGBBlend() argument
462 blend(alpha, g1, g2), blend(alpha, b1, b2)); in setPaintARGBBlend()