Searched refs:hdr1 (Results 1 – 8 of 8) sorted by relevance
/linux/drivers/net/wireless/realtek/rtw88/ |
H A D | efuse.c | 20 #define invalid_efuse_header(hdr1, hdr2) \ argument 21 ((hdr1) == 0xff || (((hdr1) & 0x1f) == 0xf && (hdr2) == 0xff)) 24 #define get_efuse_blk_idx_2_byte(hdr1, hdr2) \ argument 25 ((((hdr2) & 0xf0) >> 1) | (((hdr1) >> 5) & 0x07)) 26 #define get_efuse_blk_idx_1_byte(hdr1) \ argument 27 (((hdr1) & 0xf0) >> 4) 47 u8 hdr1, hdr2; in rtw_dump_logical_efuse_map() local 53 hdr1 = phy_map[phy_idx]; in rtw_dump_logical_efuse_map() 55 if (invalid_efuse_header(hdr1, hdr2)) in rtw_dump_logical_efuse_map() 58 if ((hdr1 & 0x1f) == 0xf) { in rtw_dump_logical_efuse_map() [all …]
|
/linux/fs/ntfs3/ |
H A D | index.c | 1795 struct INDEX_HDR *hdr1 = &n1->index->ihdr; in indx_insert_into_buffer() local 1805 e = hdr_insert_de(indx, hdr1, new_de, e, ctx); in indx_insert_into_buffer() 1824 sp = hdr_find_split(hdr1); in indx_insert_into_buffer() 1834 used1 = le32_to_cpu(hdr1->used); in indx_insert_into_buffer() 1835 hdr1_saved = kmemdup(hdr1, used1, GFP_NOFS); in indx_insert_into_buffer() 1841 if (!hdr1->flags) { in indx_insert_into_buffer() 1868 de_t = hdr_first_de(hdr1); in indx_insert_into_buffer() 1874 memmove(de_t, Add2Ptr(sp, sp_size), used - le32_to_cpu(hdr1->de_off)); in indx_insert_into_buffer() 1875 hdr1->used = cpu_to_le32(used); in indx_insert_into_buffer() 1886 hdr1, in indx_insert_into_buffer() [all …]
|
/linux/drivers/infiniband/core/ |
H A D | user_mad.c | 462 static int same_destination(struct ib_user_mad_hdr *hdr1, in same_destination() argument 465 if (!hdr1->grh_present && !hdr2->grh_present) in same_destination() 466 return (hdr1->lid == hdr2->lid); in same_destination() 468 if (hdr1->grh_present && hdr2->grh_present) in same_destination() 469 return !memcmp(hdr1->gid, hdr2->gid, 16); in same_destination()
|
/linux/arch/arm/kernel/ |
H A D | atags_parse.c | 40 struct tag_header hdr1; member
|
/linux/drivers/crypto/ |
H A D | talitos.h | 37 __be32 hdr1; /* header for SEC1 */ member
|
/linux/drivers/scsi/csiostor/ |
H A D | csio_hw.c | 2225 static int fw_compatible(const struct fw_hdr *hdr1, const struct fw_hdr *hdr2) in fw_compatible() argument 2229 if (hdr1->chip == hdr2->chip && hdr1->fw_ver == hdr2->fw_ver) in fw_compatible() 2232 #define SAME_INTF(x) (hdr1->intfver_##x == hdr2->intfver_##x) in fw_compatible() 2233 if (hdr1->chip == hdr2->chip && SAME_INTF(nic) && SAME_INTF(vnic) && in fw_compatible()
|
/linux/drivers/net/ethernet/chelsio/cxgb4/ |
H A D | t4_hw.c | 3415 static int fw_compatible(const struct fw_hdr *hdr1, const struct fw_hdr *hdr2) in fw_compatible() argument 3419 if (hdr1->chip == hdr2->chip && hdr1->fw_ver == hdr2->fw_ver) in fw_compatible() 3422 #define SAME_INTF(x) (hdr1->intfver_##x == hdr2->intfver_##x) in fw_compatible() 3423 if (hdr1->chip == hdr2->chip && SAME_INTF(nic) && SAME_INTF(vnic) && in fw_compatible()
|
/linux/kernel/bpf/ |
H A D | verifier.c | 1847 struct bpf_verifier_state *cur1, *hdr1; in update_loop_entry() local 1850 hdr1 = get_loop_entry(hdr) ?: hdr; in update_loop_entry() 1857 if (hdr1->branches && hdr1->dfs_depth <= cur1->dfs_depth) { in update_loop_entry()
|