Home | History | Annotate | Download | only in programs

Lines Matching refs:srcBufferLoaded

1246             if (ress->readCtx->srcBufferLoaded == 0) break;
1247 inFileSize += ress->readCtx->srcBufferLoaded;
1249 strm.avail_in = (uInt)ress->readCtx->srcBufferLoaded;
1344 if (ress->readCtx->srcBufferLoaded == 0) action = LZMA_FINISH;
1347 strm.avail_in = ress->readCtx->srcBufferLoaded;
1443 while (ress->readCtx->srcBufferLoaded) {
1444 size_t inSize = MIN(blockSize, ress->readCtx->srcBufferLoaded);
1551 ZSTD_inBuffer inBuff = setInBuffer( ress.readCtx->srcBuffer, ress.readCtx->srcBufferLoaded, 0 );
1555 if ((ress.readCtx->srcBufferLoaded == 0) || (*readsize == fileSize))
2381 while(ress->readCtx->srcBufferLoaded) {
2383 writeSize = MIN(blockSize, ress->readCtx->srcBufferLoaded);
2412 err = ZSTD_getFrameHeader(&header, ress->readCtx->srcBuffer, ress->readCtx->srcBufferLoaded);
2458 ZSTD_inBuffer inBuff = setInBuffer( ress->readCtx->srcBuffer, ress->readCtx->srcBufferLoaded, 0 );
2489 if (ress->readCtx->srcBufferLoaded < toDecode) {
2528 strm.avail_in = (uInt)ress->readCtx->srcBufferLoaded;
2535 if (ress->readCtx->srcBufferLoaded == 0) flush = Z_FINISH;
2537 strm.avail_in = (uInt)ress->readCtx->srcBufferLoaded;
2560 AIO_ReadPool_consumeBytes(ress->readCtx, ress->readCtx->srcBufferLoaded - strm.avail_in);
2604 strm.avail_in = ress->readCtx->srcBufferLoaded;
2610 if (ress->readCtx->srcBufferLoaded == 0) action = LZMA_FINISH;
2612 strm.avail_in = ress->readCtx->srcBufferLoaded;
2636 AIO_ReadPool_consumeBytes(ress->readCtx, ress->readCtx->srcBufferLoaded - strm.avail_in);
2670 if(!ress->readCtx->srcBufferLoaded) break; /* reached end of file */
2672 while ((pos < ress->readCtx->srcBufferLoaded) || fullBufferDecoded) { /* still to read, or still to flush */
2674 size_t remaining = ress->readCtx->srcBufferLoaded - pos;
2684 assert(pos <= ress->readCtx->srcBufferLoaded);
2746 if (ress.readCtx->srcBufferLoaded==0) {
2754 if (ress.readCtx->srcBufferLoaded < toRead) { /* not enough input to check magic number */
2761 if (ZSTD_isFrame(buf, ress.readCtx->srcBufferLoaded)) {