Searched refs:b0 (Results 1 - 25 of 176) sorted by relevance

12345678

/external/clang/test/SemaCXX/
H A Dwarn-string-conversion.cpp7 bool b0 = "hi"; // expected-warning{{implicit conversion turns string literal into bool: 'const char [3]' to 'bool'}} local
8 b0 = ""; // expected-warning{{implicit conversion turns string literal into bool: 'const char [1]' to 'bool'}}
9 b0 = 0 || ""; // expected-warning{{implicit conversion turns string literal into bool: 'const char [1]' to 'bool'}}
10 b0 = "" || 0; // expected-warning{{implicit conversion turns string literal into bool: 'const char [1]' to 'bool'}}
11 b0 = 0 && "";
12 b0 = "" && 0;
/external/eigen/test/eigen2/
H A Deigen2_alignedbox.cpp30 BoxType b0(dim);
34 b0.extend(p0);
35 b0.extend(p1);
36 VERIFY(b0.contains(p0*s1+(Scalar(1)-s1)*p1));
37 VERIFY(!b0.contains(p0 + (1+s1)*(p1-p0)));
39 (b2 = b0).extend(b1);
40 VERIFY(b2.contains(b0));
42 VERIFY_IS_APPROX(b2.clamp(b0), b0);
47 AlignedBox<OtherScalar,Dim> hp1f = b0
[all...]
/external/llvm/test/MC/AArch64/
H A Dneon-across.s33 smaxv b0, v1.8b
34 smaxv b0, v1.16b
39 // CHECK: smaxv b0, v1.8b // encoding: [0x20,0xa8,0x30,0x0e]
40 // CHECK: smaxv b0, v1.16b // encoding: [0x20,0xa8,0x30,0x4e]
45 sminv b0, v1.8b
46 sminv b0, v1.16b
51 // CHECK: sminv b0, v1.8b // encoding: [0x20,0xa8,0x31,0x0e]
52 // CHECK: sminv b0, v1.16b // encoding: [0x20,0xa8,0x31,0x4e]
57 umaxv b0, v1.8b
58 umaxv b0, v
[all...]
H A Dneon-scalar-saturating-rounding-shift.s6 sqrshl b0, b1, b2
11 // CHECK: sqrshl b0, b1, b2 // encoding: [0x20,0x5c,0x22,0x5e]
19 uqrshl b0, b1, b2
24 // CHECK: uqrshl b0, b1, b2 // encoding: [0x20,0x5c,0x22,0x7e]
H A Dneon-scalar-saturating-shift.s6 sqshl b0, b1, b2
11 // CHECK: sqshl b0, b1, b2 // encoding: [0x20,0x4c,0x22,0x5e]
19 uqshl b0, b1, b2
24 // CHECK: uqshl b0, b1, b2 // encoding: [0x20,0x4c,0x22,0x7e]
H A Dneon-scalar-saturating-add-sub.s6 sqadd b0, b1, b2
11 // CHECK: sqadd b0, b1, b2 // encoding: [0x20,0x0c,0x22,0x5e]
19 uqadd b0, b1, b2
24 // CHECK: uqadd b0, b1, b2 // encoding: [0x20,0x0c,0x22,0x7e]
32 sqsub b0, b1, b2
37 // CHECK: sqsub b0, b1, b2 // encoding: [0x20,0x2c,0x22,0x5e]
45 uqsub b0, b1, b2
50 // CHECK: uqsub b0, b1, b2 // encoding: [0x20,0x2c,0x22,0x7e]
H A Dneon-scalar-dup.s6 dup b0, v0.b[15]
18 // CHECK: {{dup|mov}} b0, v0.b[15] // encoding: [0x00,0x04,0x1f,0x5e]
33 mov b0, v0.b[15]
45 // CHECK: {{dup|mov}} b0, v0.b[15] // encoding: [0x00,0x04,0x1f,0x5e]
/external/clang/test/CodeGen/
H A Dasm-variable.c8 register unsigned long long b0 asm("rdi");
15 b0 = a0;
23 : "r"(addr), "r" (b0), "r" (b1), "r" (b2), "r" (b3), "r" (b4), "r" (b5));
33 register double b0 asm("xmm0");
44 b0 = a0;
54 : "r"(addr), "x" (b0), "x" (b1), "x" (b2), "x" (b3), "x" (b4), "x" (b5), "x" (b6),
/external/jetty/src/java/org/eclipse/jetty/util/
H A DB64Code.java116 byte b0, b1, b2;
120 b0=b[bi++];
123 c[ci++]=__rfc1421alphabet[(b0>>>2)&0x3f];
124 c[ci++]=__rfc1421alphabet[(b0<<4)&0x3f|(b1>>>4)&0x0f];
134 b0=b[bi++];
136 c[ci++]=__rfc1421alphabet[(b0>>>2)&0x3f];
137 c[ci++]=__rfc1421alphabet[(b0<<4)&0x3f|(b1>>>4)&0x0f];
143 b0=b[bi++];
144 c[ci++]=__rfc1421alphabet[(b0>>>2)&0x3f];
145 c[ci++]=__rfc1421alphabet[(b0<<
[all...]
/external/google-breakpad/src/testing/gtest/test/
H A Dgtest-linked_ptr_test.cc103 linked_ptr<B> b0(new B);
104 linked_ptr<A> a6(b0);
105 ASSERT_TRUE(b0 == a6);
106 ASSERT_TRUE(a6 == b0);
107 ASSERT_TRUE(b0 != NULL);
108 a5 = b0;
109 a5 = b0;
114 b0->Use();
115 (*b0).Use();
116 b0
[all...]
/external/gtest/test/
H A Dgtest-linked_ptr_test.cc103 linked_ptr<B> b0(new B);
104 linked_ptr<A> a6(b0);
105 ASSERT_TRUE(b0 == a6);
106 ASSERT_TRUE(a6 == b0);
107 ASSERT_TRUE(b0 != NULL);
108 a5 = b0;
109 a5 = b0;
114 b0->Use();
115 (*b0).Use();
116 b0
[all...]
/external/protobuf/gtest/test/
H A Dgtest-linked_ptr_test.cc102 linked_ptr<B> b0(new B);
103 linked_ptr<A> a6(b0);
104 ASSERT_TRUE(b0 == a6);
105 ASSERT_TRUE(a6 == b0);
106 ASSERT_TRUE(b0 != NULL);
107 a5 = b0;
108 a5 = b0;
113 b0->Use();
114 (*b0).Use();
115 b0
[all...]
/external/libpcap/
H A Dgencode.c552 * Merge the lists in b0 and b1, using the 'sense' field to indicate
556 merge(b0, b1)
557 struct block *b0, *b1;
559 register struct block **p = &b0;
611 gen_and(b0, b1)
612 struct block *b0, *b1;
614 backpatch(b0, b1->head);
615 b0->sense = !b0->sense;
617 merge(b1, b0);
1741 struct block *b0, *b1; local
1949 struct block *b0, *b1; local
2903 struct block *b0, *b1, *b2; local
3556 struct block *b0, *b1; local
3599 struct block *b0, *b1; local
3650 register struct block *b0, *b1; local
3708 struct block *b0, *b1; local
3766 register struct block *b0, *b1; local
3825 register struct block *b0, *b1, *b2; local
4251 register struct block *b0, *b1; local
4324 struct block *b0, *b1, *b2, *tmp; local
4399 struct block *b0, *b1; local
4432 struct block *b0, *b1; local
4687 struct block *b0, *b1, *tmp; local
4762 struct block *b0; local
5044 struct block *b0, *b1, *tmp; local
5087 struct block *b0, *b1, *tmp; local
5134 struct block *b0, *b1, *tmp; local
5176 struct block *b0, *b1, *tmp; local
5236 struct block *b0, *b1, *tmp; local
5279 struct block *b0, *b1, *tmp; local
5338 struct block *b0, *b1, *tmp; local
5380 struct block *b0, *b1, *tmp; local
5767 struct block *b0, *b1; local
5804 struct block *b0, *b1; local
7151 struct block *b0, *b1, *b2; local
7232 register struct block *b0; local
7247 register struct block *b0, *b1, *b2; local
7448 register struct block *b0; local
7573 struct block *b0; local
7595 struct block *b0; local
7617 struct block *b0; local
7633 struct block *b0; local
7649 struct block *b0; local
7665 struct block *b0; local
7730 struct block *b0; local
7753 struct block *b0; local
7806 register struct block *b0, *b1; local
7864 struct block *b0, *b1; local
7948 struct block *b0,*b1; local
8026 struct block *b0, *b1; local
8105 struct block *b0; local
8160 struct block *b0, *b1; local
8269 struct block *b0, *b1; local
8340 struct block *b0; local
8476 struct block *b0, *b1; local
[all...]
/external/clang/test/Sema/
H A Dtentative-decls.c64 static int b0; variable
67 static int b0 = 5; variable
/external/eigen/test/
H A Dgeo_alignedbox.cpp40 BoxType b0(dim);
48 b0.extend(p0);
49 b0.extend(p1);
50 VERIFY(b0.contains(p0*s1+(Scalar(1)-s1)*p1));
52 (b2 = b0).extend(b1);
53 VERIFY(b2.contains(b0));
55 VERIFY_IS_APPROX(b2.clamp(b0), b0);
68 VectorType r = b0.sample();
69 VERIFY(b0
[all...]
/external/ltrace/testsuite/ltrace.torture/
H A Dia64-sigill.s19 mov r32 = b0
24 br.call.sptk.many b0 = printf#
36 mov b0 = r32
39 br.ret.sptk.many b0
/external/clang/test/CXX/special/class.inhctor/
H A Dp8.cpp15 constexpr B b0{0};
20 static_assert(a0.rval && !a1.rval && b0.rval && !b1.rval, "");
H A Dp4.cpp22 B b0{X<0>{}};
32 B b0{X<0>{}};
69 constexpr B b0(0, 0.0f); // ok, constexpr
/external/v8/test/cctest/compiler/
H A Dtest-instruction.cc133 BasicBlock* b0 = R.schedule.start(); local
138 R.schedule.AddGoto(b0, b1);
144 R.code->StartBlock(b0);
145 int i0 = R.NewInstr(b0);
146 int i1 = R.NewInstr(b0);
147 R.code->EndBlock(b0);
162 CHECK_EQ(b0, R.code->GetBasicBlock(i0));
163 CHECK_EQ(b0, R.code->GetBasicBlock(i1));
174 CHECK_EQ(b0, R.code->GetBasicBlock(b0
191 BasicBlock* b0 = R.schedule.start(); local
216 BasicBlock* b0 = R.schedule.start(); local
259 BasicBlock* b0 = R.schedule.start(); local
[all...]
/external/lz4/examples/
H A DHCStreaming_ringBuffer.c140 char b0[65536]; local
142 const size_t r0 = fread(b0, 1, sizeof(b0), f0);
155 if (memcmp(b0, b1, r0))
158 while ((errorPos < r0) && (b0[errorPos]==b1[errorPos])) errorPos++;
163 result += sizeof(b0);
/external/llvm/lib/CodeGen/
H A DEdgeBundles.cpp60 unsigned b0 = getBundle(i, 0); local
62 Blocks[b0].push_back(i);
63 if (b1 != b0)
/external/clang/test/CodeGenCXX/
H A Darm64.cpp52 const std::type_info &b0 = typeid(B); member in namespace:test2
/external/clang/test/SemaTemplate/
H A Dinstantiate-member-initializers.cpp20 B<int> b0; // expected-note {{in instantiation of member function 'B<int>::B' requested here}} variable
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tex/
H A Dd3d11tex.hlsl61 float4 b0 = tex1.Sample(samp0, input.texcoord);
63 float4 b = b0 * input.factors.z + b1 * input.factors.x;
/external/lzma/CPP/7zip/Compress/
H A DByteSwap.cpp54 Byte b0 = data[i]; local
59 data[i + 3] = b0;

Completed in 730 milliseconds

12345678