HomeSort by relevance Sort by last modified time
    Searched refs:b2 (Results 26 - 50 of 872) sorted by null

12 3 4 5 6 7 8 91011>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.exception/exception/
exception.pass.cpp 21 std::exception b2 = b; local
22 b2 = b;
23 const char* w = b2.what();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.rtti/bad.cast/
bad_cast.pass.cpp 23 std::bad_cast b2 = b; local
24 b2 = b;
25 const char* w = b2.what();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.rtti/bad.typeid/
bad_typeid.pass.cpp 23 std::bad_typeid b2 = b; local
24 b2 = b;
25 const char* w = b2.what();
  /bionic/libc/include/
strings.h 47 #define bcopy(b1, b2, len) \
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-L/include/
strings.h 47 #define bcopy(b1, b2, len) \
48 (void)(__builtin___memmove_chk((b2), (b1), (len), __bos0(b2)))
52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
  /prebuilts/ndk/9/platforms/android-19/arch-arm64/usr/include/
strings.h 47 #define bcopy(b1, b2, len) \
48 (void)(__builtin___memmove_chk((b2), (b1), (len), __bos0(b2)))
52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
  /prebuilts/ndk/9/platforms/android-19/arch-mips64/usr/include/
strings.h 47 #define bcopy(b1, b2, len) \
48 (void)(__builtin___memmove_chk((b2), (b1), (len), __bos0(b2)))
52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
  /prebuilts/ndk/9/platforms/android-19/arch-x86_64/usr/include/
strings.h 47 #define bcopy(b1, b2, len) \
48 (void)(__builtin___memmove_chk((b2), (b1), (len), __bos0(b2)))
52 #define bcopy(b1, b2, len) (void)(__builtin_memmove((b2), (b1), (len)))
  /external/chromium_org/third_party/sfntly/cpp/src/test/
file_io_test.cc 49 ByteVector b2; local
50 is.Read(&b2, 0, length);
52 EXPECT_EQ(memcmp(&(b1[0]), &(b2[0]), length), 0);
53 b2.clear();
58 is.Read(&b2, 0, 100);
59 EXPECT_EQ(memcmp(&(b1[89]), &(b2[0]), 100), 0);
60 b2.clear();
64 is.Read(&b2, 0, 100);
65 EXPECT_EQ(memcmp(&(b1[100]), &(b2[0]), 100), 0);
66 b2.clear()
111 ByteVector b2; local
    [all...]
  /external/sfntly/cpp/src/test/
file_io_test.cc 49 ByteVector b2; local
50 is.Read(&b2, 0, length);
52 EXPECT_EQ(memcmp(&(b1[0]), &(b2[0]), length), 0);
53 b2.clear();
58 is.Read(&b2, 0, 100);
59 EXPECT_EQ(memcmp(&(b1[89]), &(b2[0]), 100), 0);
60 b2.clear();
64 is.Read(&b2, 0, 100);
65 EXPECT_EQ(memcmp(&(b1[100]), &(b2[0]), 100), 0);
66 b2.clear()
111 ByteVector b2; local
    [all...]
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
PackedStringTests.java 63 PackedString.Builder b2 = new PackedString.Builder(packedOut); local
64 assertEquals("value1", b2.get("tag1"));
65 assertEquals("value2", b2.get("tag2"));
66 assertEquals("value3", b2.get("tag3"));
67 assertEquals("value4", b2.get("tag4"));
68 assertNull(b2.get("tag100"));
96 PackedString.Builder b2 = new PackedString.Builder(packedOut); local
97 assertEquals("val1", b2.get("tag1"));
98 assertEquals("TWO", b2.get("tag2"));
99 assertEquals(null, b2.get("tag3"))
    [all...]
  /system/core/libutils/tests/
BitSet_test.cpp 29 BitSet32 b2; member in class:android::BitSet32Test
32 b2.clear();
39 b2.markBit(4);
41 BitSet32 tmp = b1 | b2;
45 EXPECT_TRUE((b2 | b1) == (b1 | b2));
47 b1 |= b2;
50 EXPECT_TRUE(b2.hasBit(4) && b2.count() == 1u);
57 BitSet32 tmp = b1 & b2;
151 BitSet64 b2; member in class:android::BitSet64Test
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
initoid.h 12 #define DEFINE_OID_2(name,b0,b1,b2) EXTERN_C const BYTE __based(__segname("_CODE")) name[] = { MAPI_PREFIX,b0,b1,b2 }
15 #define DEFINE_OID_3(name,b0,b1,b2,b3) EXTERN_C const BYTE __based(__segname("_CODE")) name[] = { MAPI_PREFIX,b0,b1,b2,b3 }
18 #define DEFINE_OID_4(name,b0,b1,b2,b3,b4) EXTERN_C const BYTE __based(__segname("_CODE")) name[] = { MAPI_PREFIX,b0,b1,b2,b3,b4 }
  /external/libnfc-nxp/Linux_x86/
phOsalNfc_Utils.c 41 int8_t *b2 =(int8_t *)dest; local
47 for(;((n>0)&&(diff==0));n--,b1++,b2++)
49 diff = *b1 - *b2;
  /external/chromium_org/sync/util/
protobuf_unittest.cc 20 sync_pb::UnknownFieldsTestB b2; local
30 ASSERT_TRUE(b2.ParseFromString(serialized2));
31 ASSERT_TRUE(b2.foo());
32 ASSERT_TRUE(b2.bar());
  /external/clang/test/CXX/class/class.bit/
p2.cpp 18 B b2(b);
19 B b3(static_cast<B&&>(b2));
  /external/clang/test/SemaCXX/
zero-length-arrays.cpp 25 Bar b2(b);
26 b = b2;
  /external/clang/test/SemaTemplate/
instantiate-default-assignment-operator.cpp 15 B b1, b2; local
16 b1 = b2;
instantiation-default-3.cpp 19 void test(B<int> *b1, B<float> *b2) {
21 b2->bar();
  /external/compiler-rt/test/BlocksRuntime/
dispatch_call_Block_with_release.c 25 void (^b2)(void) = ^{ callsomething("hellow world\n", 0); }; // global block now
28 dispatch_call_Block_with_release2(Block_copy(b2));
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/detail/
ice_and.hpp 17 template <bool b1, bool b2, bool b3 = true, bool b4 = true, bool b5 = true, bool b6 = true, bool b7 = true>
20 template <bool b1, bool b2, bool b3, bool b4, bool b5, bool b6, bool b7>
ice_or.hpp 16 template <bool b1, bool b2, bool b3 = false, bool b4 = false, bool b5 = false, bool b6 = false, bool b7 = false>
19 template <bool b1, bool b2, bool b3, bool b4, bool b5, bool b6, bool b7>
  /external/stlport/test/unit/
bitset_test.cpp 39 bitset<13U> b2(0x1111);
42 CPPUNIT_ASSERT(b2.size() == 13);
43 CPPUNIT_ASSERT(b2 == 0x1111);
46 b1 = b1 ^ (b2 << 2);
50 CPPUNIT_ASSERT(b2.count() == 4);
53 size_t __pos = b2._Find_first();
55 __pos = b2._Find_next(__pos);
57 __pos = b2._Find_next(__pos);
59 __pos = b2._Find_next(__pos);
61 __pos = b2._Find_next(__pos)
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
bitset_test.cpp 39 bitset<13U> b2(0x1111);
42 CPPUNIT_ASSERT(b2.size() == 13);
43 CPPUNIT_ASSERT(b2 == 0x1111);
46 b1 = b1 ^ (b2 << 2);
50 CPPUNIT_ASSERT(b2.count() == 4);
53 size_t __pos = b2._Find_first();
55 __pos = b2._Find_next(__pos);
57 __pos = b2._Find_next(__pos);
59 __pos = b2._Find_next(__pos);
61 __pos = b2._Find_next(__pos)
    [all...]
  /ndk/tests/device/test-stlport/unit/
bitset_test.cpp 39 bitset<13U> b2(0x1111);
42 CPPUNIT_ASSERT(b2.size() == 13);
43 CPPUNIT_ASSERT(b2 == 0x1111);
46 b1 = b1 ^ (b2 << 2);
50 CPPUNIT_ASSERT(b2.count() == 4);
53 size_t __pos = b2._Find_first();
55 __pos = b2._Find_next(__pos);
57 __pos = b2._Find_next(__pos);
59 __pos = b2._Find_next(__pos);
61 __pos = b2._Find_next(__pos)
    [all...]

Completed in 1068 milliseconds

12 3 4 5 6 7 8 91011>>