HomeSort by: relevance | last modified time | path
    Searched refs:coalesceBuffer (Results 1 - 2 of 2) sorted by relevancy

  /src/external/bsd/zstd/dist/programs/
fileio_asyncio.c 536 ctx->srcBuffer = ctx->coalesceBuffer;
552 ctx->coalesceBuffer = (U8*) malloc(bufferSize * 2);
553 if(!ctx->coalesceBuffer) EXM_THROW(100, "Allocation error : not enough memory");
554 ctx->srcBuffer = ctx->coalesceBuffer;
574 free(ctx->coalesceBuffer);
617 memcpy(ctx->coalesceBuffer, ctx->srcBuffer, ctx->srcBufferLoaded);
618 ctx->srcBuffer = ctx->coalesceBuffer;
627 memcpy(ctx->coalesceBuffer + ctx->srcBufferLoaded, job->buffer, job->usedBufferSize);
fileio_asyncio.h 66 U8 *coalesceBuffer;

Completed in 15 milliseconds