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

  /cts/tests/tests/location/src/android/location/cts/asn1/base/
PacketBuilder.java 22 private BitStream bitStream = new BitStream();
24 public void append(BitStream appendix) {
26 bitStream.spoolToByteBoundary();
31 bitStream.appendByte(bytes[i]);
37 bitStream.appendLowBits(bitsToAppend, lowBits);
42 return bitStream.getPaddedBytes();
46 return bitStream.getBitCount();
49 public void appendAll(Iterable<BitStream> bitStreams)
    [all...]
Asn1BitString.java 80 BitStream bitStream = new BitStream();
82 bitStream.appendBit(value.get(i));
86 buf.put(bitStream.getPaddedBytes());
100 private Iterable<BitStream> encodePerImpl(boolean aligned) {
114 BitStream result = new BitStream();
131 BitStream count = null;
139 BitStream result = new BitStream()
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/inc/
aacenc_core.h 62 struct BIT_BUF bitStream; /* Word16 size: 8 */
  /external/aac/libMpegTPEnc/src/
tpenc_lib.cpp 120 FDK_BITSTREAM bitStream;
258 FDKinitBitStream(&hTpEnc->bitStream, hTpEnc->bsBuffer, hTpEnc->bsBufferSize, 0, BS_WRITER);
298 &hTpEnc->bitStream,
333 return &hTp->bitStream;
359 HANDLE_FDK_BITSTREAM hBs = &hTp->bitStream;
368 FDKinitBitStream(&hTp->bitStream, hTp->bsBuffer, hTp->bsBufferSize, 0, BS_WRITER);
381 &hTp->bitStream,
403 FDKinitBitStream(&hTp->bitStream, hTp->bsBuffer, hTp->bsBufferSize, 0, BS_WRITER);
416 UINT alignAnchor = FDKgetValidBits(&hTp->bitStream);
419 FDKwriteBits(&hTp->bitStream, ID_PCE, 3)
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/test/SwitchingSampRate/
SwitchingSampRate.cc 207 unsigned short bitStream[600+600];
281 (uint8_t*)bitStream);
286 reinterpret_cast<const uint8_t*>(bitStream),
411 reinterpret_cast<const uint8_t*>(bitStream),
423 reinterpret_cast<const uint8_t*>(bitStream),
  /external/aac/libMpegTPDec/src/
tpdec_lib.cpp 127 FDK_BITSTREAM bitStream[2]; /* Bitstream reader */
204 /* Create bitstream */
213 FDKinitBitStream(&hInput->bitStream[0], hInput->bsBuffer, TRANSPORTDEC_INBUF_SIZE, 0, BS_READER);
332 hBs = &hTp->bitStream[layer];
355 return &hTp->bitStream[layer];
395 HANDLE_FDK_BITSTREAM hBs = &hTp->bitStream[0];
683 HANDLE_FDK_BITSTREAM hBs = &hTp->bitStream[0];
727 INT bitsAvail = 0; /* Bits available in bitstream buffer */
729 UINT synch; /* Current sync word read from bitstream */
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
RuimRecords.java 487 BitwiseInputStream bitStream = new BitwiseInputStream(data);
489 int mipUppLength = bitStream.read(8);
497 int retryInfoInclude = bitStream.read(1);
504 bitStream.skip(11); //not used now
512 int numNai = bitStream.read(4);
520 int naiEntryIndex = bitStream.read(4);
526 int naiLength = bitStream.read(8);
536 naiCharArray[index1] = (char)(bitStream.read(8) & 0xFF);
548 bitStream.skip((naiLength << 3) + 101);//not used
549 int mnAaaSpiIndicator = bitStream.read(1)
    [all...]
  /external/robolectric/v3/runtime/
android-all-5.1.1_r9-robolectric-1.jar 
  /prebuilts/misc/common/robolectric/lib/
android-all-6.0.0_r1-robolectric-0.jar 

Completed in 140 milliseconds