Home
last modified time | relevance | path

Searched refs:dstBuffer (Results 1 – 10 of 10) sorted by relevance

/freebsd/sys/dev/qat/qat_api/common/qat_comms/
H A Dsal_qat_cmn_msg.c103 Cpa64U dstBuffer, in SalQatMsg_CmnMidWrite() argument
113 if (0 == dstBuffer) { in SalQatMsg_CmnMidWrite()
118 pMid->dest_data_addr = dstBuffer; in SalQatMsg_CmnMidWrite()
/freebsd/sys/contrib/zstd/programs/
H A Dfileio.c939 void* dstBuffer; member
1003 ress.dstBuffer = malloc(ress.dstBufferSize); in FIO_createCResources()
1005 if (!ress.srcBuffer || !ress.dstBuffer) in FIO_createCResources()
1070 free(ress->dstBuffer); in FIO_freeCResources()
1101 strm.next_out = (Bytef*)ress->dstBuffer; in FIO_compressGzFrame()
1118 if (fwrite(ress->dstBuffer, 1, cSize, ress->dstFile) != cSize) in FIO_compressGzFrame()
1121 strm.next_out = (Bytef*)ress->dstBuffer; in FIO_compressGzFrame()
1138 if (fwrite(ress->dstBuffer, 1, cSize, ress->dstFile) != cSize) in FIO_compressGzFrame()
1141 strm.next_out = (Bytef*)ress->dstBuffer; in FIO_compressGzFrame()
1188 strm.next_out = (BYTE*)ress->dstBuffer; in FIO_compressLzmaFrame()
[all …]
H A Dbenchzstd.c233 void* dstBuffer, size_t dstSize, in local_defaultCompress() argument
237 return ZSTD_compress2(cctx, dstBuffer, dstSize, srcBuffer, srcSize); in local_defaultCompress()
243 void* dstBuffer, size_t dstCapacity, in local_defaultDecompress() argument
251 out.dst = dstBuffer; out.size = dstCapacity; out.pos = 0; in local_defaultDecompress()
558 void* dstBuffer, size_t dstCapacity, in BMK_benchMemAdvanced() argument
565 int const dstParamsError = !dstBuffer ^ !dstCapacity; /* must be both NULL or none */ in BMK_benchMemAdvanced()
590 void* const internalDstBuffer = dstBuffer ? NULL : malloc(maxCompressedSize); in BMK_benchMemAdvanced()
591 void* const compressedBuffer = dstBuffer ? dstBuffer : internalDstBuffer; in BMK_benchMemAdvanced()
H A Dbenchzstd.h200 void* dstBuffer, size_t dstCapacity,
/freebsd/sys/dev/qat/qat_api/common/include/
H A Dsal_qat_cmn_msg.h137 Cpa64U dstBuffer,
/freebsd/sys/dev/qat/qat_api/include/lac/
H A Dcpa_cy_sym_dp.h329 CpaPhysicalAddr dstBuffer; member
/freebsd/sys/dev/qat/qat_api/common/crypto/sym/
H A Dlac_sym_dp.c117 if (0 == pRequest->dstBuffer) { in LacDp_EnqueueParamCheck()
405 LAC_CHECK_8_BYTE_ALIGNMENT(pRequest->dstBuffer); in LacDp_EnqueueParamCheck()
473 pRequest->dstBuffer, in LacDp_WriteRingMsgOpt()
726 pRequest->dstBuffer, in LacDp_WriteRingMsgFull()
/freebsd/sys/contrib/openzfs/module/zstd/lib/common/
H A Dbitstream.h65 MEM_STATIC size_t BIT_initCStream(BIT_CStream_t* bitC, void* dstBuffer, size_t dstCapacity);
/freebsd/sys/contrib/zstd/lib/common/
H A Dbitstream.h66 MEM_STATIC size_t BIT_initCStream(BIT_CStream_t* bitC, void* dstBuffer, size_t dstCapacity);
/freebsd/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c732 static size_t ZDICT_analyzeEntropy(void* dstBuffer, size_t maxDstSize, in ZDICT_analyzeEntropy() argument
756 BYTE* dstPtr = (BYTE*)dstBuffer; in ZDICT_analyzeEntropy()