Home
last modified time | relevance | path

Searched refs:cparams (Results 1 – 11 of 11) sorted by relevance

/src/sys/dev/ocs_fc/
H A Docs_ddump.c167 sli4_sgl_chaining_params_t *cparams = &sli4->config.sgl_chaining_params; in ocs_ddump_sli() local
235 ocs_ddump_value(textbuf, "sgl_chaining_capable", "%x", cparams->chaining_capable); in ocs_ddump_sli()
236 ocs_ddump_value(textbuf, "frag_num_field_offset", "%x", cparams->frag_num_field_offset); in ocs_ddump_sli()
237 …ocs_ddump_value(textbuf, "frag_num_field_mask", "%016llx", (unsigned long long)cparams->frag_num_f… in ocs_ddump_sli()
238 ocs_ddump_value(textbuf, "sgl_index_field_offset", "%x", cparams->sgl_index_field_offset); in ocs_ddump_sli()
239 …ocs_ddump_value(textbuf, "sgl_index_field_mask", "%016llx", (unsigned long long)cparams->sgl_index… in ocs_ddump_sli()
240 ocs_ddump_value(textbuf, "chain_sge_initial_value_lo", "%x", cparams->chain_sge_initial_value_lo); in ocs_ddump_sli()
241 ocs_ddump_value(textbuf, "chain_sge_initial_value_hi", "%x", cparams->chain_sge_initial_value_hi); in ocs_ddump_sli()
/src/sys/dev/usb/controller/
H A Dehci_pci.c555 uint32_t cparams; in ehci_pci_take_controller() local
561 cparams = EREAD4(sc, EHCI_HCCPARAMS); in ehci_pci_take_controller()
564 for (eecp = EHCI_HCC_EECP(cparams); eecp != 0; in ehci_pci_take_controller()
H A Dxhci_pci.c521 uint32_t cparams; in xhci_pci_take_controller() local
527 cparams = XREAD4(sc, capa, XHCI_HCCPARAMS1); in xhci_pci_take_controller()
532 for (eecp = XHCI_HCS0_XECP(cparams) << 2; eecp != 0 && XHCI_XECP_NEXT(eec); in xhci_pci_take_controller()
H A Dehci.c230 uint32_t cparams; in ehci_init_sub() local
234 cparams = EREAD4(sc, EHCI_HCCPARAMS); in ehci_init_sub()
236 DPRINTF("cparams=0x%x\n", cparams); in ehci_init_sub()
238 if (EHCI_HCC_64BIT(cparams)) { in ehci_init_sub()
/src/crypto/openssl/providers/implementations/macs/
H A Dkmac_prov.c339 const OSSL_PARAM cparams[] = { in kmac_init() local
343 (void)kmac_set_ctx_params(kctx, cparams); in kmac_init()
/src/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress.c1193 size_t ZSTD_CCtx_setCParams(ZSTD_CCtx* cctx, ZSTD_compressionParameters cparams) in ZSTD_CCtx_setCParams() argument
1195 ZSTD_STATIC_ASSERT(sizeof(cparams) == 7 * 4 /* all params are listed below */); in ZSTD_CCtx_setCParams()
1198 FORWARD_IF_ERROR(ZSTD_checkCParams(cparams), ""); in ZSTD_CCtx_setCParams()
1199 FORWARD_IF_ERROR(ZSTD_CCtx_setParameter(cctx, ZSTD_c_windowLog, (int)cparams.windowLog), ""); in ZSTD_CCtx_setCParams()
1200 FORWARD_IF_ERROR(ZSTD_CCtx_setParameter(cctx, ZSTD_c_chainLog, (int)cparams.chainLog), ""); in ZSTD_CCtx_setCParams()
1201 FORWARD_IF_ERROR(ZSTD_CCtx_setParameter(cctx, ZSTD_c_hashLog, (int)cparams.hashLog), ""); in ZSTD_CCtx_setCParams()
1202 FORWARD_IF_ERROR(ZSTD_CCtx_setParameter(cctx, ZSTD_c_searchLog, (int)cparams.searchLog), ""); in ZSTD_CCtx_setCParams()
1203 FORWARD_IF_ERROR(ZSTD_CCtx_setParameter(cctx, ZSTD_c_minMatch, (int)cparams.minMatch), ""); in ZSTD_CCtx_setCParams()
1204 …FORWARD_IF_ERROR(ZSTD_CCtx_setParameter(cctx, ZSTD_c_targetLength, (int)cparams.targetLength), ""); in ZSTD_CCtx_setCParams()
1205 FORWARD_IF_ERROR(ZSTD_CCtx_setParameter(cctx, ZSTD_c_strategy, (int)cparams.strategy), ""); in ZSTD_CCtx_setCParams()
/src/crypto/openssl/test/
H A Dsslapitest.c12995 const unsigned char cparams[] = { in test_quic_tls() local
13053 || !TEST_true(SSL_set_quic_tls_transport_params(clientssl, cparams, in test_quic_tls()
13054 sizeof(cparams))) in test_quic_tls()
13104 if (!TEST_mem_eq(sdata.params, sdata.params_len, cparams, sizeof(cparams)) in test_quic_tls()
13160 const unsigned char cparams[] = { in test_quic_tls_early_data() local
13213 || !TEST_true(SSL_set_quic_tls_transport_params(clientssl, cparams, in test_quic_tls_early_data()
13214 sizeof(cparams))) in test_quic_tls_early_data()
13273 if (!TEST_mem_eq(sdata.params, sdata.params_len, cparams, sizeof(cparams)) in test_quic_tls_early_data()
/src/sys/dev/pci/
H A Dpci.c3701 uint32_t cparams; in ehci_early_takeover() local
3714 cparams = bus_read_4(res, EHCI_HCCPARAMS); in ehci_early_takeover()
3717 for (eecp = EHCI_HCC_EECP(cparams); eecp != 0; in ehci_early_takeover()
3757 uint32_t cparams; in xhci_early_takeover() local
3770 cparams = bus_read_4(res, XHCI_HCCPARAMS1); in xhci_early_takeover()
3775 for (eecp = XHCI_HCS0_XECP(cparams) << 2; eecp != 0 && XHCI_XECP_NEXT(eec); in xhci_early_takeover()
/src/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.h1972 ZSTDLIB_STATIC_API size_t ZSTD_CCtx_setCParams(ZSTD_CCtx* cctx, ZSTD_compressionParameters cparams);
/src/sys/contrib/zstd/programs/
H A Dzstd.1.md275 * `--show-default-cparams`:
/src/sys/contrib/zstd/
H A DCHANGELOG177 cli : New --show-default-cparams information command