Home
last modified time | relevance | path

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

/external/lzma/CPP/7zip/Archive/7z/
D7zIn.h334 CInByte2 *_inByteBack; variable
353 _inByteBack = &_inByteVector[_numInByteBufs - 1]; in DeleteByteStream()
355 _inByteBack->_pos += _inByteVector[_numInByteBufs]._pos; in DeleteByteStream()
361 void ReadBytes(Byte *data, size_t size) { _inByteBack->ReadBytes(data, size); } in ReadBytes()
362 Byte ReadByte() { return _inByteBack->ReadByte(); } in ReadByte()
363 UInt64 ReadNumber() { return _inByteBack->ReadNumber(); } in ReadNumber()
364 CNum ReadNum() { return _inByteBack->ReadNum(); } in ReadNum()
365 UInt64 ReadID() { return _inByteBack->ReadNumber(); } in ReadID()
366 UInt32 ReadUInt32() { return _inByteBack->ReadUInt32(); } in ReadUInt32()
367 UInt64 ReadUInt64() { return _inByteBack->ReadUInt64(); } in ReadUInt64()
[all …]
D7zIn.cpp69 if (_archive->_inByteBack->GetRem() != 0) in Remove()
109 _inByteBack = &_inByteVector[_numInByteBufs++]; in AddByteStream()
110 _inByteBack->Init(buf, size); in AddByteStream()
632 const Byte *startBufPtr = _inByteBack->GetPtr(); in ReadUnpackInfo()
645 CInByte2 *inByte = _inByteBack; in ReadUnpackInfo()
651 folders.FoCodersDataOffset[fo] = _inByteBack->GetPtr() - startBufPtr; in ReadUnpackInfo()
699 Byte v = *_inByteBack->GetPtr(); in ReadUnpackInfo()
705 UInt32 dicSize = GetUi32(_inByteBack->GetPtr() + 1); in ReadUnpackInfo()
772 size_t dataSize = _inByteBack->GetPtr() - startBufPtr; in ReadUnpackInfo()
775 folders.FoCodersDataOffset[fo] = _inByteBack->GetPtr() - startBufPtr; in ReadUnpackInfo()
[all …]