HomeSort by relevance Sort by last modified time
    Searched defs:outBufSize (Results 1 - 6 of 6) sorted by null

  /external/lzma/C/
Lzma2DecMt.c 62 size_t outBufSize;
154 t->outBufSize = 0;
175 t->outBufSize = 0;
427 if (!dest || t->outBufSize < t->outPreSize)
433 t->outBufSize = 0;
443 t->outBufSize = t->outPreSize;
595 if (size > me->outBufSize)
598 me->outBufSize -= size;
803 // Byte *outBuf, size_t *outBufSize,
875 // p->outBufSize = 0;
    [all...]
Lzma2Enc.c 374 size_t outBufSize; /* size of allocated outBufs[i] */
409 p->outBufSize = 0;
428 p->outBufSize = 0;
501 Byte *outBuf, size_t *outBufSize,
514 outLim = *outBufSize;
515 *outBufSize = 0;
605 *outBufSize = (size_t)packTotal;
635 size_t destPos = *outBufSize;
639 *outBufSize = destPos + 1;
661 size_t destSize = me->outBufSize;
    [all...]
Xz.h 187 size_t outBufSize;
250 size_t outBufSize;
260 void XzUnpacker_SetOutBuf(CXzUnpacker *p, Byte *outBuf, size_t outBufSize);
451 // Byte *outBuf, size_t *outBufSize,
XzEnc.c 937 size_t outBufSize; /* size of allocated outBufs[i] */
965 p->outBufSize = 0;
980 p->outBufSize = 0;
1067 dest = (Byte *)ISzAlloc_Alloc(me->alloc, me->outBufSize);
1086 dest + XZ_BLOCK_HEADER_SIZE_MAX, me->outBufSize - XZ_BLOCK_HEADER_SIZE_MAX,
1194 if (p->outBufSize != destBlockSize)
1196 p->outBufSize = destBlockSize;
1233 if (!p->outBufs[0] || t2 != p->outBufSize)
1239 p->outBufSize = t2;
    [all...]
XzDec.c 408 static SRes Lzma2State_SetFromMethod(IStateCoder *p, Byte *outBuf, size_t outBufSize, ISzAllocPtr alloc)
429 spec->decoder.decoder.dicBufSize = outBufSize;
435 static SRes Lzma2State_ResetOutBuf(IStateCoder *p, Byte *outBuf, size_t outBufSize)
443 spec->decoder.decoder.dicBufSize = outBufSize;
457 p->outBufSize = 0;
508 static SRes MixCoder_SetFromMethod(CMixCoder *p, unsigned coderIndex, UInt64 methodId, Byte *outBuf, size_t outBufSize)
514 case XZ_ID_LZMA2: return Lzma2State_SetFromMethod(sc, outBuf, outBufSize, p->alloc);
525 static SRes MixCoder_ResetFromMethod(CMixCoder *p, unsigned coderIndex, UInt64 methodId, Byte *outBuf, size_t outBufSize)
530 case XZ_ID_LZMA2: return Lzma2State_ResetOutBuf(sc, outBuf, outBufSize);
866 static SRes XzDecMix_Init(CMixCoder *p, const CXzBlock *block, Byte *outBuf, size_t outBufSize)
    [all...]
  /frameworks/av/media/libeffects/preprocessing/
PreProcessing.cpp 122 size_t outBufSize; // output buffer size in frames
873 session->outBufSize = 0;
    [all...]

Completed in 2491 milliseconds