HomeSort by relevance Sort by last modified time
    Searched defs:bs2 (Results 1 - 12 of 12) sorted by null

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
BitSetTest.java 462 BitSet bs2 = new BitSet(129); local
463 bs2.set(0, 20);
464 bs2.set(62, 65);
465 bs2.set(121, 123);
466 resultbs = bs2.get(1, 124);
474 bs2 = new BitSet(128);
475 bs2.set(2, 20);
476 bs2.set(62);
477 bs2.set(121, 123);
478 bs2.set(127)
978 BitSet bs2 = new BitSet(8); local
1051 BitSet bs2 = new BitSet(); local
    [all...]
  /external/clang/test/Sema/
zvector.c 11 vector bool short bs, bs2; variable
52 bs = bs2;
115 ss = (vector signed short)bs2;
132 sc = (vector signed char)bs2;
159 ++bs2; // expected-error {{cannot increment}}
199 --bs2; // expected-error {{cannot decrement}}
239 bs = +bs2; // expected-error {{invalid argument type}}
265 bs = -bs2; // expected-error {{invalid argument type}}
291 bs = ~bs2;
340 bs = bs + bs2; // expected-error {{invalid operands}
741 bs <<= bs2; \/\/ expected-error {{invalid operands}} local
841 bs >>= bs2; \/\/ expected-error {{invalid operands}} local
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
datapart_encode.cpp 52 BitstreamEncVideo *bs2 = video->bitstream2; local
144 num_bits = BitstreamGetPos(bs1) + BitstreamGetPos(bs2) +
155 BitstreamAppendEnc(bs1, bs2); /* Combine bs1 and bs2 */
163 BitstreamEncReset(bs2);
186 BitstreamAppendEnc(bs1, bs2);
192 BitstreamEncReset(bs2);
231 BitstreamEncVideo *bs2 = video->bitstream2; local
354 bitCount2 = BitstreamGetPos(bs2);
373 num_bits = BitstreamGetPos(bs1) + BitstreamGetPos(bs2)
    [all...]
vlc_encode.cpp 888 BitstreamEncVideo *bs2 = video->bitstream2; local
946 /* SECOND PART: ALL TO BS2*/
948 BitstreamPut1Bits(bs2, video->acPredFlag[video->mbnum]); /* ac_pred_flag */
951 PutCBPY(CBP >> 2, (Char)(1), bs2); /* cbpy */
976 BitstreamEncVideo *bs2 = video->bitstream2; local
    [all...]
  /system/connectivity/shill/net/
byte_string_unittest.cc 79 ByteString bs2(kTest2, sizeof(kTest2));
80 ASSERT_NE(nullptr, bs2.GetData());
81 EXPECT_EQ(sizeof(kTest2), bs2.GetLength());
83 EXPECT_EQ(bs2.GetData()[i], kTest2[i]);
85 EXPECT_FALSE(bs2.IsZero());
86 EXPECT_FALSE(bs2.Equals(bs1));
88 // Build _another_ ByteString (different to bs1 and bs2), verify that the
90 // bs2.
98 EXPECT_FALSE(bs2.Equals(bs1));
140 ByteString bs2(kTest2, sizeof(kTest2))
230 ByteString bs2 = ByteString::CreateFromHexString("0y"); local
    [all...]
  /bionic/libc/upstream-openbsd/lib/libc/gdtoa/
strtod.c 93 int bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, decpt, dsign, local
604 bs2 = bb2;
607 bs2++;
645 if (i > bs2)
646 i = bs2;
650 bs2 -= i;
677 if (bs2 > 0) {
678 bs = lshift(bs, bs2);
strtodg.c 346 int bb0, bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, decpt, denorm; local
782 bs2 = bb2;
790 if (i > bs2)
791 i = bs2;
795 bs2 -= i;
825 if (bs2 > 0) {
826 bs = lshift(bs, bs2);
  /external/clang/test/CodeGen/
zvector.c 10 volatile vector bool short bs, bs2; variable
301 // CHECK: [[VAL2:%[^ ]+]] = load volatile <8 x i16>, <8 x i16>* @bs2
303 ss = ss + bs2;
313 // CHECK: [[VAL2:%[^ ]+]] = load volatile <8 x i16>, <8 x i16>* @bs2
315 us = us + bs2;
402 // CHECK: [[VAL2:%[^ ]+]] = load volatile <8 x i16>, <8 x i16>* @bs2
405 ss += bs2;
410 // CHECK: [[VAL2:%[^ ]+]] = load volatile <8 x i16>, <8 x i16>* @bs2
413 us += bs2;
489 // CHECK: [[VAL2:%[^ ]+]] = load volatile <8 x i16>, <8 x i16>* @bs2
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/ch/
Util.java 292 ByteBuffer[] bs2 = new ByteBuffer[n]; local
294 bs2[i] = bs[offset + i];
295 return bs2;
  /external/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/
TestCharset.java 53 ByteBuffer bs2 = ByteBuffer.allocate(0xFF*8); local
79 bs2.put((byte)(lead&0xFF));
80 bs2.put((byte)(lead>>8));
81 bs2.put((byte)(trail&0xFF));
82 bs2.put((byte)(trail>>8));
88 bs2.put((byte)(c));
89 bs2.put((byte)0x00);
94 bs2.put((byte)(c&0xFF));
95 bs2.put((byte)(c>>8));
119 bs2.limit(bs2.position())
144 ByteBuffer bs2 = ByteBuffer.allocate(0xFF*8); local
4443 ByteBuffer bs2; local
    [all...]
  /external/libweave/third_party/chromium/base/third_party/dmg_fp/
dtoa.cc 2450 int bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, e, e1; variable
    [all...]
  /ndk/sources/android/support/src/stdio/
strtod.c 1582 int bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, dsign, local
    [all...]

Completed in 941 milliseconds