Home
last modified time | relevance | path

Searched refs:old_value (Results 1 – 22 of 22) sorted by relevance

/Linux-v5.4/arch/microblaze/kernel/
Dmodule.c28 unsigned long int old_value; in apply_relocate_add() local
53 old_value = *location; in apply_relocate_add()
54 *location = value + old_value; in apply_relocate_add()
57 old_value, value); in apply_relocate_add()
66 old_value = ((location[0] & 0x0000FFFF) << 16) | in apply_relocate_add()
68 value += old_value; in apply_relocate_add()
76 old_value, value); in apply_relocate_add()
82 old_value = (location[0] & 0xFFFF) << 16 | in apply_relocate_add()
84 value -= old_value; in apply_relocate_add()
/Linux-v5.4/tools/lib/bpf/
Dhashmap.c144 const void **old_key, void **old_value) in hashmap__insert() argument
152 if (old_value) in hashmap__insert()
153 *old_value = NULL; in hashmap__insert()
160 if (old_value) in hashmap__insert()
161 *old_value = entry->value; in hashmap__insert()
209 const void **old_key, void **old_value) in hashmap__delete() argument
220 if (old_value) in hashmap__delete()
221 *old_value = entry->value; in hashmap__delete()
Dhashmap.h97 const void **old_key, void **old_value);
107 const void **old_key, void **old_value) in hashmap__set() argument
110 old_key, old_value); in hashmap__set()
115 const void **old_key, void **old_value) in hashmap__update() argument
118 old_key, old_value); in hashmap__update()
128 const void **old_key, void **old_value);
/Linux-v5.4/drivers/xen/xen-pciback/
Dconf_space_capability.c118 u16 old_value; in pm_ctrl_write() local
121 err = pci_read_config_word(dev, offset, &old_value); in pm_ctrl_write()
128 if ((old_value & PM_OK_BITS) != new_value) { in pm_ctrl_write()
129 new_value = (old_value & ~PM_OK_BITS) | new_value; in pm_ctrl_write()
/Linux-v5.4/sound/drivers/opl4/
Dopl4_mixer.c39 u8 value, old_value; in snd_opl4_ctl_put() local
44 old_value = snd_opl4_read(opl4, reg); in snd_opl4_ctl_put()
47 return value != old_value; in snd_opl4_ctl_put()
/Linux-v5.4/fs/xfs/scrub/
Dfscounters.c258 const int64_t old_value, in xchk_fscount_within_range() argument
266 old_value); in xchk_fscount_within_range()
276 min_value = min(old_value, curr_value); in xchk_fscount_within_range()
277 max_value = max(old_value, curr_value); in xchk_fscount_within_range()
Dtrace.h633 int64_t old_value),
634 TP_ARGS(mp, expected, curr_value, old_value),
639 __field(int64_t, old_value)
645 __entry->old_value = old_value;
651 __entry->old_value)
/Linux-v5.4/drivers/mmc/host/
Dsdhci-of-esdhc.c226 int spec_reg, u32 value, u32 old_value) in esdhc_writel_fixup() argument
244 int spec_reg, u16 value, u32 old_value) in esdhc_writew_fixup() argument
257 return old_value; in esdhc_writew_fixup()
263 ret = old_value & (~(0xffff << shift)); in esdhc_writew_fixup()
278 int spec_reg, u8 value, u32 old_value) in esdhc_writeb_fixup() argument
290 return old_value; in esdhc_writeb_fixup()
301 return old_value; in esdhc_writeb_fixup()
305 ret = (old_value & (~(SDHCI_CTRL_DMA_MASK << 5))) | dma_bits; in esdhc_writeb_fixup()
307 (old_value & SDHCI_CTRL_DMA_MASK); in esdhc_writeb_fixup()
315 ret = (old_value & (~(0xff << shift))) | (value << shift); in esdhc_writeb_fixup()
/Linux-v5.4/drivers/media/usb/gspca/m5602/
Dm5602_ov7660.c453 u8 old_value, ctrl_value; in ov7660_dump_registers() local
456 m5602_read_sensor(sd, address, &old_value, 1); in ov7660_dump_registers()
466 m5602_write_sensor(sd, address, &old_value, 1); in ov7660_dump_registers()
Dm5602_po1030.c608 u8 old_value, ctrl_value; in po1030_dump_registers() local
611 m5602_read_sensor(sd, address, &old_value, 1); in po1030_dump_registers()
621 m5602_write_sensor(sd, address, &old_value, 1); in po1030_dump_registers()
Dm5602_ov9650.c769 u8 old_value, ctrl_value; in ov9650_dump_registers() local
772 m5602_read_sensor(sd, address, &old_value, 1); in ov9650_dump_registers()
782 m5602_write_sensor(sd, address, &old_value, 1); in ov9650_dump_registers()
Dm5602_s5k4aa.c740 u8 old_value, ctrl_value, test_value = 0xff; in s5k4aa_dump_registers() local
742 m5602_read_sensor(sd, address, &old_value, 1); in s5k4aa_dump_registers()
754 m5602_write_sensor(sd, address, &old_value, 1); in s5k4aa_dump_registers()
/Linux-v5.4/drivers/md/persistent-data/
Ddm-array.c805 void *old_value; in array_set_value() local
822 old_value = element_at(info, ab, entry); in array_set_value()
824 (!vt->equal || !vt->equal(vt->context, old_value, value))) { in array_set_value()
825 vt->dec(vt->context, old_value); in array_set_value()
830 memcpy(old_value, value, info->value_type.size); in array_set_value()
/Linux-v5.4/drivers/net/ethernet/intel/i40e/
Di40e_ethtool.c3969 bool old_value, new_value; in i40e_print_input_set() local
3972 old_value = !!(old & I40E_L3_SRC_MASK); in i40e_print_input_set()
3974 if (old_value != new_value) in i40e_print_input_set()
3976 old_value ? "ON" : "OFF", in i40e_print_input_set()
3979 old_value = !!(old & I40E_L3_DST_MASK); in i40e_print_input_set()
3981 if (old_value != new_value) in i40e_print_input_set()
3983 old_value ? "ON" : "OFF", in i40e_print_input_set()
3986 old_value = !!(old & I40E_L4_SRC_MASK); in i40e_print_input_set()
3988 if (old_value != new_value) in i40e_print_input_set()
3990 old_value ? "ON" : "OFF", in i40e_print_input_set()
[all …]
/Linux-v5.4/drivers/net/wan/
Dwanxl.c497 u32 old_value = readl(card->plx + PLX_CONTROL) & ~PLX_CTL_RESET; in wanxl_reset() local
500 writel(old_value | PLX_CTL_RESET, card->plx + PLX_CONTROL); in wanxl_reset()
503 writel(old_value, card->plx + PLX_CONTROL); in wanxl_reset()
/Linux-v5.4/fs/xfs/
Dxfs_inode.c2119 xfs_agino_t old_value; in xfs_iunlink_update_bucket() local
2124 old_value = be32_to_cpu(agi->agi_unlinked[bucket_index]); in xfs_iunlink_update_bucket()
2126 old_value, new_agino); in xfs_iunlink_update_bucket()
2133 if (old_value == new_agino) in xfs_iunlink_update_bucket()
2185 xfs_agino_t old_value; in xfs_iunlink_update_inode() local
2195 old_value = be32_to_cpu(dip->di_next_unlinked); in xfs_iunlink_update_inode()
2196 if (!xfs_verify_agino_or_null(mp, agno, old_value)) { in xfs_iunlink_update_inode()
2206 *old_next_agino = old_value; in xfs_iunlink_update_inode()
2207 if (old_value == next_agino) { in xfs_iunlink_update_inode()
/Linux-v5.4/net/ipv4/
Ddevinet.c2372 int old_value = *(int *)ctl->data; in devinet_conf_proc() local
2388 if ((new_value == 0) && (old_value != 0)) in devinet_conf_proc()
2392 new_value != old_value) in devinet_conf_proc()
2396 new_value != old_value) { in devinet_conf_proc()
2403 new_value != old_value) { in devinet_conf_proc()
2410 new_value != old_value) { in devinet_conf_proc()
/Linux-v5.4/drivers/ps3/
Dps3-lpm.c366 u64 old_value; in ps3_write_pm07_control() local
375 &old_value); in ps3_write_pm07_control()
/Linux-v5.4/arch/x86/kvm/
Dlapic.c2112 u64 old_value = vcpu->arch.apic_base; in kvm_lapic_set_base() local
2120 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE) in kvm_lapic_set_base()
2127 if ((old_value ^ value) & MSR_IA32_APICBASE_ENABLE) { in kvm_lapic_set_base()
2137 if (((old_value ^ value) & X2APIC_ENABLE) && (value & X2APIC_ENABLE)) in kvm_lapic_set_base()
2140 if ((old_value ^ value) & (MSR_IA32_APICBASE_ENABLE | X2APIC_ENABLE)) in kvm_lapic_set_base()
/Linux-v5.4/security/selinux/
Dselinuxfs.c142 int old_value, new_value; in sel_write_enforce() local
161 old_value = enforcing_enabled(state); in sel_write_enforce()
162 if (new_value != old_value) { in sel_write_enforce()
172 new_value, old_value, in sel_write_enforce()
/Linux-v5.4/sound/usb/
Dmixer_quirks.c332 int old_value = kcontrol->private_value >> 8; in snd_audigy2nx_led_put() local
337 if (value == old_value) in snd_audigy2nx_led_put()
/Linux-v5.4/drivers/nvme/host/
Dpci.c312 u16 old_value; in nvme_dbbuf_update_and_check_event() local
320 old_value = *dbbuf_db; in nvme_dbbuf_update_and_check_event()
331 if (!nvme_dbbuf_need_event(*dbbuf_ei, value, old_value)) in nvme_dbbuf_update_and_check_event()