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

12345678910

/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]
/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/chromium_org/base/memory/
H A Dlinked_ptr_unittest.cc61 linked_ptr<B> b0(new B);
62 linked_ptr<A> a6(b0);
63 ASSERT_TRUE(b0 == a6);
64 ASSERT_TRUE(a6 == b0);
65 ASSERT_TRUE(b0 != NULL);
66 a5 = b0;
67 a5 = b0;
72 b0->Use();
73 (*b0).Use();
74 b0
[all...]
/external/chromium_org/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/qemu/util/
H A Dhost-utils.c45 LL rl, rm, rn, rh, a0, b0; local
49 b0.ll = b;
51 rl.ll = (uint64_t)a0.l.low * b0.l.low;
52 rm.ll = (uint64_t)a0.l.low * b0.l.high;
53 rn.ll = (uint64_t)a0.l.high * b0.l.low;
54 rh.ll = (uint64_t)a0.l.high * b0.l.high;
/external/clang/test/Sema/
H A Dtentative-decls.c64 static int b0; variable
67 static int b0 = 5; variable
/external/srec/srec/clib/
H A Dvoicing.c65 chan->b0 = SHIFT_UP(enval, 8);
71 if (chan->b0 > SHIFT_UP(enval, 8))
73 chan->b0 = SHIFT_UP(enval, 8);
77 chan->b0 += B0_RATE2;
79 chan->b0 += B0_RATE1;
85 if ((enval - chan->quiet_margin) < (chan->b0 >> 8))
97 MAX(chan->s0 - chan->b0 - DYNAMIC_RANGE, 0), 2))) >> 8;
138 chan->b0 / 256.0, chan->b1 / 256.0,
/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/chromium_org/third_party/WebKit/Source/platform/audio/
H A DBiquad.cpp95 double b0 = m_b0;
104 float y = b0*x + b1*x1 + b2*x2 - a1*y1 - a2*y2;
122 m_b0 = b0;
230 double b0 = 2 * alpha;
236 setNormalizedCoefficients(b0, b1, b2, 1, a1, a2);
266 double b0 = 2 * alpha;
272 setNormalizedCoefficients(b0, b1, b2, 1, a1, a2);
283 void Biquad::setNormalizedCoefficients(double b0, double b1, double b2, double a0, double a1, double a2)
287 m_b0 = b0 * a0Inverse;
327 double b0
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/unicode/
H A DUTF8.cpp37 inline int inlineUTF8SequenceLengthNonASCII(char b0) argument
39 if ((b0 & 0xC0) != 0xC0)
41 if ((b0 & 0xE0) == 0xC0)
43 if ((b0 & 0xF0) == 0xE0)
45 if ((b0 & 0xF8) == 0xF0)
50 inline int inlineUTF8SequenceLength(char b0) argument
52 return isASCII(b0) ? 1 : inlineUTF8SequenceLengthNonASCII(b0);
55 int UTF8SequenceLength(char b0) argument
57 return isASCII(b0)
63 const unsigned char b0 = sequence[0]; local
[all...]
/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/chromium_org/base/third_party/dmg_fp/
H A Dg_fmt.cc35 char *b0, *s0, *se; local
37 b0 = b;
99 return b0;
/external/chromium_org/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/chromium_org/third_party/skia/experimental/Intersection/
H A DLineIntersection.cpp95 double b0 = bPtr[0]; local
98 // e.g., if ((a0 - b0) * (a0 - a1) < 0 || abs(a0 - b0) > abs(a0 - a1))
102 if (!between(b0, a0, b1)) {
107 double at0 = (a0 - b0) / aDenom;
115 double bDenom = b0 - b1;
120 i.fT[1][bIn] = SkTMax(SkTMin((b0 - a0) / bDenom, 1.0), 0.0);
121 i.fT[1][!bIn] = SkTMax(SkTMin((b0 - a1) / bDenom, 1.0), 0.0);
207 double b0 = flipped ? right : left; local
210 double at0 = (a0 - b0) / (a
296 double b0 = flipped ? bottom : top; local
[all...]
/external/skia/experimental/Intersection/
H A DLineIntersection.cpp95 double b0 = bPtr[0]; local
98 // e.g., if ((a0 - b0) * (a0 - a1) < 0 || abs(a0 - b0) > abs(a0 - a1))
102 if (!between(b0, a0, b1)) {
107 double at0 = (a0 - b0) / aDenom;
115 double bDenom = b0 - b1;
120 i.fT[1][bIn] = SkTMax(SkTMin((b0 - a0) / bDenom, 1.0), 0.0);
121 i.fT[1][!bIn] = SkTMax(SkTMin((b0 - a1) / bDenom, 1.0), 0.0);
207 double b0 = flipped ? right : left; local
210 double at0 = (a0 - b0) / (a
296 double b0 = flipped ? bottom : top; local
[all...]

Completed in 452 milliseconds

12345678910