HomeSort by relevance Sort by last modified time
    Searched defs:b2 (Results 1 - 25 of 292) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
for.c 5 void b2 (void) { for (void f (void);;); } // expected-error {{declaration of non-local variable}} function
assign.c 12 const int b2[10]; local
14 b2[4] = 1; // expected-error {{read-only variable is not assignable}}
  /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/valgrind/main/memcheck/tests/
clo_redzone.c 7 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/valgrind/main/none/tests/
coolo_strlen.c 6 char *b2 = strdup(strcat(buffer, "THis is a very long strings")); local
7 int len = strlen(b2);
bug129866.c 28 char *a1, *b1, *a2 __attribute__((unused)), *b2 __attribute__((unused)); local
33 b2 = touch_realloc(b1, 200000) ;
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.dynamic/alloc.errors/bad.alloc/
bad_alloc.pass.cpp 23 std::bad_alloc b2 = b; local
24 b2 = b;
25 const char* w = b2.what();
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.dynamic/alloc.errors/new.badlength/
bad_array_new_length.pass.cpp 23 std::bad_array_new_length b2 = b; local
24 b2 = b;
25 const char* w = b2.what();
  /ndk/sources/cxx-stl/llvm-libc++/test/language.support/support.exception/bad.exception/
bad_exception.pass.cpp 23 std::bad_exception b2 = b; local
24 b2 = b;
25 const char* w = b2.what();
  /ndk/sources/cxx-stl/llvm-libc++/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++/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++/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();
  /external/clang/test/CodeGenCXX/
2009-04-23-bool2.cpp 6 bool b2 : 7; member in struct:F
const-global-linkage.cpp 17 const char* b2() { return z2; } function
  /external/chromium/chrome/browser/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());
  /ndk/sources/cxx-stl/llvm-libc++/test/numerics/numarray/template.mask.array/mask.array.assign/
mask_array.pass.cpp 27 bool b2[N2] = {true, false, true, true, local
32 std::valarray<bool> vb2(b2, N2);
  /cts/tools/vm-tests-tf/src/dot/junit/verify/b2/d/
T_b2_1.java 17 package dot.junit.verify.b2.d;
  /external/chromium/base/debug/
leak_tracker_unittest.cc 34 scoped_ptr<ClassB> b2(new ClassB);
50 ClassB b2; local
  /external/clang/test/CXX/class.access/class.protected/
p1-cxx11.cpp 18 B b2 = b1; local
19 b1 = b2;
  /external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.noreturn/
p1.cpp 11 [[noreturn]] [[noreturn]] void b2() { throw 0; } // ok function
18 [[noreturn]] int e() { b2(); } // ok
  /external/dropbear/libtomcrypt/notes/etc/
saferp_optimizer.c 6 /* 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[8] = b[10]; b2[9] = b[9]; b2[10] = b[14]; b2[11] = b[13];
40 int b[16], b2[16], x, y, z; local
    [all...]
  /external/valgrind/main/none/tests/amd64/
asorep.c 11 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));
  /ndk/sources/cxx-stl/llvm-libc++/test/atomics/atomics.types.operations/atomics.types.operations.req/
atomic_is_lock_free.pass.cpp 30 bool b2 = std::atomic_is_lock_free(&cvt); local
  /ndk/tests/device/test-stlport_shared-exception/jni/
dyncast7.cpp 16 const B& b2 = dynamic_cast<B&>(a); local
  /ndk/tests/device/test-stlport_static-exception/jni/
dyncast7.cpp 16 const B& b2 = dynamic_cast<B&>(a); local

Completed in 403 milliseconds

1 2 3 4 5 6 7 8 91011>>