Home
last modified time | relevance | path

Searched refs:jobs (Results 1 – 14 of 14) sorted by relevance

/f-stack/freebsd/contrib/zstd/lib/compress/
H A Dzstdmt_compress.c808 ZSTDMT_jobDescription* jobs; member
960 ZSTD_memset(&mtctx->jobs[jobID], 0, sizeof(mtctx->jobs[jobID])); in ZSTDMT_releaseAllJobResources()
975 while (mtctx->jobs[jobID].consumed < mtctx->jobs[jobID].src.size) { in ZSTDMT_waitForAllJobsCompleted()
977 ZSTD_pthread_cond_wait(&mtctx->jobs[jobID].job_cond, &mtctx->jobs[jobID].job_mutex); in ZSTDMT_waitForAllJobsCompleted()
1341 mtctx->jobs[jobID].cSize = 0; in ZSTDMT_createCompressionJob()
1416 assert(mtctx->jobs[wJobID].dstFlushed <= mtctx->jobs[wJobID].cSize); in ZSTDMT_flushProduced()
1417 … while (mtctx->jobs[wJobID].dstFlushed == mtctx->jobs[wJobID].cSize) { /* nothing to flush */ in ZSTDMT_flushProduced()
1418 if (mtctx->jobs[wJobID].consumed == mtctx->jobs[wJobID].src.size) { in ZSTDMT_flushProduced()
1446 … MEM_writeLE32((char*)mtctx->jobs[wJobID].dstBuff.start + mtctx->jobs[wJobID].cSize, checksum); in ZSTDMT_flushProduced()
1461 (const char*)mtctx->jobs[wJobID].dstBuff.start + mtctx->jobs[wJobID].dstFlushed, in ZSTDMT_flushProduced()
[all …]
/f-stack/dpdk/drivers/regex/mlx5/
H A Dmlx5_regex_fastpath.c176 prep_one(priv, queue, sq, ops[i], &queue->jobs[job_id]); in mlx5_regexdev_enqueue()
282 extract_result(ops[i], &queue->jobs[job_id]); in mlx5_regexdev_dequeue()
307 struct mlx5_regex_job *job = &queue->jobs[job_id]; in setup_sqs()
364 qp->jobs[i].output = in setup_buffers()
367 qp->jobs[i].metadata = in setup_buffers()
386 qp->jobs = rte_calloc(__func__, qp->nb_desc, sizeof(*qp->jobs), 64); in mlx5_regexdev_setup_fastpath()
387 if (!qp->jobs) in mlx5_regexdev_setup_fastpath()
391 rte_free(qp->jobs); in mlx5_regexdev_setup_fastpath()
418 if (qp->jobs) in mlx5_regexdev_teardown_fastpath()
419 rte_free(qp->jobs); in mlx5_regexdev_teardown_fastpath()
H A Dmlx5_regex.h49 struct mlx5_regex_job *jobs; member
/f-stack/dpdk/drivers/raw/dpaa2_qdma/
H A Ddpaa2_qdma.c235 struct rte_qdma_job **jobs, in qdma_populate_sg_entry() argument
246 if (likely(jobs[i]->flags & RTE_QDMA_JOB_SRC_PHY)) { in qdma_populate_sg_entry()
247 src_sge->addr_lo = (uint32_t)jobs[i]->src; in qdma_populate_sg_entry()
248 src_sge->addr_hi = (jobs[i]->src >> 32); in qdma_populate_sg_entry()
250 iova = DPAA2_VADDR_TO_IOVA(jobs[i]->src); in qdma_populate_sg_entry()
254 src_sge->data_len.data_len_sl0 = jobs[i]->len; in qdma_populate_sg_entry()
264 dst_sge->addr_lo = (uint32_t)jobs[i]->dest; in qdma_populate_sg_entry()
265 dst_sge->addr_hi = (jobs[i]->dest >> 32); in qdma_populate_sg_entry()
267 iova = DPAA2_VADDR_TO_IOVA(jobs[i]->dest); in qdma_populate_sg_entry()
271 dst_sge->data_len.data_len_sl0 = jobs[i]->len; in qdma_populate_sg_entry()
[all …]
/f-stack/freebsd/contrib/openzfs/.github/workflows/
H A Dcheckstyle.yaml7 jobs:
H A Dzfs-tests.yml7 jobs:
H A Dzloop.yml7 jobs:
/f-stack/dpdk/doc/guides/tools/
H A Dtestregex.rst44 number of jobs to use
/f-stack/dpdk/doc/guides/sample_app_ug/
H A Dl2_forward_job_stats.rst270 * flush_job, idle_job and jobs_context are librte_jobstats objects used for managing l2fwd jobs.
381 Second inner while loop do the whole jobs management. When any job is ready, the use rte_timer_mana…
383 Then rte_jobstats_context_finish() is called to mark loop end - no other jobs are ready to execute.…
/f-stack/freebsd/contrib/openzfs/config/
H A Dzfs-build.m4197 [simultaneous jobs during configure (defaults to $(nproc))])
/f-stack/dpdk/doc/guides/rawdevs/
H A Dioat.rst71 * mode (Dedicated/Shared): Indicates whether a WQ may accept jobs from multiple queues simultaneous…
/f-stack/dpdk/doc/guides/prog_guide/
H A Dvhost_lib.rst202 After the ``ops`` are dequeued from Cryptodev, finalizes the jobs and
/f-stack/freebsd/contrib/zstd/programs/
H A Dzstd.1.md514 1 means "no overlap", hence completely independent jobs.
/f-stack/freebsd/contrib/zstd/
H A DCHANGELOG16 api : shared thread pool: control total nb of threads used by multiple compression jobs, by @marxin