Home
last modified time | relevance | path

Searched refs:old (Results 1601 - 1625 of 2800) sorted by relevance

1...<<61626364656667686970>>...112

/kernel/linux/linux-6.6/net/mac80211/
H A Drate.c949 struct ieee80211_sta_rates *old; in rate_control_set_rates() local
962 old = rcu_dereference_protected(pubsta->rates, true); in rate_control_set_rates()
964 if (old) in rate_control_set_rates()
965 kfree_rcu(old, rcu_head); in rate_control_set_rates()
/third_party/mesa3d/src/gallium/winsys/virgl/vtest/
H A Dvirgl_vtest_winsys.c210 struct virgl_hw_res *old = *dres; in virgl_vtest_resource_reference() local
213 if (!can_cache_resource_with_bind(old->bind)) { in virgl_vtest_resource_reference()
214 virgl_hw_res_destroy(vtws, old); in virgl_vtest_resource_reference()
217 virgl_resource_cache_add(&vtws->cache, &old->cache_entry); in virgl_vtest_resource_reference()
/third_party/node/src/
H A Dnode.cc476 struct sigaction old; in ResetSignalHandlers() local
477 CHECK_EQ(0, sigaction(nr, nullptr, &old)); in ResetSignalHandlers()
478 if ((old.sa_flags & SA_SIGINFO) || old.sa_handler != SIG_IGN) continue; in ResetSignalHandlers()
1008 // force the old behavior. in InitializeOncePerProcess()
/third_party/lwip/src/core/ipv4/
H A Detharp.c243 /* pending or stable entry has become old! */ in etharp_tmr()
275 * old entries. Heuristic choose the least important entry for recycling.
1060 /* referencing the old pbuf is enough */
1091 struct etharp_q_entry *old; local
1092 old = arp_table[i].q;
1094 pbuf_free(old->p);
1095 memp_free(MEMP_ARP_QUEUE, old);
/third_party/python/Objects/clinic/
H A Dunicodeobject.c.h687 "replace($self, old, new, count=-1, /)\n"
690 "Return a copy with all occurrences of substring old replaced by new.\n"
703 unicode_replace_impl(PyObject *self, PyObject *old, PyObject *new,
710 PyObject *old; in unicode_replace() local
724 old = args[0]; in unicode_replace()
749 return_value = unicode_replace_impl(self, old, new, count); in unicode_replace()
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/wps/
H A Dwps_upnp_web.c472 struct upnp_wps_peer *old; in web_process_get_device_info() local
474 old = dl_list_first(&iface->peers, struct upnp_wps_peer, list); in web_process_get_device_info()
475 if (old) { in web_process_get_device_info()
477 wps_upnp_peer_del(old); in web_process_get_device_info()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/wps/
H A Dwps_upnp_web.c472 struct upnp_wps_peer *old; in web_process_get_device_info() local
474 old = dl_list_first(&iface->peers, struct upnp_wps_peer, list); in web_process_get_device_info()
475 if (old) { in web_process_get_device_info()
477 wps_upnp_peer_del(old); in web_process_get_device_info()
/kernel/linux/linux-5.10/fs/
H A Dnamei.c52 * The new code replaces the old recursive symlink resolution with
77 * name indicated by the symlink. The old code always complained that the
85 * "old" one. Personally, I think the new semantics is much more logical.
86 * Note that "ln old new" where "new" is a symlink pointing to a non-existing
88 * and in the old Linux semantics.
106 * restored for 2.4. This is the last surviving part of old 4.2BSD bug.
532 struct nameidata *old = current->nameidata; in set_nameidata() local
538 p->total_link_count = old ? old->total_link_count : 0; in set_nameidata()
539 p->saved = old; in set_nameidata()
546 struct nameidata *now = current->nameidata, *old = now->saved; restore_nameidata() local
1449 struct dentry *old; __lookup_hash() local
1539 struct dentry *dentry, *old; __lookup_slow() local
1737 struct dentry *parent, *old; follow_dotdot_rcu() local
[all...]
/kernel/linux/linux-5.10/drivers/ata/
H A Dsata_mv.c956 * @old: pointer to cached value of the register
962 static inline void mv_write_cached_reg(void __iomem *addr, u32 *old, u32 new) in mv_write_cached_reg() argument
964 if (new != *old) { in mv_write_cached_reg()
966 *old = new; in mv_write_cached_reg()
1510 u32 old, new; in mv_60x1_errata_sata25() local
1513 old = readl(hpriv->base + GPIO_PORT_CTL); in mv_60x1_errata_sata25()
1515 new = old | (1 << 22); in mv_60x1_errata_sata25()
1517 new = old & ~(1 << 22); in mv_60x1_errata_sata25()
1518 if (new != old) in mv_60x1_errata_sata25()
1537 u32 new, *old in mv_bmdma_enable_iie() local
3596 int old = reg & 0xf; mv_pmp_select() local
[all...]
/kernel/linux/linux-5.10/drivers/media/v4l2-core/
H A Dv4l2-ctrls.c3042 bool old; in v4l2_ctrl_activate() local
3049 old = test_and_set_bit(4, &ctrl->flags); in v4l2_ctrl_activate()
3052 old = test_and_clear_bit(4, &ctrl->flags); in v4l2_ctrl_activate()
3053 if (old != inactive) in v4l2_ctrl_activate()
3060 bool old; in __v4l2_ctrl_grab() local
3069 old = test_and_set_bit(1, &ctrl->flags); in __v4l2_ctrl_grab()
3072 old = test_and_clear_bit(1, &ctrl->flags); in __v4l2_ctrl_grab()
3073 if (old != grabbed) in __v4l2_ctrl_grab()
3555 "old-style private controls not allowed\n"); in prepare_ext_ctrls()
4624 void v4l2_ctrl_replace(struct v4l2_event *old, cons argument
4633 v4l2_ctrl_merge(const struct v4l2_event *old, struct v4l2_event *new) v4l2_ctrl_merge() argument
[all...]
/kernel/linux/linux-6.6/drivers/ata/
H A Dsata_mv.c960 * @old: pointer to cached value of the register
966 static inline void mv_write_cached_reg(void __iomem *addr, u32 *old, u32 new) in mv_write_cached_reg() argument
968 if (new != *old) { in mv_write_cached_reg()
970 *old = new; in mv_write_cached_reg()
1506 u32 old, new; in mv_60x1_errata_sata25() local
1509 old = readl(hpriv->base + GPIO_PORT_CTL); in mv_60x1_errata_sata25()
1511 new = old | (1 << 22); in mv_60x1_errata_sata25()
1513 new = old & ~(1 << 22); in mv_60x1_errata_sata25()
1514 if (new != old) in mv_60x1_errata_sata25()
1533 u32 new, *old in mv_bmdma_enable_iie() local
3595 int old = reg & 0xf; mv_pmp_select() local
[all...]
/kernel/linux/linux-5.10/arch/arm/mach-omap1/
H A Dboard-ams-delta.c755 static void modem_pm(struct uart_port *port, unsigned int state, unsigned old) in modem_pm() argument
766 if (state == old) in modem_pm()
771 else if (old == 0) in modem_pm()
/kernel/linux/linux-5.10/arch/x86/kernel/
H A Dmpparse.c885 unsigned char old, new; in update_mp_table() local
888 old = mpf_checksum((unsigned char *)mpc, mpc->length); in update_mp_table()
891 if (old == new) { in update_mp_table()
/kernel/linux/linux-5.10/arch/alpha/lib/
H A Dev6-memset.S219 mskql $1,$16,$4 # U : Clear old
397 mskql $1,$16,$4 # U : Clear old
585 mskql $1,$16,$4 # U : Clear old
/kernel/linux/linux-5.10/drivers/amba/
H A Dbus.c101 char *driver_override, *old, *cp; in driver_override_store() local
116 old = dev->driver_override; in driver_override_store()
125 kfree(old); in driver_override_store()
/kernel/linux/linux-6.6/arch/alpha/lib/
H A Dev6-memset.S219 mskql $1,$16,$4 # U : Clear old
397 mskql $1,$16,$4 # U : Clear old
585 mskql $1,$16,$4 # U : Clear old
/kernel/linux/linux-5.10/drivers/mfd/
H A Ducb1x00-core.c156 unsigned old, mask = 1 << offset; in ucb1x00_gpio_direction_output() local
159 old = ucb->io_out; in ucb1x00_gpio_direction_output()
166 if (old != ucb->io_out) in ucb1x00_gpio_direction_output()
/kernel/linux/linux-5.10/drivers/md/
H A Ddm-snap-persistent.c443 chunk_t old, chunk_t new), in insert_exceptions()
487 int (*callback)(void *callback_context, chunk_t old, in read_exceptions()
606 chunk_t old, chunk_t new), in persistent_read_metadata()
958 DMERR("Unable to register old-style persistent exception " in dm_persistent_snapshot_init()
441 insert_exceptions(struct pstore *ps, void *ps_area, int (*callback)(void *callback_context, chunk_t old, chunk_t new), void *callback_context, int *full) insert_exceptions() argument
486 read_exceptions(struct pstore *ps, int (*callback)(void *callback_context, chunk_t old, chunk_t new), void *callback_context) read_exceptions() argument
604 persistent_read_metadata(struct dm_exception_store *store, int (*callback)(void *callback_context, chunk_t old, chunk_t new), void *callback_context) persistent_read_metadata() argument
/kernel/linux/linux-5.10/drivers/iommu/intel/
H A Dpasid.c335 u64 old; in pasid_set_bits() local
337 old = READ_ONCE(*ptr); in pasid_set_bits()
338 WRITE_ONCE(*ptr, (old & ~mask) | bits); in pasid_set_bits()
/kernel/linux/linux-5.10/drivers/infiniband/core/
H A Drdma_core.c599 void *old; in alloc_commit_idr_uobject() local
608 old = xa_store(&ufile->idr, uobj->id, uobj, GFP_KERNEL); in alloc_commit_idr_uobject()
609 WARN_ON(old != NULL); in alloc_commit_idr_uobject()
/kernel/linux/linux-5.10/drivers/pinctrl/mediatek/
H A Dpinctrl-moore.c354 unsigned int i, npins, old = 0; in mtk_pinconf_group_get() local
366 if (i && old != *config) in mtk_pinconf_group_get()
369 old = *config; in mtk_pinconf_group_get()
528 /* Just for backward compatible for these old pinctrl nodes without in mtk_build_gpiochip()
/kernel/linux/linux-5.10/sound/i2c/other/
H A Dak4117.c110 unsigned char old = chip->regmap[AK4117_REG_PWRDN], reg; in snd_ak4117_reinit() local
118 reg_write(chip, AK4117_REG_PWRDN, (old | AK4117_RST) & ~AK4117_PWN); in snd_ak4117_reinit()
123 reg_write(chip, AK4117_REG_PWRDN, old | AK4117_RST | AK4117_PWN); in snd_ak4117_reinit()
/kernel/linux/linux-5.10/sound/pci/ac97/
H A Dac97_pcm.c161 unsigned short old, bits, reg, mask; in set_spdif_rate() local
196 old = snd_ac97_read(ac97, reg) & mask; in set_spdif_rate()
197 if (old != bits) { in set_spdif_rate()
/kernel/linux/linux-5.10/sound/usb/6fire/
H A Dcontrol.c237 u8 old = rt->output_mute; in usb6fire_control_output_mute_put() local
253 if (rt->output_mute != old) in usb6fire_control_output_mute_put()
256 return rt->output_mute != old; in usb6fire_control_output_mute_put()
/kernel/linux/linux-5.10/init/
H A Dinitramfs.c312 char *old = find_link(major, minor, ino, mode, collected); in maybe_link() local
313 if (old) { in maybe_link()
315 return (init_link(old, collected) < 0) ? -1 : 1; in maybe_link()

Completed in 52 milliseconds

1...<<61626364656667686970>>...112