Home
last modified time | relevance | path

Searched refs:fhdr (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/tcpdump/
H A Dprint-forces.c390 #define GET_TOP_TLV(fhdr) ((const struct forces_tlv *)((fhdr) + sizeof (struct forcesh))) argument
1549 const u_char * pptr, const struct forcesh *fhdr _U_, in forces_type_print()
1641 const struct forcesh *fhdr; in forces_print() local
1649 fhdr = (const struct forcesh *)pptr; in forces_print()
1650 ND_TCHECK_SIZE(fhdr); in forces_print()
1651 tom = GET_U_1(fhdr->fm_tom); in forces_print()
1657 mlen = ForCES_BLN(fhdr); in forces_print()
1668 ForCES_HDRL, len, ForCES_BLN(fhdr)); in forces_print()
1675 ForCES_V(fhdr), mlen, flg_raw); in forces_print()
1677 ForCES_SID(fhdr), ForCES_node(ForCES_SID(fhdr)), in forces_print()
[all …]
/freebsd/sys/dev/oce/
H A Doce_sysctl.c487 const struct flash_file_hdr *fhdr) in oce_get_ufi_type() argument
489 if (fhdr == NULL) in oce_get_ufi_type()
492 if (IS_SH(sc) && fhdr->build[0] == '4') { in oce_get_ufi_type()
493 if (fhdr->asic_type_rev >= 0x10) in oce_get_ufi_type()
497 } else if (IS_BE3(sc) && fhdr->build[0] == '3') { in oce_get_ufi_type()
498 if (fhdr->asic_type_rev == 0x10) in oce_get_ufi_type()
502 } else if (IS_BE2(sc) && fhdr->build[0] == '2') in oce_get_ufi_type()
515 const struct flash_file_hdr *fhdr; in oce_skyhawk_fwupgrade() local
518 fhdr = (const struct flash_file_hdr *)fw->data; in oce_skyhawk_fwupgrade()
520 ufi_type = oce_get_ufi_type(sc, fhdr); in oce_skyhawk_fwupgrade()
[all …]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Darc.c1068 arc_buf_hdr_t *fhdr; in buf_hash_insert() local
1082 for (fhdr = buf_hash_table.ht_table[idx], i = 0; fhdr != NULL; in buf_hash_insert()
1083 fhdr = fhdr->b_hash_next, i++) { in buf_hash_insert()
1084 if (HDR_EQUAL(hdr->b_spa, &hdr->b_dva, hdr->b_birth, fhdr)) in buf_hash_insert()
1085 return (fhdr); in buf_hash_insert()
1107 arc_buf_hdr_t *fhdr, **hdrp; in buf_hash_remove() local
1114 while ((fhdr = *hdrp) != hdr) { in buf_hash_remove()
1115 ASSERT3P(fhdr, !=, NULL); in buf_hash_remove()
1116 hdrp = &fhdr->b_hash_next; in buf_hash_remove()