| /f-stack/freebsd/crypto/openssl/ |
| H A D | ossl_sha512.c | 70 ossl_sha512_final(uint8_t *md, void *c_) in ossl_sha512_final() argument 115 *(md++) = (unsigned char)(t >> 56); in ossl_sha512_final() 116 *(md++) = (unsigned char)(t >> 48); in ossl_sha512_final() 117 *(md++) = (unsigned char)(t >> 40); in ossl_sha512_final() 121 *(md++) = (unsigned char)(t >> 8); in ossl_sha512_final() 122 *(md++) = (unsigned char)(t); in ossl_sha512_final() 147 *(md++) = (unsigned char)(t >> 8); in ossl_sha512_final() 148 *(md++) = (unsigned char)(t); in ossl_sha512_final() 161 *(md++) = (unsigned char)(t >> 8); in ossl_sha512_final() 162 *(md++) = (unsigned char)(t); in ossl_sha512_final() [all …]
|
| /f-stack/freebsd/amd64/amd64/ |
| H A D | mem.c | 194 struct mem_range_desc *md; in memioctl_md() local 213 md = (struct mem_range_desc *) in memioctl_md() 216 error = mem_range_attr_get(md, &nd); in memioctl_md() 218 error = copyout(md, mo->mo_desc, in memioctl_md() 220 free(md, M_MEMDESC); in memioctl_md() 228 md = (struct mem_range_desc *)malloc(sizeof(struct mem_range_desc), in memioctl_md() 230 error = copyin(mo->mo_desc, md, sizeof(struct mem_range_desc)); in memioctl_md() 232 md->mr_owner[sizeof(md->mr_owner) - 1] = 0; in memioctl_md() 234 error = mem_range_attr_set(md, &mo->mo_arg[0]); in memioctl_md() 235 free(md, M_MEMDESC); in memioctl_md()
|
| /f-stack/freebsd/i386/i386/ |
| H A D | mem.c | 185 struct mem_range_desc *md; in memioctl_md() local 204 md = (struct mem_range_desc *) in memioctl_md() 207 error = mem_range_attr_get(md, &nd); in memioctl_md() 209 error = copyout(md, mo->mo_desc, in memioctl_md() 211 free(md, M_MEMDESC); in memioctl_md() 219 md = (struct mem_range_desc *)malloc(sizeof(struct mem_range_desc), in memioctl_md() 221 error = copyin(mo->mo_desc, md, sizeof(struct mem_range_desc)); in memioctl_md() 223 md->mr_owner[sizeof(md->mr_owner) - 1] = 0; in memioctl_md() 225 error = mem_range_attr_set(md, &mo->mo_arg[0]); in memioctl_md() 226 free(md, M_MEMDESC); in memioctl_md()
|
| /f-stack/freebsd/contrib/zstd/doc/educational_decoder/ |
| H A D | Makefile | 47 @$(ZSTD) -f README.md -o tmp.zst 49 @$(DIFF) -s tmp README.md 55 @$(ZSTD) --train harness.c zstd_decompress.c zstd_decompress.h README.md \ 56 harness.c zstd_decompress.c zstd_decompress.h README.md \ 57 harness.c zstd_decompress.c zstd_decompress.h README.md \ 59 @$(ZSTD) -f README.md -D dictionary -o tmp.zst 61 @$(DIFF) -s tmp README.md
|
| /f-stack/freebsd/contrib/openzfs/module/zfs/ |
| H A D | dmu_redact.c | 518 struct merge_data *md = arg; in redaction_list_update_sync() local 573 md->md_latest_synctask_txg = txg; in commit_rl_updates() 578 &md->md_redact_block_pending); in commit_rl_updates() 580 md->md_last_time = gethrtime(); in commit_rl_updates() 643 if (gethrtime() > md->md_last_time + in update_redaction_list() 728 struct merge_data md = { {0} }; in perform_thread_merge() local 890 struct merge_data md = { {0} }; in perform_redaction() local 895 md.md_redaction_list = rl; in perform_redaction() 898 list_create(&md.md_blocks[i], in perform_redaction() 981 if (md.md_latest_synctask_txg != 0) in perform_redaction() [all …]
|
| /f-stack/dpdk/examples/fips_validation/ |
| H A D | main.c | 1642 (size_t)md[0].len); in fips_mct_sha_test() 1643 memcpy((vec.pt.val + md[0].len), md[1].val, in fips_mct_sha_test() 1645 memcpy((vec.pt.val + md[0].len + md[1].len), in fips_mct_sha_test() 1646 md[2].val, in fips_mct_sha_test() 1648 vec.pt.len = md[0].len + md[1].len + md[2].len; in fips_mct_sha_test() 1663 memcpy(md[0].val, md[1].val, md[1].len); in fips_mct_sha_test() 1664 md[0].len = md[1].len; in fips_mct_sha_test() 1665 memcpy(md[1].val, md[2].val, md[2].len); in fips_mct_sha_test() 1666 md[1].len = md[2].len; in fips_mct_sha_test() 1673 memcpy(vec.cipher_auth.digest.val, md[2].val, md[2].len); in fips_mct_sha_test() [all …]
|
| /f-stack/dpdk/app/test-pmd/ |
| H A D | csumonly.c | 649 md[i]->data_len = dlen; in mbuf_copy_split() 650 md[i]->next = (i + 1 == nb_seg) ? NULL : md[i + 1]; in mbuf_copy_split() 673 md[0]->nb_segs = nb_seg; in mbuf_copy_split() 674 md[0]->pkt_len = tlen; in mbuf_copy_split() 675 md[0]->vlan_tci = m->vlan_tci; in mbuf_copy_split() 677 md[0]->ol_flags = m->ol_flags; in mbuf_copy_split() 709 md[i] = NULL; in pkt_copy_split() 731 md[--i] = p; in pkt_copy_split() 757 rte_pktmbuf_free_seg(md[i]); in pkt_copy_split() 758 md[i] = NULL; in pkt_copy_split() [all …]
|
| /f-stack/dpdk/lib/librte_mbuf/ |
| H A D | rte_mbuf.h | 252 rte_mbuf_to_baddr(struct rte_mbuf *md) in rte_mbuf_to_baddr() argument 255 return rte_mbuf_buf_addr(md, md->pool); in rte_mbuf_to_baddr() 258 buffer_addr = (char *)md + sizeof(*md) + rte_pktmbuf_priv_size(md->pool); in rte_mbuf_to_baddr() 1205 struct rte_mbuf *md; in __rte_pktmbuf_free_direct() local 1209 md = rte_mbuf_from_indirect(m); in __rte_pktmbuf_free_direct() 1211 if (rte_mbuf_refcnt_update(md, -1) == 0) { in __rte_pktmbuf_free_direct() 1212 md->next = NULL; in __rte_pktmbuf_free_direct() 1213 md->nb_segs = 1; in __rte_pktmbuf_free_direct() 1214 rte_mbuf_refcnt_set(md, 1); in __rte_pktmbuf_free_direct() 1215 rte_mbuf_raw_free(md); in __rte_pktmbuf_free_direct() [all …]
|
| /f-stack/freebsd/contrib/zstd/examples/ |
| H A D | Makefile | 69 cp README.md tmp 90 ./dictionary_compression tmp2 tmp README.md 91 ./dictionary_decompression tmp2.zst tmp.zst README.md
|
| /f-stack/freebsd/mips/conf/ |
| H A D | MT7620A_FDT | 32 # Support md(4) and md-based rootfs 33 device md
|
| H A D | MT7620N_FDT | 32 # Support md(4) and md-based rootfs 33 device md
|
| H A D | MT7621_FDT | 32 # Support md(4) and md-based rootfs 33 device md
|
| H A D | RT2880_FDT | 32 # Support md(4) and md-based rootfs 33 device md
|
| H A D | RT3050_FDT | 33 # Support md(4) and md-based rootfs 34 device md
|
| H A D | RT5350_FDT | 32 # Support md(4) and md-based rootfs 33 device md
|
| H A D | RT3352_FDT | 32 # Support md(4) and md-based rootfs 33 device md
|
| H A D | MT7628_FDT | 33 # Support md(4) and md-based rootfs 34 device md
|
| H A D | RT3883_FDT | 33 # Support md(4) and md-based rootfs 34 device md
|
| /f-stack/dpdk/drivers/net/octeontx2/ |
| H A D | otx2_ethdev_sec.c | 280 } *md; in hmac_init() local 291 if (md == NULL) in hmac_init() 294 memcpy(md->buffer, auth_key, len); in hmac_init() 296 md_iova = rte_malloc_virt2iova(md); in hmac_init() 310 md->cpt_res.compcode = 0; in hmac_init() 311 md->cpt_res.uc_compcode = 0xff; in hmac_init() 322 res = (volatile struct otx2_cpt_res *)&md->cpt_res; in hmac_init() 336 memcpy(hmac_key, md->buffer, 48); in hmac_init() 341 rte_free(md); in hmac_init() 693 otx2_eth_sec_get_userdata(void *device __rte_unused, uint64_t md, in otx2_eth_sec_get_userdata() argument [all …]
|
| /f-stack/dpdk/drivers/net/octeontx/ |
| H A D | octeontx_rxtx.h | 168 struct rte_mbuf *md; in octeontx_pktmbuf_detach() local 173 md = rte_mbuf_from_indirect(m); in octeontx_pktmbuf_detach() 174 refcount = rte_mbuf_refcnt_update(md, -1); in octeontx_pktmbuf_detach() 194 rte_mbuf_refcnt_set(md, 1); in octeontx_pktmbuf_detach() 195 md->data_len = 0; in octeontx_pktmbuf_detach() 196 md->ol_flags = 0; in octeontx_pktmbuf_detach() 197 md->next = NULL; in octeontx_pktmbuf_detach() 198 md->nb_segs = 1; in octeontx_pktmbuf_detach()
|
| /f-stack/freebsd/mips/mips/ |
| H A D | pmap.c | 606 TAILQ_INIT(&m->md.pv_list); in pmap_page_init() 1501 m->md.pv_flags &= ~PV_TABLE_REF; in pmap_pv_reclaim() 1717 pmap_pvh_free(&m->md, pmap, va); in pmap_remove_entry() 1718 if (TAILQ_EMPTY(&m->md.pv_list)) in pmap_remove_entry() 1799 m->md.pv_flags &= ~PV_TABLE_REF; in pmap_remove_pte() 1964 if (m->md.pv_flags & PV_TABLE_REF) in pmap_remove_all() 2012 m->md.pv_flags &= ~PV_TABLE_REF; in pmap_remove_all() 2201 m->md.pv_flags |= PV_TABLE_REF; in pmap_enter() 2251 m->md.pv_flags |= PV_TABLE_REF; in pmap_enter() 3012 m->md.pv_flags &= ~PV_TABLE_REF; in pmap_ts_referenced() [all …]
|
| /f-stack/freebsd/netgraph/ |
| H A D | ng_macfilter.c | 494 macfilter_direct(macfilter_p mfp, struct ngm_macfilter_direct *md) in macfilter_direct() argument 497 MAC_S_ARGS(md->ether), md->hookname); in macfilter_direct() 499 int hookid = macfilter_find_hook(mfp, md->hookname); in macfilter_direct() 503 return macfilter_mactable_change(mfp, md->ether, hookid); in macfilter_direct() 683 struct ngm_macfilter_direct *md; in ng_macfilter_rcvmsg() local 708 md = (struct ngm_macfilter_direct *)msg->data; in ng_macfilter_rcvmsg() 709 error = macfilter_direct(mfp, md); in ng_macfilter_rcvmsg()
|
| /f-stack/freebsd/arm64/arm64/ |
| H A D | pmap.c | 2393 m->md.pv_gen++; in reclaim_pv_chunk() 2716 m->md.pv_gen++; in pmap_pv_demote_l2() 2735 m->md.pv_gen++; in pmap_pv_demote_l2() 2783 m->md.pv_gen++; in pmap_try_insert_pv_entry() 3189 md_gen = m->md.pv_gen; in pmap_remove_all() 3224 m->md.pv_gen++; in pmap_remove_all() 4116 m->md.pv_gen++; in pmap_enter() 5009 md_gen = m->md.pv_gen; in pmap_page_wired_mappings() 5223 m->md.pv_gen++; in pmap_remove_pages() 5641 m->md.pv_gen++; in pmap_ts_referenced() [all …]
|
| /f-stack/freebsd/netinet6/ |
| H A D | mld6.c | 1804 struct mbuf *mh, *md; in mld_v1_transmit_report() local 1825 if (md == NULL) { in mld_v1_transmit_report() 1831 mh->m_next = md; in mld_v1_transmit_report() 2322 struct mbuf *m0, *m, *md; in mld_v2_enqueue_group_record() local 2525 md = m_last(m); in mld_v2_enqueue_group_record() 2527 md->m_len - nbytes); in mld_v2_enqueue_group_record() 2529 md = m_getptr(m, 0, &off); in mld_v2_enqueue_group_record() 2610 md = m_getptr(m, 0, &off); in mld_v2_enqueue_group_record() 2707 struct mbuf *m, *m0, *md; in mld_v2_enqueue_filter_change() local 2801 md = m_last(m); in mld_v2_enqueue_filter_change() [all …]
|
| /f-stack/freebsd/arm/arm/ |
| H A D | pmap-v6.c | 1620 TAILQ_INIT(&m->md.pv_list); in pmap_page_init() 1622 m->md.pat_mode = VM_MEMATTR_DEFAULT; in pmap_page_init() 1689 if (m->md.pat_mode != pt_memattr) in pmap_pt2pg_init() 2383 m->md.pt2_wirecount[i] = 0; in pt2_wirecount_init() 3138 pmap_pvh_free(&m->md, pmap, va); in pmap_remove_entry() 3210 pmap_pvh_free(&m->md, pmap, va); in pmap_pv_promote_pte1() 4365 if (TAILQ_EMPTY(&mt->md.pv_list)) in pmap_remove_pte1_quick() 4861 pat_mode = p->md.pat_mode; in pmap_object_init_pt() 4882 pat_mode != p->md.pat_mode) in pmap_object_init_pt() 5750 oma = m->md.pat_mode; in pmap_page_set_memattr() [all …]
|