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

  /external/lz4/lib/
lz4frame.c 216 size_t tmpInSize;
637 cctxPtr->tmpInSize = 0;
815 if (dstCapacity < LZ4F_compressBound_internal(srcSize, &(cctxPtr->prefs), cctxPtr->tmpInSize))
821 if (cctxPtr->tmpInSize > 0) { /* some data already within tmp buffer */
822 size_t const sizeToCopy = blockSize - cctxPtr->tmpInSize;
825 memcpy(cctxPtr->tmpIn + cctxPtr->tmpInSize, srcBuffer, srcSize);
827 cctxPtr->tmpInSize += srcSize;
832 memcpy(cctxPtr->tmpIn + cctxPtr->tmpInSize, srcBuffer, sizeToCopy);
    [all...]
  /frameworks/av/media/codec2/components/mpeg4_h263/
C2SoftMpeg4Dec.cpp 629 int32_t tmpInSize = (int32_t)inSize;
633 mDecHandle, &bitstreamTmp, &timestamp, &tmpInSize,
665 if (PVDecodeVopBody(mDecHandle, &tmpInSize) != PV_TRUE) {
687 inPos += inSize - (size_t)tmpInSize;

Completed in 153 milliseconds