Searched refs:propsSize (Results 1 - 16 of 16) sorted by relevance

/external/lzma/C/
H A DLzmaLib.h127 const unsigned char *props, size_t propsSize);
H A DLzmaLib.c42 const unsigned char *props, size_t propsSize)
45 return LzmaDecode(dest, destLen, src, srcLen, props, (unsigned)propsSize, LZMA_FINISH_ANY, &status, &g_Alloc);
41 LzmaUncompress(unsigned char *dest, size_t *destLen, const unsigned char *src, size_t *srcLen, const unsigned char *props, size_t propsSize) argument
H A DLzmaDec.h132 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc);
135 SRes LzmaDec_Allocate(CLzmaDec *state, const Byte *prop, unsigned propsSize, ISzAlloc *alloc);
H A DLzmaEnc.h73 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,
H A DXzEnc.c72 pos += Xz_WriteVarInt(header + pos, f->propsSize);
73 memcpy(header + pos, f->props, f->propsSize);
74 pos += f->propsSize;
277 RINOK(p->StateCoder.SetProps(p->StateCoder.p, props->props, props->propsSize, &g_Alloc));
422 filter->propsSize = 0;
426 filter->propsSize = 1;
431 filter->propsSize = 4;
438 f->propsSize = 1;
H A D7zDec.c68 static SRes SzDecodePpmd(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStream *inStream, argument
82 if (propsSize != 5)
129 static SRes SzDecodeLzma(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStream *inStream, argument
136 RINOK(LzmaDec_AllocateProbs(&state, props, propsSize, allocMain));
177 static SRes SzDecodeLzma2(const Byte *props, unsigned propsSize, UInt64 inSize, ILookInStream *inStream, argument
184 if (propsSize != 1)
H A D7zArcIn.c547 UInt32 propsSize = 0; local
548 RINOK(SzReadNumber32(sd, &propsSize));
549 if (propsSize >= 0x40)
551 if (propsSize > sd->Size)
554 coder->PropsSize = (Byte)propsSize;
555 sd->Data += (size_t)propsSize;
556 sd->Size -= (size_t)propsSize;
743 UInt32 propsSize; local
744 RINOK(SzReadNumber32(&sd, &propsSize));
745 if (propsSize > s
[all...]
H A DLzmaDec.c971 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc) argument
974 RINOK(LzmaProps_Decode(&propNew, props, propsSize));
980 SRes LzmaDec_Allocate(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc) argument
984 RINOK(LzmaProps_Decode(&propNew, props, propsSize));
H A DXz.h38 UInt32 propsSize; member in struct:__anon13485
H A DLzma2Enc.c52 SizeT propsSize = LZMA_PROPS_SIZE; local
54 RINOK(LzmaEnc_WriteProperties(p->enc, propsEncoded, &propsSize));
H A DXzDec.c553 filter->propsSize = (UInt32)size;
599 RINOK(sc->SetProps(sc->p, f->props, f->propsSize, p->alloc));
H A DLzmaEnc.c2259 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,
2270 res = LzmaEnc_WriteProperties(p, propsEncoded, propsSize);
2258 LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark, ICompressProgress *progress, ISzAlloc *alloc, ISzAlloc *allocBig) argument
/external/lzma/CPP/7zip/Archive/7z/
H A D7zHandler.cpp397 CNum propsSize = 0; local
401 propsSize = inByte.ReadNum();
403 inByte.SkipDataNoCheck(propsSize);
416 if (propsSize == 5)
436 if (propsSize == 1)
448 if (propsSize == 5)
462 if (propsSize == 1)
470 if (propsSize >= 1)
H A D7zIn.cpp454 CNum propsSize = ReadNum(); local
455 coder.Props.Alloc((size_t)propsSize);
456 ReadBytes((Byte *)coder.Props, (size_t)propsSize);
743 CNum propsSize = inByte->ReadNum(); local
744 if (propsSize > inByte->GetRem())
746 if (id == k_LZMA2 && propsSize == 1)
752 else if (id == k_LZMA && propsSize == 5)
758 inByte->SkipDataNoCheck((size_t)propsSize);
H A D7zOut.cpp261 size_t propsSize = coder.Props.Size(); local
275 b |= ((propsSize != 0) ? 0x20 : 0 );
283 if (propsSize == 0)
285 WriteNumber(propsSize);
286 WriteBytes(coder.Props, propsSize);
/external/lzma/CPP/7zip/Archive/
H A DXzHandler.cpp278 if (f.propsSize > 0)
281 if (f.id == XZ_ID_LZMA2 && f.propsSize == 1)
283 else if (f.id == XZ_ID_Delta && f.propsSize == 1)
288 for (UInt32 bi = 0; bi < f.propsSize; bi++)

Completed in 579 milliseconds