HomeSort by relevance Sort by last modified time
    Searched refs:PropsSize (Results 1 - 3 of 3) sorted by null

  /external/lzma/C/
7zDec.c 73 static SRes SzDecodePpmd(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStream *inStream,
87 if (propsSize != 5)
134 static SRes SzDecodeLzma(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStream *inStream,
141 RINOK(LzmaDec_AllocateProbs(&state, props, propsSize, allocMain));
194 static SRes SzDecodeLzma2(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStream *inStream,
201 if (propsSize != 1)
435 RINOK(SzDecodeLzma(propsData + coder->PropsOffset, coder->PropsSize, inSize, inStream, outBufCur, outSizeCur, allocMain));
440 RINOK(SzDecodeLzma2(propsData + coder->PropsOffset, coder->PropsSize, inSize, inStream, outBufCur, outSizeCur, allocMain));
446 RINOK(SzDecodePpmd(propsData + coder->PropsOffset, coder->PropsSize, inSize, inStream, outBufCur, outSizeCur, allocMain));
509 if (coder->PropsSize != 1)
    [all...]
7z.h 29 Byte PropsSize;
7zArcIn.c 476 coder->PropsSize = 0;
499 UInt32 propsSize = 0;
500 RINOK(SzReadNumber32(sd, &propsSize));
501 if (propsSize > sd->Size)
503 if (propsSize >= 0x80)
506 coder->PropsSize = (Byte)propsSize;
507 sd->Data += (size_t)propsSize;
508 sd->Size -= (size_t)propsSize;
717 UInt32 propsSize;
    [all...]

Completed in 76 milliseconds