Searched defs:b2 (Results 1 - 25 of 387) sorted by relevance

1234567891011>>

/external/clang/test/Modules/Inputs/merge-template-members/
H A Db2.h6 N::A<int> b2; variable
/external/clang/test/CodeGenCXX/
H A Dms-novtable.cpp20 struct B2 : virtual A1 {} b2; variable in typeref:struct:B2
H A D2009-04-23-bool2.cpp6 bool b2 : 7; member in struct:F
H A Ddebug-info-anon-namespace.cpp18 int *b2 = &a2; variable
/external/clang/test/Sema/
H A Dfor.c5 void b2 (void) { for (void f (void);;); } // expected-error {{declaration of non-local variable}} function
H A Dassign.c15 const int b2[10]; local
17 b2[4] = 1; // expected-error {{read-only variable is not assignable}}
/external/clang/test/SemaCXX/
H A Dwarn-memsize-comparison.cpp18 char b1[80], b2[80]; local
25 if (memmove(b1, b2, sizeof(b1) == 0)) {} // \
29 if (memmove(b1, b2, sizeof(b1)) == 0) {}
31 if (memcpy(b1, b2, sizeof(b1) < 0)) {} // \
35 if (memcpy(b1, b2, sizeof(b1)) < 0) {}
37 if (memcmp(b1, b2, sizeof(b1) <= 0)) {} // \
41 if (memcmp(b1, b2, sizeof(b1)) <= 0) {}
43 if (strncmp(b1, b2, sizeof(b1) > 0)) {} // \
47 if (strncmp(b1, b2, sizeof(b1)) > 0) {}
49 if (strncasecmp(b1, b2, sizeo
[all...]
H A Dcxx0x-noexcept-expression.cpp8 bool b2 = noexcept(f(0)); local
17 bool b2 = noexcept(this->g(0)); local
/external/libcxx/test/libcxx/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();
/external/libcxx/test/std/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/std/language.support/support.dynamic/alloc.errors/new.badlength/
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/std/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/std/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/std/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/std/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/valgrind/memcheck/tests/
H A Dclo_redzone.c8 char *b2 = malloc (128); local
9 fprintf (stderr, "b1 %#" PRIxPTR " b2 %#" PRIxPTR "\n",
10 (uintptr_t)b1, (uintptr_t)b2);
12 // Try to land in b2 from b1, causing no error
15 // We need to choose a value which lands in b2
/external/valgrind/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/clang/test/CodeGen/
H A Darm-bitfield-alignment.c7 int b2 : 1; member in struct:T
H A Darm64-be-bitfield.c3 struct bt3 { signed b2:10; signed b3:10; } b16; member in struct:bt3
11 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/clang/test/SemaTemplate/
H A Dinstantiation-default-3.cpp19 void test(B<int> *b1, B<float> *b2) { argument
21 b2->bar();
/external/cblas/src/
H A Dcblas_drotmg.c12 const double b2, double *p)
14 F77_drotmg(d1,d2,b1,&b2,p);
11 cblas_drotmg( double *d1, double *d2, double *b1, const double b2, double *p) argument
H A Dcblas_srotmg.c12 const float b2, float *p)
14 F77_srotmg(d1,d2,b1,&b2,p);
11 cblas_srotmg( float *d1, float *d2, float *b1, const float b2, float *p) argument
/external/clang/test/Profile/
H A Ddef-ctors.cpp8 Base(const struct Base &b2) {} argument
/external/compiler-rt/test/profile/Linux/
H A Dcoverage_ctors.cpp9 Base(const Base &b2) { argument
10 B = b2.B + 5;
12 Base(Base &&b2) { argument
13 B = b2.B + 10;

Completed in 603 milliseconds

1234567891011>>