Home
last modified time | relevance | path

Searched refs:propsSize (Results 1 – 20 of 20) sorted by relevance

/third_party/lzma/CPP/7zip/Crypto/
D7zAes.cpp211 unsigned propsSize = 1; in WriteCoderProperties() local
223 propsSize = 2 + _key.SaltSize; in WriteCoderProperties()
224 memcpy(props + propsSize, _iv, _ivSize); in WriteCoderProperties()
225 propsSize += _ivSize; in WriteCoderProperties()
228 return WriteStream(outStream, props, propsSize); in WriteCoderProperties()
/third_party/lzma/CPP/7zip/Archive/7z/
D7zHandler.cpp420 CNum propsSize = 0; in SetMethodToProp() local
424 propsSize = inByte.ReadNum(); in SetMethodToProp()
426 inByte.SkipDataNoCheck(propsSize); in SetMethodToProp()
439 if (propsSize == 5) in SetMethodToProp()
459 if (propsSize == 1) in SetMethodToProp()
465 if (propsSize == 5) in SetMethodToProp()
477 if (propsSize == 1) in SetMethodToProp()
485 if (propsSize >= 1) in SetMethodToProp()
D7zIn.cpp419 CNum propsSize = ReadNum(); in ParseFolder() local
420 coder.Props.Alloc((size_t)propsSize); in ParseFolder()
421 ReadBytes((Byte *)coder.Props, (size_t)propsSize); in ParseFolder()
747 CNum propsSize = inByte->ReadNum(); in ReadUnpackInfo() local
748 if (propsSize > inByte->GetRem()) in ReadUnpackInfo()
750 if (id == k_LZMA2 && propsSize == 1) in ReadUnpackInfo()
756 else if (id == k_LZMA && propsSize == 5) in ReadUnpackInfo()
762 inByte->SkipDataNoCheck((size_t)propsSize); in ReadUnpackInfo()
D7zOut.cpp277 const size_t propsSize = coder.Props.Size(); in WriteFolder() local
278 b |= ((propsSize != 0) ? 0x20 : 0); in WriteFolder()
286 if (propsSize == 0) in WriteFolder()
288 WriteNumber(propsSize); in WriteFolder()
289 WriteBytes(coder.Props, propsSize); in WriteFolder()
/third_party/lzma/C/
DLzmaLib.c36 const unsigned char *props, size_t propsSize) in LzmaUncompress() argument
39 …return LzmaDecode(dest, destLen, src, srcLen, props, (unsigned)propsSize, LZMA_FINISH_ANY, &status… in LzmaUncompress()
DLzmaDec.h139 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAllocPtr alloc);
142 SRes LzmaDec_Allocate(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAllocPtr alloc);
D7zDec.c76 static SRes SzDecodePpmd(const Byte *props, unsigned propsSize, UInt64 inSize, const ILookInStream … in SzDecodePpmd() argument
90 if (propsSize != 5) in SzDecodePpmd()
141 static SRes SzDecodeLzma(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStream *inStr… in SzDecodeLzma() argument
148 RINOK(LzmaDec_AllocateProbs(&state, props, propsSize, allocMain)); in SzDecodeLzma()
201 static SRes SzDecodeLzma2(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStream *inSt… in SzDecodeLzma2() argument
208 if (propsSize != 1) in SzDecodeLzma2()
D7zArcIn.c501 UInt32 propsSize = 0; in SzGetNextFolderItem() local
502 RINOK(SzReadNumber32(sd, &propsSize)); in SzGetNextFolderItem()
503 if (propsSize > sd->Size) in SzGetNextFolderItem()
505 if (propsSize >= 0x80) in SzGetNextFolderItem()
508 coder->PropsSize = (Byte)propsSize; in SzGetNextFolderItem()
509 sd->Data += (size_t)propsSize; in SzGetNextFolderItem()
510 sd->Size -= (size_t)propsSize; in SzGetNextFolderItem()
719 UInt32 propsSize; in ReadUnpackInfo() local
720 RINOK(SzReadNumber32(&sd, &propsSize)); in ReadUnpackInfo()
721 if (propsSize > sd.Size) in ReadUnpackInfo()
[all …]
DLzmaLib.h134 const unsigned char *props, size_t propsSize);
DXzEnc.c85 pos += Xz_WriteVarInt(header + pos, f->propsSize); in XzBlock_WriteHeader()
86 memcpy(header + pos, f->props, f->propsSize); in XzBlock_WriteHeader()
87 pos += f->propsSize; in XzBlock_WriteHeader()
339 RINOK(p->StateCoder.SetProps(p->StateCoder.p, props->props, props->propsSize, alloc)); in SeqInFilter_Init()
745 filter->propsSize = 0; in Xz_CompressBlock()
750 filter->propsSize = 1; in Xz_CompressBlock()
756 filter->propsSize = 4; in Xz_CompressBlock()
763 f->propsSize = 1; in Xz_CompressBlock()
DLzmaEnc.h73 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,
DLzmaDec.c1299 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAllocPtr alloc) in LzmaDec_AllocateProbs() argument
1302 RINOK(LzmaProps_Decode(&propNew, props, propsSize)); in LzmaDec_AllocateProbs()
1308 SRes LzmaDec_Allocate(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAllocPtr alloc) in LzmaDec_Allocate() argument
1312 RINOK(LzmaProps_Decode(&propNew, props, propsSize)); in LzmaDec_Allocate()
DXzDec.c786 if (f->id != XZ_ID_LZMA2 || f->propsSize != 1 || f->props[0] > 40) in XzBlock_AreSupportedFilters()
795 if (f->propsSize != 1) in XzBlock_AreSupportedFilters()
800 || (f->propsSize != 0 && f->propsSize != 4)) in XzBlock_AreSupportedFilters()
842 filter->propsSize = (UInt32)size; in XzBlock_Parse()
910 RINOK(sc->SetProps(sc->p, f->props, f->propsSize, p->alloc)); in XzDecMix_Init()
DXz.h38 UInt32 propsSize; member
DLzma2Enc.c96 SizeT propsSize = LZMA_PROPS_SIZE; in Lzma2EncInt_InitStream() local
99 RINOK(LzmaEnc_WriteProperties(p->enc, propsEncoded, &propsSize)); in Lzma2EncInt_InitStream()
DLzmaEnc.c3134 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark, in LzmaEncode() argument
3145 res = LzmaEnc_WriteProperties(p, propsEncoded, propsSize); in LzmaEncode()
/third_party/lzma/CPP/7zip/Archive/
DXzHandler.cpp283 if (f.propsSize > 0) in AddMethodString()
286 if (f.id == XZ_ID_LZMA2 && f.propsSize == 1) in AddMethodString()
288 else if (f.id == XZ_ID_Delta && f.propsSize == 1) in AddMethodString()
293 for (UInt32 bi = 0; bi < f.propsSize; bi++) in AddMethodString()
/third_party/lzma/DOC/
Dlzma.txt271 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,
/third_party/lzma/
DREADME_zh.md432 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,
DREADME.md473 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,