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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Modules/Inputs/merge-template-members/
b2.h 6 N::A<int> b2; variable
  /external/clang/test/CodeGen/
arm64-be-bitfield.c 3 struct bt3 { signed b2:10; signed b3:10; } b16; member in struct:bt3
11 return bp11.b2;
ppc64-inline-asm.c 3 _Bool test_wc_i1(_Bool b1, _Bool b2) {
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) {
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) {
21 asm("crand %0, %1, %2" : "=wc"(o) : "wc"(b1), "wc"(b2) : )
    [all...]
arm-bitfield-alignment.c 7 int b2 : 1; member in struct:T
  /external/cblas/src/
cblas_drotmg.c 12 const double b2, double *p)
14 F77_drotmg(d1,d2,b1,&b2,p);
cblas_srotmg.c 12 const float b2, float *p)
14 F77_srotmg(d1,d2,b1,&b2,p);
  /external/clang/test/Sema/
assign.c 15 const int b2[10]; local
17 b2[4] = 1; // expected-error {{read-only variable is not assignable}}
for.c 5 void b2 (void) { for (void f (void);;); } // expected-error {{declaration of non-local variable}} function
  /art/test/660-checker-simd-sad-byte/src/
Main.java 24 private static byte sadByte2Byte(byte[] b1, byte[] b2) {
25 int min_length = Math.min(b1.length, b2.length);
28 sad += Math.abs(b1[i] - b2[i]);
33 private static byte sadByte2ByteAlt(byte[] b1, byte[] b2) {
34 int min_length = Math.min(b1.length, b2.length);
38 byte p = b2[i];
44 private static byte sadByte2ByteAlt2(byte[] b1, byte[] b2) {
45 int min_length = Math.min(b1.length, b2.length);
49 byte p = b2[i];
57 private static short sadByte2Short(byte[] b1, byte[] b2) {
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/verify/b2/d/
T_b2_1.java 17 package dot.junit.verify.b2.d;
  /external/clang/test/CodeGenCXX/
2009-04-23-bool2.cpp 6 bool b2 : 7; member in struct:F
move-assignment.cpp 17 B b1, b2; local
18 b1 = static_cast<B&&>(b2);
const-global-linkage.cpp 17 const char* b2() { return z2; } function
debug-info-anon-namespace.cpp 18 int *b2 = &a2; variable
  /external/llvm/test/MC/X86/
expand-var.s 20 .weak b2
21 b2 = a2 define
22 c2 = b2 - a2
23 d2 = b2 - a2 + 42
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/X86/
expand-var.s 20 .weak b2
21 b2 = a2 define
22 c2 = b2 - a2
23 d2 = b2 - a2 + 42
  /external/clang/test/CXX/class.access/class.protected/
p1-cxx11.cpp 18 B b2 = b1; local
19 b1 = b2;
  /external/clang/test/SemaCXX/
cxx0x-noexcept-expression.cpp 8 bool b2 = noexcept(f(0)); local
17 bool b2 = noexcept(this->g(0)); local
  /external/openssh/openbsd-compat/
timingsafe_bcmp.c 24 timingsafe_bcmp(const void *b1, const void *b2, size_t n)
26 const unsigned char *p1 = b1, *p2 = b2;
  /external/libcxx/test/std/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();
  /external/libcxx/test/std/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();
  /external/libcxx/test/std/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();
  /external/libcxx/test/std/language.support/support.exception/exception/
exception.pass.cpp 21 std::exception b2 = b; local
22 b2 = b;
23 const char* w = b2.what();
  /external/libcxx/test/std/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();
  /external/libcxx/test/std/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();

Completed in 723 milliseconds

1 2 3 4 5 6 7 8 91011>>