Searched refs:b1 (Results 201 - 225 of 536) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Doverloaded-operator.cpp159 bool& b1 = (x, y); local
527 void f(B<A<void> > b1, B<A<int> > b2, B<A<char> > b3) { argument
528 b1 = b1; // ok, does not instantiate A<void>.
529 (void)b1->n; // expected-error {{is not a pointer}}
/external/libvpx/libvpx/vp8/encoder/arm/armv6/
H A Dvp8_short_fdct4x4_armv6.asm34 qadd16 r6, r4, r5 ; [i1+i2 | i0+i3] = [b1 | a1] without shift
59 qadd16 r6, r8, r9 ; [i5+i6 | i4+i7] = [b1 | a1] without shift
84 qadd16 r6, r4, r5 ; [i9+i10 | i8+i11]=[b1 | a1] without shift
109 qadd16 r6, r4, r5 ; [i13+i14 | i12+i15]=[b1|a1] without shift
134 qadd16 r5, r9, r2 ; b1 = [i5+i9 | i4+i8]
142 qadd16 r2, r4, r5 ; a1 + b1 + 7
143 qsub16 r3, r4, r5 ; a1 - b1 + 7
192 qadd16 r5, r9, r2 ; b1 = [i7+i11 | i6+i10]
197 qadd16 r2, r4, r5 ; a1 + b1 + 7
199 qsub16 r3, r4, r5 ; a1 - b1
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dfilterbanks.c59 WebRtc_Word32 a1 = 0, b1 = 0, c = 0, in = 0; local
79 "smmulr %[b1], %[tmp_coeff1], %[state1]\n\t"
83 [b1]"+r"(b1),
94 b1 = WEBRTC_SPL_MUL_32_32_RSFT32(coefficient[7], coefficient[6], state1);
101 c = ((WebRtc_Word32)in) + WEBRTC_SPL_RSHIFT_W32(a1+b1, 7); // Q0
/external/llvm/unittests/IR/
H A DInstructionsTest.cpp131 BranchInst* b1 = BranchInst::Create(bb0, bb1, One); local
133 EXPECT_FALSE(b1->isUnconditional());
134 EXPECT_TRUE(b1->isConditional());
135 EXPECT_EQ(2U, b1->getNumSuccessors());
138 EXPECT_EQ(3U, b1->getNumOperands());
140 User::const_op_iterator b(b1->op_begin());
143 EXPECT_NE(b, b1->op_end());
145 EXPECT_EQ(One, b1->getOperand(0));
146 EXPECT_EQ(One, b1->getCondition());
151 EXPECT_EQ(bb1, b1
[all...]
/external/mksh/src/
H A Dfuncs.c2937 struct stat b1, b2; local
3011 return (stat(opnd1, &b1) == 0);
3015 return (stat(opnd1, &b1) == 0 && S_ISREG(b1.st_mode));
3019 return (stat(opnd1, &b1) == 0 && S_ISDIR(b1.st_mode));
3023 return (stat(opnd1, &b1) == 0 && S_ISCHR(b1.st_mode));
3027 return (stat(opnd1, &b1) == 0 && S_ISBLK(b1
[all...]
/external/google-breakpad/src/testing/test/
H A Dgmock-spec-builders_test.cc1009 MockB b1; local
1010 EXPECT_CALL(b1, DoB(1));
1011 b1.DoB(1);
1013 b1.DoB(2),
1019 b1.DoB(2),
1676 MockB* const b1 = new MockB; local
1682 EXPECT_CALL(*b1, DoB(_))
1692 EXPECT_EQ(1, b1->DoB(1));
1693 delete b1;
1704 MockB* const b1 local
1756 MockB* const b1 = new MockB; local
1782 MockB* const b1 = new MockB; local
2423 MockB b1; local
[all...]
/external/speex/libspeex/
H A Dlsp.c148 spx_word16_t b0, b1; local
158 b1=16384;
166 b0 = SUB16(MULT16_16_Q13(x,b0), b1);
167 b1 = tmp;
180 float b0, b1, tmp; local
184 b1=0; /* b_(m+2) */
192 b0=x*b0-b1+coef[m-k]; /* b0 holds its new value based on b0 and b1 */
193 b1=tmp; /* b1 hold
[all...]
/external/libvpx/libvpx/vp8/common/arm/armv6/
H A Dsimpleloopfilter_v6.asm18 TRANSPOSE_MATRIX $a0, $a1, $a2, $a3, $b0, $b1, $b2, $b3
19 ; input: $a0, $a1, $a2, $a3; output: $b0, $b1, $b2, $b3
24 ; b3 b2 b1 b0
26 uxtb16 $b1, $a1 ; xx 12 xx 10
30 orr $b1, $b0, $b1, lsl #8 ; 12 02 10 00
40 pkhtb $b2, $b3, $b1, asr #16 ; 32 22 12 02 -- p1
41 pkhbt $b0, $b1, $b3, lsl #16 ; 30 20 10 00 -- p3
44 pkhbt $b1, $a0, $a2, lsl #16 ; 31 21 11 01 -- p2
/external/compiler-rt/lib/asan/
H A Dasan_poisoning.cc366 uptr b1 = RoundDownTo(new_mid, granularity); local
369 // [a, b1) is good, [b2, c) is bad, [b1, b2) is partially good.
370 PoisonShadow(a, b1 - a, 0);
372 if (b1 != b2) {
373 CHECK_EQ(b2 - b1, granularity);
374 *(u8*)MemToShadow(b1) = static_cast<u8>(new_mid - b1);
/external/guava/guava-tests/test/com/google/common/io/
H A DByteSourceTest.java282 ByteSource b1 = ByteSource.wrap(new byte[] {0, 1, 2, 3});
289 ByteSource.concat(ImmutableList.of(b1, b2, b3)).read());
291 ByteSource.concat(b1, b2, b3).read());
293 ByteSource.concat(ImmutableList.of(b1, b2, b3).iterator()).read());
294 assertEquals(expected.length, ByteSource.concat(b1, b2, b3).size());
295 assertFalse(ByteSource.concat(b1, b2, b3).isEmpty());
/external/iproute2/misc/
H A Drtacct.c160 char b1[16]; local
208 fprintf(fp, "%-10s", rtnl_rtrealm_n2a(realm, b1, sizeof(b1)));
222 char b1[16]; local
283 fprintf(fp, "%-10s", rtnl_rtrealm_n2a(realm, b1, sizeof(b1)));
/external/iproute2/tc/
H A Dtc_util.c469 SPRINT_BUF(b1);
492 prefix, sprint_rate(re.bps, b1), re.pps);
501 sprint_size(q.backlog, b1), q.qlen, q.requeues);
510 SPRINT_BUF(b1);
535 fprintf(fp, "%s ", sprint_rate(st.bps, b1));
542 fprintf(fp, "%s ", sprint_size(st.backlog, b1));
H A Df_fw.c140 SPRINT_BUF(b1);
141 fprintf(f, "classid %s ", sprint_tc_classid(rta_getattr_u32(tb[TCA_FW_CLASSID]), b1));
H A Df_tcindex.c166 SPRINT_BUF(b1);
168 RTA_DATA(tb[TCA_TCINDEX_CLASSID]), b1));
H A Dm_skbedit.c164 SPRINT_BUF(b1);
187 fprintf(f, " priority %s", sprint_tc_classid(*priority, b1));
H A Dtc_stab.c122 SPRINT_BUF(b1);
134 sprint_linklayer(s.linklayer, b1));
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
H A Dp7-0x.cpp164 Agg<bool> b1 = {0}; // OK local
169 Agg<bool>* ptr = &b1;
H A Dp7-cxx11-nowarn.cpp162 Agg<bool> b1 = {0}; // OK local
167 Agg<bool>* ptr = &b1;
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
H A Dp3.cpp31 B<const int, 3> b1 = g0(array1); local
39 B<int, 0> b1 = g1(A<int>()); local
/external/clang/test/Misc/
H A Ddiag-template-diffing.cpp933 B<int> b1; local
936 b1 = b2;
939 b3 = b1;
978 B<> b1; local
981 b2 = b1;
984 b3 = b1;
988 B<i1, i2, i3> b4 = b1;
990 B<i2, i3> b5 = b1;
/external/icu/icu4c/source/i18n/
H A Dcollationkeys.cpp135 uint8_t b1 = (uint8_t)w; local
136 int32_t appendLength = (b1 == 0) ? 1 : 2;
139 if(b1 != 0) {
140 buffer[len++] = b1;
168 uint8_t b1 = (uint8_t)w; local
169 int32_t appendLength = (b1 == 0) ? 1 : 2;
171 if(b1 == 0) {
174 buffer[len] = b1;
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationKeys.java184 byte b1 = (byte) w;
185 int appendLength = (b1 == 0) ? 1 : 2;
188 if (b1 != 0) {
189 buffer[len++] = b1;
216 byte b1 = (byte) w;
217 int appendLength = (b1 == 0) ? 1 : 2;
219 if (b1 == 0) {
222 buffer[len] = b1;
/external/jmonkeyengine/engine/src/android/com/jme3/util/
H A DFastInteger.java291 int b1 = (i & 0xFF00) << 8;
293 return (b0 | b1 | b2 | b3);
/external/libvpx/libvpx/vp8/common/x86/
H A Ddequantize_mmx.asm97 psubw mm0, mm2 ; b1= 0-2
124 movq mm4, mm0 ; b1
152 psubw mm0, mm2 ; b1= 0-2
182 movq mm4, mm0 ; b1
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DByteVector.java89 * @param b1 a byte.
93 ByteVector put11(final int b1, final int b2) { argument
99 data[length++] = (byte) b1;

Completed in 1205 milliseconds

1234567891011>>