Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/Archive/7z/
D7zIn.h346 CInByte2 *_inByteBack; variable
365 _inByteBack = &_inByteVector[_numInByteBufs - 1]; in DeleteByteStream()
367 _inByteBack->_pos += _inByteVector[_numInByteBufs]._pos; in DeleteByteStream()
373 void ReadBytes(Byte *data, size_t size) { _inByteBack->ReadBytes(data, size); } in ReadBytes()
374 Byte ReadByte() { return _inByteBack->ReadByte(); } in ReadByte()
375 UInt64 ReadNumber() { return _inByteBack->ReadNumber(); } in ReadNumber()
376 CNum ReadNum() { return _inByteBack->ReadNum(); } in ReadNum()
377 UInt64 ReadID() { return _inByteBack->ReadNumber(); } in ReadID()
378 UInt32 ReadUInt32() { return _inByteBack->ReadUInt32(); } in ReadUInt32()
379 UInt64 ReadUInt64() { return _inByteBack->ReadUInt64(); } in ReadUInt64()
[all …]
D7zIn.cpp85 if (_archive->_inByteBack->GetRem() != 0) in Remove()
125 _inByteBack = &_inByteVector[_numInByteBufs++]; in AddByteStream()
126 _inByteBack->Init(buf, size); in AddByteStream()
657 const Byte *startBufPtr = _inByteBack->GetPtr(); in ReadUnpackInfo()
670 CInByte2 *inByte = _inByteBack; in ReadUnpackInfo()
676 folders.FoCodersDataOffset[fo] = _inByteBack->GetPtr() - startBufPtr; in ReadUnpackInfo()
724 Byte v = *_inByteBack->GetPtr(); in ReadUnpackInfo()
730 UInt32 dicSize = GetUi32(_inByteBack->GetPtr() + 1); in ReadUnpackInfo()
797 size_t dataSize = _inByteBack->GetPtr() - startBufPtr; in ReadUnpackInfo()
800 folders.FoCodersDataOffset[fo] = _inByteBack->GetPtr() - startBufPtr; in ReadUnpackInfo()
[all …]