Home
last modified time | relevance | path

Searched refs:CACHELINE_SIZE (Results 1 – 5 of 5) sorted by relevance

/freebsd/sys/contrib/openzfs/module/zstd/lib/common/
H A Dcompiler.h129 #define CACHELINE_SIZE 64 macro
135 for (_pos=0; _pos<_size; _pos+=CACHELINE_SIZE) { \
/freebsd/sys/contrib/zstd/lib/common/
H A Dcompiler.h131 #define CACHELINE_SIZE 64 macro
137 for (_pos=0; _pos<_size; _pos+=CACHELINE_SIZE) { \
/freebsd/sys/contrib/ncsw/Peripherals/QM/
H A Dqm.h56 #define CACHELINE_SIZE 64 macro
57 #define QM_CONTEXTA_MAX_STASH_SIZE (3 * CACHELINE_SIZE)
H A Dqm_portal_fqr.c1366 if (!IS_ALIGNED(p_QmFqrParams->stashingParams.fqContextAddr, CACHELINE_SIZE)) in CheckStashParams()
1367 …RETURN_ERROR(MAJOR, E_INVALID_VALUE, ("FQ Context Address Must be aligned to %d", CACHELINE_SIZE)); in CheckStashParams()
1997 …ashing.annotation_cl = DIV_CEIL(p_QmFqrParams->stashingParams.frameAnnotationSize, CACHELINE_SIZE); in QM_FQR_Create()
1998 … cnxtA.stashing.data_cl = DIV_CEIL(p_QmFqrParams->stashingParams.frameDataSize, CACHELINE_SIZE); in QM_FQR_Create()
1999 … cnxtA.stashing.context_cl = DIV_CEIL(p_QmFqrParams->stashingParams.fqContextSize, CACHELINE_SIZE); in QM_FQR_Create()
/freebsd/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress_block.c1657 …PREFETCH_L1(match); PREFETCH_L1(match+CACHELINE_SIZE); /* note : it's safe to invoke PREFETCH() …