Searched defs:propsSize (Results 1 - 13 of 13) sorted by relevance

/external/chromium_org/third_party/lzma_sdk/
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.c938 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc) argument
941 RINOK(LzmaProps_Decode(&propNew, props, propsSize));
947 SRes LzmaDec_Allocate(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc) argument
951 RINOK(LzmaProps_Decode(&propNew, props, propsSize));
H A DLzmaEnc.c2249 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,
2260 res = LzmaEnc_WriteProperties(p, propsEncoded, propsSize);
2248 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/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaLib.c43 const unsigned char *props, size_t propsSize)
46 return LzmaDecode(dest, destLen, src, srcLen, props, (unsigned)propsSize, LZMA_FINISH_ANY, &status, &g_Alloc);
42 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.c939 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc) argument
942 RINOK(LzmaProps_Decode(&propNew, props, propsSize));
948 SRes LzmaDec_Allocate(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc) argument
952 RINOK(LzmaProps_Decode(&propNew, props, propsSize));
H A DLzmaEnc.c2250 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,
2261 res = LzmaEnc_WriteProperties(p, propsEncoded, propsSize);
2249 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/C/
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 DLzma2Enc.c50 SizeT propsSize = LZMA_PROPS_SIZE; local
52 RINOK(LzmaEnc_WriteProperties(p->enc, propsEncoded, &propsSize));
H A DXz.h38 UInt32 propsSize; member in struct:__anon26739
H A DLzmaDec.c938 SRes LzmaDec_AllocateProbs(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc) argument
941 RINOK(LzmaProps_Decode(&propNew, props, propsSize));
947 SRes LzmaDec_Allocate(CLzmaDec *p, const Byte *props, unsigned propsSize, ISzAlloc *alloc) argument
951 RINOK(LzmaProps_Decode(&propNew, props, propsSize));
H A DLzmaEnc.c2249 const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark,
2260 res = LzmaEnc_WriteProperties(p, propsEncoded, propsSize);
2248 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 D7zOut.cpp279 size_t propsSize = coder.Props.GetCapacity(); local
293 b |= ((propsSize != 0) ? 0x20 : 0 );
301 if (propsSize == 0)
303 WriteNumber(propsSize);
304 WriteBytes(coder.Props, propsSize);
H A D7zIn.cpp423 CNum propsSize = ReadNum(); local
424 coder.Props.SetCapacity((size_t)propsSize);
425 ReadBytes((Byte *)coder.Props, (size_t)propsSize);

Completed in 319 milliseconds