/third_party/mesa3d/src/gallium/frontends/nine/ |
H A D | device9.c | 733 * We are supposed to release old unused managed textures/buffers, in NineDevice9_EvictManagedResourcesInternal() 916 BOOL old = This->cursor.visible; in NineDevice9_ShowCursor() local 922 return old; in NineDevice9_ShowCursor() 931 return old; in NineDevice9_ShowCursor() 2657 struct NineBaseTexture9 *old; in NineDevice9_SetTexture() local 2677 old = state->texture[Stage]; in NineDevice9_SetTexture() 2678 if (old == tex) in NineDevice9_SetTexture()
|
/third_party/mesa3d/src/gallium/drivers/radeonsi/ |
H A D | si_state.c | 3009 /* Take the maximum of the old and new count. If the new count is lower, in si_set_framebuffer_state() 5088 struct si_vertex_elements *old = sctx->vertex_elements; in si_bind_vertex_elements() local 5105 if (old->instance_divisor_is_one != v->instance_divisor_is_one || in si_bind_vertex_elements() 5106 old->instance_divisor_is_fetched != v->instance_divisor_is_fetched || in si_bind_vertex_elements() 5107 (old->vb_alignment_check_mask ^ v->vb_alignment_check_mask) & in si_bind_vertex_elements() 5110 memcmp(old->vertex_buffer_index, v->vertex_buffer_index, in si_bind_vertex_elements() 5111 sizeof(v->vertex_buffer_index[0]) * MAX2(old->count, v->count))) || in si_bind_vertex_elements() 5116 old->fix_fetch_opencode != v->fix_fetch_opencode || in si_bind_vertex_elements() 5117 memcmp(old->fix_fetch, v->fix_fetch, sizeof(v->fix_fetch[0]) * in si_bind_vertex_elements() 5118 MAX2(old in si_bind_vertex_elements() [all...] |
/kernel/linux/linux-5.10/drivers/block/ |
H A D | nbd.c | 1155 struct socket *sock, *old; in nbd_reconnect_socket() local 1186 old = nsock->sock; in nbd_reconnect_socket() 1195 sockfd_put(old); in nbd_reconnect_socket()
|
/kernel/linux/linux-5.10/drivers/hwmon/ |
H A D | lm93.c | 484 static u8 LM93_TEMP_AUTO_OFFSET_TO_REG(u8 old, int off, int nr, int mode) in LM93_TEMP_AUTO_OFFSET_TO_REG() argument 490 return (old & 0xf0) | (new & 0x0f); in LM93_TEMP_AUTO_OFFSET_TO_REG() 494 return (new << 4 & 0xf0) | (old & 0x0f); in LM93_TEMP_AUTO_OFFSET_TO_REG()
|
/kernel/linux/linux-5.10/drivers/gpu/drm/exynos/ |
H A D | exynos_hdmi.c | 708 u32 old; in hdmi_reg_writemask() local 711 old = readl(hdata->regs + reg_id); in hdmi_reg_writemask() 712 value = (value & mask) | (old & ~mask); in hdmi_reg_writemask()
|
/kernel/linux/linux-5.10/drivers/scsi/ |
H A D | dpt_i2o.c | 785 struct adpt_i2o_post_wait_data *p1, *old; in adpt_i2o_sys_shutdown() local 804 old = p1; in adpt_i2o_sys_shutdown() 806 kfree(old); in adpt_i2o_sys_shutdown() 2341 // We found an old device - check it in adpt_i2o_reparse_lct()
|
/kernel/linux/linux-5.10/drivers/tty/serial/ |
H A D | amba-pl011.c | 1799 * initialise the old status of the modem signals in pl011_startup() 1964 struct ktermios *old) in pl011_set_termios() 1980 baud = uart_get_baud_rate(port, termios, old, 0, in pl011_set_termios() 2085 struct ktermios *old) in sbsa_uart_set_termios() 1963 pl011_set_termios(struct uart_port *port, struct ktermios *termios, struct ktermios *old) pl011_set_termios() argument 2084 sbsa_uart_set_termios(struct uart_port *port, struct ktermios *termios, struct ktermios *old) sbsa_uart_set_termios() argument
|
H A D | samsung_tty.c | 1217 unsigned int old) in s3c24xx_serial_pm() 1391 struct ktermios *old) in s3c24xx_serial_set_termios() 1412 baud = uart_get_baud_rate(port, termios, old, 0, 3000000); in s3c24xx_serial_set_termios() 1216 s3c24xx_serial_pm(struct uart_port *port, unsigned int level, unsigned int old) s3c24xx_serial_pm() argument 1389 s3c24xx_serial_set_termios(struct uart_port *port, struct ktermios *termios, struct ktermios *old) s3c24xx_serial_set_termios() argument
|
/kernel/linux/linux-5.10/drivers/video/fbdev/ |
H A D | atafb.c | 2050 register unsigned char old, new; in st_ovsc_switch() local 2066 old = new; in st_ovsc_switch() 2068 } while (old != new); in st_ovsc_switch()
|
/kernel/linux/linux-5.10/net/unix/ |
H A D | af_unix.c | 33 * old apps and it will avoid huge amount 1458 static void unix_sock_inherit_flags(const struct socket *old, in unix_sock_inherit_flags() argument 1461 if (test_bit(SOCK_PASSCRED, &old->flags)) in unix_sock_inherit_flags() 1463 if (test_bit(SOCK_PASSSEC, &old->flags)) in unix_sock_inherit_flags() 2225 - return fds, and do not return them on read (old strategy, in unix_dgram_recvmsg()
|
/kernel/linux/linux-5.10/sound/soc/codecs/ |
H A D | wm8996.c | 1819 int old; in wm8996_set_sysclk() local 1825 old = snd_soc_component_read(component, WM8996_AIF_CLOCKING_1) & WM8996_SYSCLK_ENA; in wm8996_set_sysclk() 1883 WM8996_SYSCLK_ENA, old); in wm8996_set_sysclk()
|
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | parse-events.c | 3062 int parse_events_copy_term_list(struct list_head *old, in parse_events_copy_term_list() argument 3068 if (!old) { in parse_events_copy_term_list() 3078 list_for_each_entry (term, old, list) { in parse_events_copy_term_list()
|
/kernel/linux/linux-5.10/lib/ |
H A D | test_xarray.c | 1448 void *old = xas_store(&xas, xa_mk_index(base + i)); in check_create_range_4() local 1450 XA_BUG_ON(xa, old != xa_mk_index(base + i)); in check_create_range_4() 1452 XA_BUG_ON(xa, old != NULL); in check_create_range_4()
|
/kernel/linux/linux-5.10/kernel/ |
H A D | sysctl.c | 724 /* This is in keeping with old __do_proc_dointvec() */ in do_proc_douintvec_w() 831 int ret, old; in proc_dointvec_minmax_warn_RT_change() local 836 old = *(int *)table->data; in proc_dointvec_minmax_warn_RT_change() 840 if (old != *(int *)table->data) in proc_dointvec_minmax_warn_RT_change()
|
/kernel/linux/linux-5.10/drivers/platform/x86/ |
H A D | asus-wmi.c | 1357 pr_info("set USB_INTEL_XUSB2PR old: 0x%04x, new: 0x%04x\n", in asus_wmi_set_xusb2pr() 2091 int old = bd->props.brightness; in asus_wmi_backlight_notify() local 2092 int new = old; in asus_wmi_backlight_notify() 2103 return old; in asus_wmi_backlight_notify()
|
/kernel/linux/linux-5.10/drivers/pinctrl/ |
H A D | pinctrl-ingenic.c | 2586 unsigned int i, npins, old = 0; in ingenic_pinconf_group_get() local 2598 if (i && (old != *config)) in ingenic_pinconf_group_get() 2601 old = *config; in ingenic_pinconf_group_get()
|
/kernel/linux/linux-6.6/drivers/tty/serial/ |
H A D | amba-pl011.c | 1874 * initialise the old status of the modem signals in pl011_startup() 2041 const struct ktermios *old) in pl011_set_termios() 2058 baud = uart_get_baud_rate(port, termios, old, 0, in pl011_set_termios() 2180 const struct ktermios *old) in sbsa_uart_set_termios() 2040 pl011_set_termios(struct uart_port *port, struct ktermios *termios, const struct ktermios *old) pl011_set_termios() argument 2179 sbsa_uart_set_termios(struct uart_port *port, struct ktermios *termios, const struct ktermios *old) sbsa_uart_set_termios() argument
|
H A D | samsung_tty.c | 1365 unsigned int old) in s3c24xx_serial_pm() 1536 const struct ktermios *old) in s3c24xx_serial_set_termios() 1557 baud = uart_get_baud_rate(port, termios, old, 0, 3000000); in s3c24xx_serial_set_termios() 1364 s3c24xx_serial_pm(struct uart_port *port, unsigned int level, unsigned int old) s3c24xx_serial_pm() argument 1534 s3c24xx_serial_set_termios(struct uart_port *port, struct ktermios *termios, const struct ktermios *old) s3c24xx_serial_set_termios() argument
|
/kernel/linux/linux-6.6/drivers/video/fbdev/ |
H A D | atafb.c | 2031 register unsigned char old, new; in st_ovsc_switch() local 2047 old = new; in st_ovsc_switch() 2049 } while (old != new); in st_ovsc_switch()
|
/kernel/linux/linux-6.6/drivers/block/ |
H A D | nbd.c | 1199 struct socket *sock, *old; in nbd_reconnect_socket() local 1230 old = nsock->sock; in nbd_reconnect_socket() 1240 sockfd_put(old); in nbd_reconnect_socket()
|
/kernel/linux/linux-6.6/kernel/ |
H A D | fork.c | 1460 /* Forbid mm->exe_file change if old file still mapped. */ in replace_mm_exe_file() 1626 * the old one. Because we mmput the new mm_struct before 1627 * restoring the old one. . . 2247 * This creates a new process as a copy of the old one, 2642 /* CLONE_PARENT re-uses the old parent */ in copy_process() 3437 * to a new ipc namespace, the semaphore arrays from the old in ksys_unshare() 3470 /* Orphan segments in old ns (see sem above). */ in ksys_unshare() 3534 struct files_struct *old, *copy = NULL; in unshare_files() local 3541 old = task->files; in unshare_files() 3545 put_files_struct(old); in unshare_files() [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/exynos/ |
H A D | exynos_hdmi.c | 717 u32 old; in hdmi_reg_writemask() local 720 old = readl(hdata->regs + reg_id); in hdmi_reg_writemask() 721 value = (value & mask) | (old & ~mask); in hdmi_reg_writemask()
|
/kernel/linux/linux-6.6/drivers/hwmon/ |
H A D | lm93.c | 484 static u8 LM93_TEMP_AUTO_OFFSET_TO_REG(u8 old, int off, int nr, int mode) in LM93_TEMP_AUTO_OFFSET_TO_REG() argument 490 return (old & 0xf0) | (new & 0x0f); in LM93_TEMP_AUTO_OFFSET_TO_REG() 494 return (new << 4 & 0xf0) | (old & 0x0f); in LM93_TEMP_AUTO_OFFSET_TO_REG()
|
/kernel/linux/linux-6.6/sound/soc/codecs/ |
H A D | wm8996.c | 1819 int old; in wm8996_set_sysclk() local 1825 old = snd_soc_component_read(component, WM8996_AIF_CLOCKING_1) & WM8996_SYSCLK_ENA; in wm8996_set_sysclk() 1883 WM8996_SYSCLK_ENA, old); in wm8996_set_sysclk()
|
/kernel/linux/linux-6.6/lib/ |
H A D | test_xarray.c | 1448 void *old = xas_store(&xas, xa_mk_index(base + i)); in check_create_range_4() local 1450 XA_BUG_ON(xa, old != xa_mk_index(base + i)); in check_create_range_4() 1452 XA_BUG_ON(xa, old != NULL); in check_create_range_4()
|