Home
last modified time | relevance | path

Searched refs:coalesceBuffer (Results 1 – 2 of 2) sorted by relevance

/src/sys/contrib/zstd/programs/
H A Dfileio_asyncio.c536 ctx->srcBuffer = ctx->coalesceBuffer; in AIO_ReadPool_setFile()
552 ctx->coalesceBuffer = (U8*) malloc(bufferSize * 2); in AIO_ReadPool_create()
553 if(!ctx->coalesceBuffer) EXM_THROW(100, "Allocation error : not enough memory"); in AIO_ReadPool_create()
554 ctx->srcBuffer = ctx->coalesceBuffer; in AIO_ReadPool_create()
574 free(ctx->coalesceBuffer); in AIO_ReadPool_free()
617 memcpy(ctx->coalesceBuffer, ctx->srcBuffer, ctx->srcBufferLoaded); in AIO_ReadPool_fillBuffer()
618 ctx->srcBuffer = ctx->coalesceBuffer; in AIO_ReadPool_fillBuffer()
627 memcpy(ctx->coalesceBuffer + ctx->srcBufferLoaded, job->buffer, job->usedBufferSize); in AIO_ReadPool_fillBuffer()
H A Dfileio_asyncio.h66 U8 *coalesceBuffer; member