Home
last modified time | relevance | path

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

/freebsd/sys/fs/ext2fs/
H A Dext2_htree.c521 uint16_t entry_len; in ext2_append_entry() local
523 entry_len = EXT2_DIR_REC_LEN(last_entry->e2d_namlen); in ext2_append_entry()
524 last_entry->e2d_reclen = htole16(entry_len); in ext2_append_entry()
525 last_entry = (struct ext2fs_direct_2 *)((char *)last_entry + entry_len); in ext2_append_entry()
544 uint16_t entry_len = 0; in ext2_htree_split_dirblock() local
612 entry_len = EXT2_DIR_REC_LEN(ep->e2d_namlen); in ext2_htree_split_dirblock()
613 memcpy(dest, ep, entry_len); in ext2_htree_split_dirblock()
615 htole16(entry_len); in ext2_htree_split_dirblock()
618 dest += entry_len; in ext2_htree_split_dirblock()
620 dest -= entry_len; in ext2_htree_split_dirblock()
[all …]
/freebsd/contrib/elftoolchain/libdwarf/
H A Ddwarf_loclist.c175 Dwarf_Unsigned *entry_len, Dwarf_Unsigned *next_entry, in dwarf_get_loclist_entry() argument
190 entry_len == NULL || next_entry == NULL) { in dwarf_get_loclist_entry()
196 &llbuf, &listlen, entry_len, error); in dwarf_get_loclist_entry()
220 *next_entry = offset + *entry_len; in dwarf_get_loclist_entry()
H A Dlibdwarf_loclist.c96 Dwarf_Unsigned *entry_len, Dwarf_Error *error) in _dwarf_loclist_find() argument
144 entry_len, error); in _dwarf_loclist_find()
/freebsd/sys/sys/
H A Dmodule.h101 int entry_len; /* Length of each entry in the table (may be */ member
184 .entry_len = sizeof((t)[0]), \
/freebsd/usr.sbin/kldxref/
H A Dkldxref.c533 cval, descr, pnp->num_entry, pnp->entry_len); in record_pnp_info()
544 len = pnp->num_entry * pnp->entry_len; in record_pnp_info()
562 walker += pnp->entry_len; in record_pnp_info()
617 cval, descr, pnp.num_entry, pnp.entry_len); in parse_entry()
/freebsd/contrib/tcpdump/
H A Dprint-openflow-1.0.c1700 uint16_t entry_len; in of10_flow_stats_reply_print() local
1705 entry_len = GET_BE_U_2(cp); in of10_flow_stats_reply_print()
1706 ND_PRINT(" length %u", entry_len); in of10_flow_stats_reply_print()
1707 ND_ICHECK_U(entry_len, <, OF_FLOW_STATS_REPLY_MINLEN); in of10_flow_stats_reply_print()
1708 ND_ICHECK_U(entry_len, >, len); in of10_flow_stats_reply_print()
1746 of10_actions_print(ndo, "\n\t ", cp, entry_len - OF_FLOW_STATS_REPLY_MINLEN); in of10_flow_stats_reply_print()
1747 OF_FWD(entry_len - OF_FLOW_STATS_REPLY_MINLEN); in of10_flow_stats_reply_print()
/freebsd/sys/dev/mpi3mr/
H A Dmpi3mr_app.c269 U32 offset, entry_len, dev_pgsz; in mpi3mr_app_build_nvme_prp() local
411 entry_len = dev_pgsz - offset; in mpi3mr_app_build_nvme_prp()
491 if (entry_len >= length) in mpi3mr_app_build_nvme_prp()
494 if (entry_len <= desc_len) { in mpi3mr_app_build_nvme_prp()
495 dma_addr += entry_len; in mpi3mr_app_build_nvme_prp()
496 desc_len -= entry_len; in mpi3mr_app_build_nvme_prp()
510 length -= entry_len; in mpi3mr_app_build_nvme_prp()
/freebsd/sys/dev/mpr/
H A Dmpr.c2916 uint32_t offset, entry_len, page_mask_result, page_mask; in mpr_build_nvme_prp() local
3016 entry_len = PAGE_SIZE - offset; in mpr_build_nvme_prp()
3084 paddr += entry_len; in mpr_build_nvme_prp()
3087 if (entry_len > length) in mpr_build_nvme_prp()
3090 length -= entry_len; in mpr_build_nvme_prp()
3108 uint32_t i, sge_dwords, length, offset, entry_len; in mpr_check_pcie_native_sgl() local
3325 entry_len = PAGE_SIZE - offset; in mpr_check_pcie_native_sgl()
3335 *(ptr_first_sgl + 2) = htole32(entry_len); in mpr_check_pcie_native_sgl()
3354 paddr += entry_len; in mpr_check_pcie_native_sgl()
3357 if (entry_len > length) in mpr_check_pcie_native_sgl()
[all …]
/freebsd/lib/libkldelf/
H A Dkldelf.h136 int entry_len; /* Length of each entry in the table (may be */ member
H A Delf.c675 pnp->entry_len = elf_int(efile, p + offset); in elf_read_mod_pnp_match_info()