/Linux-v5.10/fs/ext2/ |
D | xattr.c | 900 struct ext2_xattr_entry *entry1, *entry2; in ext2_xattr_cmp() local 902 entry1 = ENTRY(header1+1); in ext2_xattr_cmp() 904 while (!IS_LAST_ENTRY(entry1)) { in ext2_xattr_cmp() 907 if (entry1->e_hash != entry2->e_hash || in ext2_xattr_cmp() 908 entry1->e_name_index != entry2->e_name_index || in ext2_xattr_cmp() 909 entry1->e_name_len != entry2->e_name_len || in ext2_xattr_cmp() 910 entry1->e_value_size != entry2->e_value_size || in ext2_xattr_cmp() 911 memcmp(entry1->e_name, entry2->e_name, entry1->e_name_len)) in ext2_xattr_cmp() 913 if (entry1->e_value_block != 0 || entry2->e_value_block != 0) in ext2_xattr_cmp() 915 if (memcmp((char *)header1 + le16_to_cpu(entry1->e_value_offs), in ext2_xattr_cmp() [all …]
|
/Linux-v5.10/fs/ext4/ |
D | block_validity.c | 46 static inline int can_merge(struct ext4_system_zone *entry1, in can_merge() argument 49 if ((entry1->start_blk + entry1->count) == entry2->start_blk && in can_merge() 50 entry1->ino == entry2->ino) in can_merge()
|
D | xattr.c | 2995 struct ext4_xattr_entry *entry1, *entry2; in ext4_xattr_cmp() local 2997 entry1 = ENTRY(header1+1); in ext4_xattr_cmp() 2999 while (!IS_LAST_ENTRY(entry1)) { in ext4_xattr_cmp() 3002 if (entry1->e_hash != entry2->e_hash || in ext4_xattr_cmp() 3003 entry1->e_name_index != entry2->e_name_index || in ext4_xattr_cmp() 3004 entry1->e_name_len != entry2->e_name_len || in ext4_xattr_cmp() 3005 entry1->e_value_size != entry2->e_value_size || in ext4_xattr_cmp() 3006 entry1->e_value_inum != entry2->e_value_inum || in ext4_xattr_cmp() 3007 memcmp(entry1->e_name, entry2->e_name, entry1->e_name_len)) in ext4_xattr_cmp() 3009 if (!entry1->e_value_inum && in ext4_xattr_cmp() [all …]
|
/Linux-v5.10/arch/x86/kernel/apic/ |
D | io_apic.c | 502 struct IO_APIC_route_entry entry, entry1; in __eoi_ioapic_pin() local 504 entry = entry1 = __ioapic_read_entry(apic, pin); in __eoi_ioapic_pin() 509 entry1.mask = IOAPIC_MASKED; in __eoi_ioapic_pin() 510 entry1.trigger = IOAPIC_EDGE; in __eoi_ioapic_pin() 512 __ioapic_write_entry(apic, pin, entry1); in __eoi_ioapic_pin() 2028 struct IO_APIC_route_entry entry0, entry1; in unlock_ExtINT_logic() local 2045 memset(&entry1, 0, sizeof(entry1)); in unlock_ExtINT_logic() 2047 entry1.dest_mode = IOAPIC_DEST_MODE_PHYSICAL; in unlock_ExtINT_logic() 2048 entry1.mask = IOAPIC_UNMASKED; in unlock_ExtINT_logic() 2049 entry1.dest = hard_smp_processor_id(); in unlock_ExtINT_logic() [all …]
|
/Linux-v5.10/drivers/pci/controller/cadence/ |
D | pcie-cadence-host.c | 288 struct resource_entry *entry1, *entry2; in cdns_pcie_host_dma_ranges_cmp() local 290 entry1 = container_of(a, struct resource_entry, node); in cdns_pcie_host_dma_ranges_cmp() 293 return resource_size(entry2->res) - resource_size(entry1->res); in cdns_pcie_host_dma_ranges_cmp()
|
/Linux-v5.10/include/linux/ |
D | list.h | 186 static inline void list_swap(struct list_head *entry1, in list_swap() argument 192 list_replace(entry1, entry2); in list_swap() 193 if (pos == entry1) in list_swap() 195 list_add(entry1, pos); in list_swap()
|
/Linux-v5.10/net/ipv4/netfilter/ |
D | arp_tables.c | 1161 void *pos, *entry0, *entry1; in translate_compat_table() local 1201 entry1 = newinfo->entries; in translate_compat_table() 1202 pos = entry1; in translate_compat_table() 1206 newinfo, entry1); in translate_compat_table() 1223 ret = translate_table(net, newinfo, entry1, &repl); in translate_compat_table() 1228 *pentry0 = entry1; in translate_compat_table()
|
D | ip_tables.c | 1396 void *pos, *entry0, *entry1; in translate_compat_table() local 1436 entry1 = newinfo->entries; in translate_compat_table() 1437 pos = entry1; in translate_compat_table() 1441 newinfo, entry1); in translate_compat_table() 1463 ret = translate_table(net, newinfo, entry1, &repl); in translate_compat_table() 1468 *pentry0 = entry1; in translate_compat_table()
|
/Linux-v5.10/net/netfilter/ |
D | nf_flow_table_offload.c | 180 struct flow_action_entry *entry1 = flow_action_entry_next(flow_rule); in flow_offload_eth_src() local 197 flow_offload_mangle(entry1, FLOW_ACT_MANGLE_HDR_TYPE_ETH, 8, in flow_offload_eth_src() 210 struct flow_action_entry *entry1 = flow_action_entry_next(flow_rule); in flow_offload_eth_dst() local 242 flow_offload_mangle(entry1, FLOW_ACT_MANGLE_HDR_TYPE_ETH, 4, in flow_offload_eth_dst()
|
/Linux-v5.10/net/ipv6/netfilter/ |
D | ip6_tables.c | 1411 void *pos, *entry0, *entry1; in translate_compat_table() local 1451 entry1 = newinfo->entries; in translate_compat_table() 1452 pos = entry1; in translate_compat_table() 1456 newinfo, entry1); in translate_compat_table() 1472 ret = translate_table(net, newinfo, entry1, &repl); in translate_compat_table() 1477 *pentry0 = entry1; in translate_compat_table()
|
/Linux-v5.10/fs/xfs/libxfs/ |
D | xfs_attr_leaf.c | 2856 struct xfs_attr_leaf_entry *entry1; in xfs_attr3_leaf_flipflags() local 2892 entry1 = &xfs_attr3_leaf_entryp(leaf1)[args->index]; in xfs_attr3_leaf_flipflags() 2906 if (entry1->flags & XFS_ATTR_LOCAL) { in xfs_attr3_leaf_flipflags() 2924 ASSERT(be32_to_cpu(entry1->hashval) == be32_to_cpu(entry2->hashval)); in xfs_attr3_leaf_flipflags() 2929 ASSERT(entry1->flags & XFS_ATTR_INCOMPLETE); in xfs_attr3_leaf_flipflags() 2932 entry1->flags &= ~XFS_ATTR_INCOMPLETE; in xfs_attr3_leaf_flipflags() 2934 XFS_DA_LOGRANGE(leaf1, entry1, sizeof(*entry1))); in xfs_attr3_leaf_flipflags() 2936 ASSERT((entry1->flags & XFS_ATTR_LOCAL) == 0); in xfs_attr3_leaf_flipflags()
|
/Linux-v5.10/fs/ocfs2/ |
D | dir.c | 3484 const struct ocfs2_dx_entry *entry1 = a; in dx_leaf_sort_cmp() local 3486 u32 major_hash1 = le32_to_cpu(entry1->dx_major_hash); in dx_leaf_sort_cmp() 3488 u32 minor_hash1 = le32_to_cpu(entry1->dx_minor_hash); in dx_leaf_sort_cmp() 3508 struct ocfs2_dx_entry *entry1 = a; in dx_leaf_sort_swap() local 3511 BUG_ON(size != sizeof(*entry1)); in dx_leaf_sort_swap() 3513 swap(*entry1, *entry2); in dx_leaf_sort_swap()
|
/Linux-v5.10/drivers/staging/media/ipu3/include/ |
D | intel-ipu3.h | 2389 __u32 entry1:6; member
|