Searched refs:b2 (Results 1 - 25 of 535) sorted by relevance

1234567891011>>

/external/valgrind/main/memcheck/tests/
H A Dclo_redzone_default.stderr.exp1 b1 0x........ b2 0x........
H A Dclo_redzone.c7 char *b2 = malloc (128); local
8 fprintf (stderr, "b1 %p b2 %p\n", b1, b2);
10 // Try to land in b2 from b1, causing no error
13 // We need to choose a value which lands in b2
/external/clang/test/CodeGen/
H A Darm64-be-bitfield.c3 struct bt3 { signed b2:10; signed b3:10; } b16; member in struct:bt3
8 return bp11.b2;
H A Dppc64-inline-asm.c3 _Bool test_wc_i1(_Bool b1, _Bool b2) { argument
5 asm("crand %0, %1, %2" : "=wc"(o) : "wc"(b1), "wc"(b2) : );
7 // CHECK-LABEL: define zeroext i1 @test_wc_i1(i1 zeroext %b1, i1 zeroext %b2)
8 // CHECK: call i8 asm "crand $0, $1, $2", "=^wc,^wc,^wc"(i1 %b1, i1 %b2)
11 int test_wc_i32(int b1, int b2) { argument
13 asm("crand %0, %1, %2" : "=wc"(o) : "wc"(b1), "wc"(b2) : );
15 // CHECK-LABEL: signext i32 @test_wc_i32(i32 signext %b1, i32 signext %b2)
16 // CHECK: call i32 asm "crand $0, $1, $2", "=^wc,^wc,^wc"(i32 %b1, i32 %b2)
19 unsigned char test_wc_i8(unsigned char b1, unsigned char b2) { argument
21 asm("crand %0, %1, %2" : "=wc"(o) : "wc"(b1), "wc"(b2)
[all...]
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-365172-2.js7 var b1 = {d: 1}; var b2 = {d: 2};
11 b2.d = 4.2;
12 f2.b = b2;
H A Dregress-365172-1.js7 var b1 = {d: 1}; var b2 = {d: 2};
11 b2.d = 4.2;
12 f2.b = b2;
/external/clang/test/Sema/
H A Dassign.c12 const int b2[10]; local
14 b2[4] = 1; // expected-error {{read-only variable is not assignable}}
H A Dfor.c5 void b2 (void) { for (void f (void);;); } // expected-error {{declaration of non-local variable}} function
/external/valgrind/main/none/tests/
H A Dcoolo_strlen.c6 char *b2 = strdup(strcat(buffer, "THis is a very long strings")); local
7 int len = strlen(b2);
/external/chromium_org/base/win/
H A Dscoped_bstr_unittest.cc26 ScopedBstr b2; local
27 b.Swap(b2);
28 EXPECT_TRUE(b2 == NULL);
40 ScopedBstr b2; local
41 b1.Swap(b2);
42 EXPECT_EQ(test1_len, b2.Length());
44 EXPECT_EQ(0, lstrcmp(b2, kTestString1));
45 BSTR tmp = b2.Release();
48 EXPECT_TRUE(b2 == NULL);
51 GiveMeABstr(b2
[all...]
/external/clang/test/CodeGenCXX/
H A D2009-04-23-bool2.cpp6 bool b2 : 7; member in struct:F
H A Dmove-assignment.cpp17 B b1, b2; local
18 b1 = static_cast<B&&>(b2);
H A Dconst-global-linkage.cpp17 const char* b2() { return z2; } function
/external/clang/test/CXX/class.access/class.protected/
H A Dp1-cxx11.cpp18 B b2 = b1; local
19 b1 = b2;
/external/libcxx/test/language.support/support.dynamic/alloc.errors/bad.alloc/
H A Dbad_alloc.pass.cpp23 std::bad_alloc b2 = b; local
24 b2 = b;
25 const char* w = b2.what();
/external/libcxx/test/language.support/support.dynamic/alloc.errors/new.badlength/
H A Dbad_array_length.pass.cpp24 std::bad_array_length b2 = b; local
25 b2 = b;
26 const char* w = b2.what();
H A Dbad_array_new_length.pass.cpp23 std::bad_array_new_length b2 = b; local
24 b2 = b;
25 const char* w = b2.what();
/external/libcxx/test/language.support/support.exception/bad.exception/
H A Dbad_exception.pass.cpp23 std::bad_exception b2 = b; local
24 b2 = b;
25 const char* w = b2.what();
/external/libcxx/test/language.support/support.exception/exception/
H A Dexception.pass.cpp21 std::exception b2 = b; local
22 b2 = b;
23 const char* w = b2.what();
/external/libcxx/test/language.support/support.rtti/bad.cast/
H A Dbad_cast.pass.cpp23 std::bad_cast b2 = b; local
24 b2 = b;
25 const char* w = b2.what();
/external/libcxx/test/language.support/support.rtti/bad.typeid/
H A Dbad_typeid.pass.cpp23 std::bad_typeid b2 = b; local
24 b2 = b;
25 const char* w = b2.what();
/external/chromium_org/third_party/sfntly/cpp/src/test/
H A Dfile_io_test.cc49 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
111 ByteVector b2; local
[all...]
/external/sfntly/cpp/src/test/
H A Dfile_io_test.cc49 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
111 ByteVector b2; local
[all...]
/external/libnfc-nxp/Linux_x86/
H A DphOsalNfc_Utils.c41 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/
H A Dprotobuf_unittest.cc20 sync_pb::UnknownFieldsTestB b2; local
30 ASSERT_TRUE(b2.ParseFromString(serialized2));
31 ASSERT_TRUE(b2.foo());
32 ASSERT_TRUE(b2.bar());

Completed in 895 milliseconds

1234567891011>>