/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...] |
/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...] |
/prebuilts/gdb/darwin-x86/include/python2.7/ |
bitset.h | 18 int samebitset(bitset bs1, bitset bs2, int nbits); 19 void mergebitset(bitset bs1, bitset bs2, int nbits);
|
/prebuilts/gdb/linux-x86/include/python2.7/ |
bitset.h | 18 int samebitset(bitset bs1, bitset bs2, int nbits); 19 void mergebitset(bitset bs1, bitset bs2, int nbits);
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
bitset.h | 18 int samebitset(bitset bs1, bitset bs2, int nbits); 19 void mergebitset(bitset bs1, bitset bs2, int nbits);
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
bitset.h | 18 int samebitset(bitset bs1, bitset bs2, int nbits); 19 void mergebitset(bitset bs1, bitset bs2, int nbits);
|
/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...] |
/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...] |
/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...] |
/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;
|
/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/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...] |
/ndk/sources/android/support/src/stdio/ |
strtod.c | 1582 int bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, dsign, 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...] |
/external/boringssl/src/crypto/aes/asm/ |
bsaes-armv7.pl | 920 my ($bs0,$bs1,$bs2,$t2,$t3)=@_[8..12]; 938 &swapmove2x (@x[0,4,1,5],4,$bs2,$t2,$t3); 939 &swapmove2x (@x[2,6,3,7],4,$bs2,$t2,$t3); [all...] |
/external/c-ares/ |
ltmain.sh | 424 bs2='\\\\' 430 s/^$bs2$dollar/$bs&/ 431 s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g [all...] |
/external/google-breakpad/autotools/ |
ltmain.sh | 224 bs2='\\\\' 230 s/^$bs2$dollar/$bs&/ 231 s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g [all...] |
/external/google-tv-pairing-protocol/cpp/ |
libtool | 725 bs2='\\\\' 731 s/^$bs2$dollar/$bs&/ 732 s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g [all...] |
ltmain.sh | 224 bs2='\\\\' 230 s/^$bs2$dollar/$bs&/ 231 s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g [all...] |
/external/libcap-ng/libcap-ng-0.7/ |
ltmain.sh | 420 bs2='\\\\' 426 s/^$bs2$dollar/$bs&/ 427 s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g [all...] |
/external/libedit/ |
ltmain.sh | 420 bs2='\\\\' 426 s/^$bs2$dollar/$bs&/ 427 s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g [all...] |
/external/libevent/ |
ltmain.sh | 420 bs2='\\\\' 426 s/^$bs2$dollar/$bs&/ 427 s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g [all...] |
/external/libexif/ |
ltmain.sh | 427 bs2='\\\\' 433 s/^$bs2$dollar/$bs&/ 434 s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g [all...] |