Searched refs:b1 (Results 76 - 100 of 526) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Ddeprecated.cpp65 Ctor b1, b2; member in namespace:DeprecatedCopy
66 void f() { b1 = b2; } // expected-note {{implicit copy assignment operator for 'Ctor' first required here}}
H A Dclass-base-member-init.cpp10 b1(0), // expected-note {{previous initialization is here}}
12 b1(0), // expected-error {{multiple initializations given for non-static member 'b1'}}
16 int b1; member in struct:D
H A Dundefined-internal.cpp264 void test2(B &b1, B &b2) { argument
265 b1(); // expected-note {{used here}}
266 !b1; // expected-note {{used here}}
267 b1 + b2; // expected-note {{used here}}
268 b1[0]; // expected-note {{used here}}
269 (void)b1->member; // expected-note {{used here}}
/external/sfntly/cpp/src/test/
H A Dtest_utils.h36 // @param b1 byte array 1
43 static bool Equals(ByteArray* b1,
55 static bool Equals(ByteArray* b1,
/external/valgrind/massif/tests/
H A Dalloc-fns.c11 void b1(int n) { b2(n); } function
28 b1(400);
/external/iproute2/tc/
H A Dq_netem.c506 SPRINT_BUF(b1);
556 fprintf(f, " delay %s", sprint_ticks(qopt.latency, b1));
559 fprintf(f, " %s", sprint_ticks(qopt.jitter, b1));
561 fprintf(f, " %s", sprint_percent(cor->delay_corr, b1));
566 fprintf(f, " loss %s", sprint_percent(qopt.loss, b1));
568 fprintf(f, " %s", sprint_percent(cor->loss_corr, b1));
572 fprintf(f, " loss state p13 %s", sprint_percent(gimodel->p13, b1));
573 fprintf(f, " p31 %s", sprint_percent(gimodel->p31, b1));
574 fprintf(f, " p32 %s", sprint_percent(gimodel->p32, b1));
575 fprintf(f, " p23 %s", sprint_percent(gimodel->p23, b1));
[all...]
H A Dq_drr.c87 SPRINT_BUF(b1);
96 sprint_size(rta_getattr_u32(tb[TCA_DRR_QUANTUM]), b1));
103 SPRINT_BUF(b1);
111 fprintf(f, " deficit %s ", sprint_size(x->deficit, b1));
H A Df_route.c137 SPRINT_BUF(b1);
150 SPRINT_BUF(b1);
151 fprintf(f, "flowid %s ", sprint_tc_classid(rta_getattr_u32(tb[TCA_ROUTE4_CLASSID]), b1));
154 fprintf(f, "to %s ", rtnl_rtrealm_n2a(rta_getattr_u32(tb[TCA_ROUTE4_TO]), b1, sizeof(b1)));
156 fprintf(f, "from %s ", rtnl_rtrealm_n2a(rta_getattr_u32(tb[TCA_ROUTE4_FROM]), b1, sizeof(b1)));
/external/clang/test/Modules/
H A Dnormal-module-map.cpp12 #include "b1.h"
16 return a1 + b1 + nested2;
/external/jetty/src/java/org/eclipse/jetty/io/
H A DByteArrayBuffer.java173 byte b1 = _bytes[i];
175 if (b1 != b2) return false;
206 byte b1 = _bytes[i];
208 if (b1 != b2)
210 if ('a' <= b1 && b1 <= 'z') b1 = (byte) (b1 - 'a' + 'A');
212 if (b1 != b2) return false;
220 byte b1
[all...]
/external/clang/test/CXX/special/class.inhctor/
H A Dp4.cpp23 B b1{X<1>{}}; // expected-error {{calling a protected constructor}}
33 B b1{X<1>{}};
70 B b1(0, 1); // expected-error {{call to deleted constructor of 'DRnnnn::B'}}
/external/lzma/CPP/Common/
H A DMyGuidDef.h49 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
50 MY_EXTERN_C const GUID name = { l, w1, w2, { b1, b2, b3, b4, b5, b6, b7, b8 } }
52 #define DEFINE_GUID(name, l, w1, w2, b1, b2, b3, b4, b5, b6, b7, b8) \
/external/okhttp/okhttp-ws/src/main/java/com/squareup/okhttp/internal/ws/
H A DWebSocketWriter.java132 int b1 = length;
134 b1 |= B1_FLAG_MASK;
135 sink.writeByte(b1);
144 sink.writeByte(b1);
208 int b1 = 0;
210 b1 |= B1_FLAG_MASK;
214 b1 |= (int) byteCount;
215 sink.writeByte(b1);
217 b1 |= PAYLOAD_SHORT;
218 sink.writeByte(b1);
[all...]
/external/libvpx/libvpx/vp8/common/x86/
H A Diwalsh_sse2.asm33 paddw xmm0, xmm2 ;ip[4]+ip[8] ip[0]+ip[12] aka b1 a1
38 punpckhqdq xmm4, xmm3 ;c1 b1
40 movdqa xmm1, xmm4 ;c1 b1
41 paddw xmm4, xmm0 ;dl+cl a1+b1 aka op[4] op[0]
42 psubw xmm0, xmm1 ;d1-c1 a1-b1 aka op[12] op[8]
62 paddw xmm4, xmm2 ;ip[4]+ip[8] ip[0]+ip[12] aka b1 a1
67 punpckhqdq xmm5, xmm3 ;c1 b1
69 movdqa xmm1, xmm5 ;c1 b1
70 paddw xmm5, xmm4 ;dl+cl a1+b1 aka op[4] op[0]
71 psubw xmm4, xmm1 ;d1-c1 a1-b1 ak
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DParcelTest.java257 Bundle b1 = new Bundle();
258 b1.putString("hello", "world");
259 parcel.writeBundle(b1);
263 assertEquals(b1, b2);
267 parcel.writeBundle(b1);
270 assertEquals(b1, b2);
280 Bundle b1 = new Bundle();
281 b1.putBundle("bundle", innerBundle);
282 b1.putInt("int", 23);
283 parcel.writeBundle(b1);
[all...]
/external/llvm/lib/Support/
H A DConvertUTF.c399 UTF8 b1, b2, b3; local
420 b1 = *source;
422 if (b1 >= 0xC2 && b1 <= 0xDF) {
436 if (b1 == 0xE0) {
439 if (b1 >= 0xE1 && b1 <= 0xEC) {
442 if (b1 == 0xED) {
445 if (b1 >= 0xEE && b1 <
[all...]
/external/libvpx/libvpx/test/
H A Dvp8_fdct4x4_test.cc35 const int b1 = ip[0] - ip[8]; local
44 op[4] = b1 + c1;
45 op[8] = b1 - c1;
53 const int b1 = ip[0] - ip[2]; local
62 op[1] = (b1 + c1 + 4) >> 3;
63 op[2] = (b1 - c1 + 4) >> 3;
/external/lldb/test/lang/c/bitfields/
H A DTestBitfields.py69 substrs = ['(uint32_t:1) b1 = 1',
81 substrs = ['(uint32_t:1) b1 = 1',
90 self.expect("expr (bits.b1)", VARIABLES_DISPLAYED_CORRECTLY,
157 # Notice the pattern of int(b1.GetValue(), 0). We pass a base of 0
160 b1 = bits.GetChildMemberWithName("b1")
161 self.DebugSBValue(b1)
162 self.assertTrue(b1.GetName() == "b1" and
163 b1
[all...]
/external/v8/test/cctest/compiler/
H A Dtest-instruction.cc134 BasicBlock* b1 = R.schedule.NewBasicBlock(); local
138 R.schedule.AddGoto(b0, b1);
139 R.schedule.AddGoto(b1, b2);
148 R.code->StartBlock(b1);
149 int i2 = R.NewInstr(b1);
150 int i3 = R.NewInstr(b1);
151 int i4 = R.NewInstr(b1);
152 int i5 = R.NewInstr(b1);
153 R.code->EndBlock(b1);
165 CHECK_EQ(b1,
217 BasicBlock* b1 = R.schedule.end(); local
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/endo/
H A DGLVTypeBEndomorphism.java26 BigInteger b1 = calculateB(k, parameters.getG1(), bits);
30 BigInteger a = k.subtract((b1.multiply(v1[0])).add(b2.multiply(v2[0])));
31 BigInteger b = (b1.multiply(v1[1])).add(b2.multiply(v2[1])).negate();
/external/eigen/test/eigen2/
H A Deigen2_alignedbox.cpp31 BoxType b1(VectorType::Random(dim),VectorType::Random(dim));
39 (b2 = b0).extend(b1);
41 VERIFY(b2.contains(b1));
/external/eigen/test/
H A Deigensolver_generalized_real.cpp29 MatrixType b1 = MatrixType::Random(rows,cols); local
31 MatrixType spdB = b.adjoint() * b + b1.adjoint() * b1;
/external/llvm/lib/CodeGen/
H A DEdgeBundles.cpp61 unsigned b1 = getBundle(i, 1); local
63 if (b1 != b0)
64 Blocks[b1].push_back(i);
/external/clang/test/CXX/class/class.mem/
H A Dp1b.cpp30 void b1(A a = A()); // expected-error{{use of default argument to function 'A' that is declared later in class 'A'}}
/external/clang/test/CXX/drs/
H A Ddr9xx.cpp27 B b1 { };

Completed in 1609 milliseconds

1234567891011>>