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

1234567891011>>

/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/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 Dconst-global-linkage.cpp13 const char* b2() { return z2; } function
/external/clang/test/CXX/class.access/class.protected/
H A Dp1-cxx11.cpp17 B b2 = b1; local
18 b1 = b2;
/external/openssh/openbsd-compat/
H A Dtimingsafe_bcmp.c24 timingsafe_bcmp(const void *b1, const void *b2, size_t n) argument
26 const unsigned char *p1 = b1, *p2 = b2;
/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/chrome/browser/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());
/external/v8/test/mjsunit/regress/
H A Dregress-753.js34 var obj = {a1: {b1: [1,2,3,4], b2: {c1: 1, c2: 2}},a2: 'a2'};
/external/clang/test/CXX/class/class.bit/
H A Dp2.cpp18 B b2(b);
19 B b3(static_cast<B&&>(b2));
/external/clang/test/SemaCXX/
H A Dzero-length-arrays.cpp24 Bar b2(b);
25 b = b2;
H A Dgoto.cpp5 void f(bool b1, bool b2) { argument
9 if (b2) {
12 } while (b2);
24 void f(bool b1, bool b2) { argument
28 if (b2) {
31 } while (b2);
/external/clang/test/SemaTemplate/
H A Dinstantiate-default-assignment-operator.cpp15 B b1, b2; local
16 b1 = b2;
H A Dinstantiation-default-3.cpp18 void test(B<int> *b1, B<float> *b2) { argument
20 b2->bar();
/external/compiler-rt/BlocksRuntime/tests/
H A Ddispatch_call_Block_with_release.c25 void (^b2)(void) = ^{ callsomething("hellow world\n", 0); }; // global block now
28 dispatch_call_Block_with_release2(Block_copy(b2));
/external/valgrind/main/none/tests/s390x/
H A Dopcodes.h29 #define RXY_RRRD(op1,r1,x2,b2,dl2,dh2,op2) \
31 ".long 0x" #b2 #dl2 #dh2 #op2 "\n\t"
66 #define RSY_RURD(op1,r1,r3,b2,dl2,dh2,op2) \
68 ".long 0x" #b2 #dl2 #dh2 #op2 "\n\t"
70 #define RSY_RRRD(op1,r1,r3,b2,dl2,dh2,op2) \
72 ".long 0x" #b2 #dl2 #dh2 #op2 "\n\t"
73 #define RSY_AARD(op1,r1,r3,b2,dl2,dh2,op2) \
75 ".long 0x" #b2 #dl2 #dh2 #op2 "\n\t"
78 #define RXY_FRRD(op1,r1,x2,b2,dl2,dh2,op2) \
80 ".long 0x" #b2 #dl
[all...]
/external/stlport/test/unit/
H A Dbitset_test.cpp39 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
[all...]
/external/dropbear/libtomcrypt/notes/etc/
H A Dsaferp_optimizer.c6 /* This is the "Armenian" Shuffle. It takes the input from b and stores it in b2 */
8 b2[0] = b[8]; b2[1] = b[11]; b2[2] = b[12]; b2[3] = b[15]; \
9 b2[4] = b[2]; b2[5] = b[1]; b2[6] = b[6]; b2[7] = b[5]; \
10 b2[
40 int b[16], b2[16], x, y, z; local
[all...]
/external/valgrind/main/none/tests/amd64/
H A Dasorep.c11 uintptr_t b1 = (uintptr_t) buf1, b2 = (uintptr_t) buf2; local
13 if (b1 > 0xffffffffULL || b2 > 0xffffffffULL)
17 b2 += 0xfff00000000ULL;
21 : "D" (b2), "S" (b1), "c" (0x100000004ULL)
32 : "D" (b2), "c" (0x100000003ULL)
42 : "S" (b2), "a" (2ULL));
51 : "D" (b2), "S" (b1), "c" (0x100000020ULL));
61 : "D" (b2), "c" (0x100000020ULL));
70 : "D" (b2), "c" (0x100000020ULL));
/external/clang/test/Index/
H A Dannotate-tokens-cxx0x.cpp13 bool b2 = __is_trivially_constructible(Integer, Float, Bool); local
/external/libffi/testsuite/libffi.call/
H A Dcls_9byte1.c19 struct cls_struct_9byte b2)
23 result.a = b1.a + b2.a;
24 result.b = b1.b + b2.b;
26 printf("%d %g %d %g: %d %g\n", b1.a, b1.b, b2.a, b2.b,
35 struct cls_struct_9byte b1, b2; local
38 b2 = *(struct cls_struct_9byte*)(args[1]);
40 *(cls_struct_9byte*)resp = cls_struct_9byte_fn(b1, b2);
18 cls_struct_9byte_fn(struct cls_struct_9byte b1, struct cls_struct_9byte b2) argument
H A Dcls_9byte2.c19 struct cls_struct_9byte b2)
23 result.a = b1.a + b2.a;
24 result.b = b1.b + b2.b;
26 printf("%g %d %g %d: %g %d\n", b1.a, b1.b, b2.a, b2.b,
35 struct cls_struct_9byte b1, b2; local
38 b2 = *(struct cls_struct_9byte*)(args[1]);
40 *(cls_struct_9byte*)resp = cls_struct_9byte_fn(b1, b2);
18 cls_struct_9byte_fn(struct cls_struct_9byte b1, struct cls_struct_9byte b2) argument
/external/clang/test/CodeGen/
H A Dasm-variable.c10 register unsigned long long b2 asm("rdx");
17 b2 = a2;
23 : "r"(addr), "r" (b0), "r" (b1), "r" (b2), "r" (b3), "r" (b4), "r" (b5));
35 register double b2 asm("xmm2");
46 b2 = a2;
54 : "r"(addr), "x" (b0), "x" (b1), "x" (b2), "x" (b3), "x" (b4), "x" (b5), "x" (b6),

Completed in 1125 milliseconds

1234567891011>>