Home
last modified time | relevance | path

Searched refs:bitStream (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
DRuimRecords.java547 BitwiseInputStream bitStream = new BitwiseInputStream(data); in onRecordLoaded() local
549 int mipUppLength = bitStream.read(8); in onRecordLoaded()
557 int retryInfoInclude = bitStream.read(1); in onRecordLoaded()
564 bitStream.skip(11); //not used now in onRecordLoaded()
572 int numNai = bitStream.read(4); in onRecordLoaded()
580 int naiEntryIndex = bitStream.read(4); in onRecordLoaded()
586 int naiLength = bitStream.read(8); in onRecordLoaded()
596 naiCharArray[index1] = (char)(bitStream.read(8) & 0xFF); in onRecordLoaded()
608 bitStream.skip((naiLength << 3) + 101);//not used in onRecordLoaded()
609 int mnAaaSpiIndicator = bitStream.read(1); in onRecordLoaded()
[all …]
/frameworks/av/media/module/mpeg2ts/
DESQueue.cpp586 ABitReader bitStream(bits->data(), bits->numBitsLeft() / 8); in extractVarLenBitFields() local
595 RETURN_ERROR_IF_NOT_ENOUGH_BYTES_LEFT(bitStream, totalBitsUsed); in extractVarLenBitFields()
597 bitStream.skipBits(totalBitsUsed); in extractVarLenBitFields()
606 RETURN_ERROR_IF_NOT_ENOUGH_BYTES_LEFT(bitStream, ucTable[unIndex]); in extractVarLenBitFields()
608 unValue += bitStream.getBits(ucTable[unIndex]); in extractVarLenBitFields()
611 RETURN_ERROR_IF_NOT_ENOUGH_BYTES_LEFT(bitStream, ucTable[unIndex]); in extractVarLenBitFields()
613 unValue += bitStream.getBits(ucTable[unIndex]); in extractVarLenBitFields()