Home
last modified time | relevance | path

Searched refs:info (Results 801 - 825 of 17849) sorted by relevance

1...<<31323334353637383940>>...714

/kernel/linux/linux-5.10/drivers/video/fbdev/aty/
H A Dmach64_cursor.c68 static int atyfb_cursor(struct fb_info *info, struct fb_cursor *cursor) in atyfb_cursor() argument
70 struct atyfb_par *par = (struct atyfb_par *) info->par; in atyfb_cursor()
91 x = cursor->image.dx - cursor->hot.x - info->var.xoffset; in atyfb_cursor()
99 y = cursor->image.dy - cursor->hot.y - info->var.yoffset; in atyfb_cursor()
118 aty_st_le32(CUR_OFFSET, (info->fix.smem_len >> 3) + (yoff << 1), par); in atyfb_cursor()
131 fg = ((info->cmap.red[fg_idx] & 0xff) << 24) | in atyfb_cursor()
132 ((info->cmap.green[fg_idx] & 0xff) << 16) | in atyfb_cursor()
133 ((info->cmap.blue[fg_idx] & 0xff) << 8) | 0xff; in atyfb_cursor()
135 bg = ((info->cmap.red[bg_idx] & 0xff) << 24) | in atyfb_cursor()
136 ((info in atyfb_cursor()
197 aty_init_cursor(struct fb_info *info, struct fb_ops *atyfb_ops) aty_init_cursor() argument
[all...]
/kernel/linux/linux-6.6/drivers/video/fbdev/aty/
H A Dmach64_cursor.c68 static int atyfb_cursor(struct fb_info *info, struct fb_cursor *cursor) in atyfb_cursor() argument
70 struct atyfb_par *par = (struct atyfb_par *) info->par; in atyfb_cursor()
91 x = cursor->image.dx - cursor->hot.x - info->var.xoffset; in atyfb_cursor()
99 y = cursor->image.dy - cursor->hot.y - info->var.yoffset; in atyfb_cursor()
118 aty_st_le32(CUR_OFFSET, (info->fix.smem_len >> 3) + (yoff << 1), par); in atyfb_cursor()
131 fg = ((info->cmap.red[fg_idx] & 0xff) << 24) | in atyfb_cursor()
132 ((info->cmap.green[fg_idx] & 0xff) << 16) | in atyfb_cursor()
133 ((info->cmap.blue[fg_idx] & 0xff) << 8) | 0xff; in atyfb_cursor()
135 bg = ((info->cmap.red[bg_idx] & 0xff) << 24) | in atyfb_cursor()
136 ((info in atyfb_cursor()
197 aty_init_cursor(struct fb_info *info, struct fb_ops *atyfb_ops) aty_init_cursor() argument
[all...]
/kernel/linux/linux-6.6/drivers/pps/clients/
H A Dpps-gpio.c30 struct pps_source_info info; /* PPS source information */ member
46 const struct pps_gpio_device_data *info; in pps_gpio_irq_handler() local
53 info = data; in pps_gpio_irq_handler()
55 rising_edge = gpiod_get_value(info->gpio_pin); in pps_gpio_irq_handler()
56 if ((rising_edge && !info->assert_falling_edge) || in pps_gpio_irq_handler()
57 (!rising_edge && info->assert_falling_edge)) in pps_gpio_irq_handler()
58 pps_event(info->pps, &ts, PPS_CAPTUREASSERT, data); in pps_gpio_irq_handler()
59 else if (info->capture_clear && in pps_gpio_irq_handler()
60 ((rising_edge && info->assert_falling_edge) || in pps_gpio_irq_handler()
61 (!rising_edge && !info in pps_gpio_irq_handler()
71 struct pps_gpio_device_data *info = data; pps_gpio_echo() local
95 const struct pps_gpio_device_data *info; pps_gpio_echo_timer_callback() local
[all...]
/kernel/linux/linux-6.6/drivers/iio/adc/
H A Dsun20i-gpadc-iio.c62 static int sun20i_gpadc_adc_read(struct sun20i_gpadc_iio *info, in sun20i_gpadc_adc_read() argument
68 mutex_lock(&info->lock); in sun20i_gpadc_adc_read()
70 reinit_completion(&info->completion); in sun20i_gpadc_adc_read()
72 if (info->last_channel != chan->channel) { in sun20i_gpadc_adc_read()
73 info->last_channel = chan->channel; in sun20i_gpadc_adc_read()
77 info->regs + SUN20I_GPADC_CS_EN); in sun20i_gpadc_adc_read()
81 info->regs + SUN20I_GPADC_DATA_INTC); in sun20i_gpadc_adc_read()
85 ctrl = readl(info->regs + SUN20I_GPADC_CTRL); in sun20i_gpadc_adc_read()
87 writel(ctrl, info->regs + SUN20I_GPADC_CTRL); in sun20i_gpadc_adc_read()
96 if (!wait_for_completion_timeout(&info in sun20i_gpadc_adc_read()
114 struct sun20i_gpadc_iio *info = iio_priv(indio_dev); sun20i_gpadc_read_raw() local
131 struct sun20i_gpadc_iio *info = data; sun20i_gpadc_irq_handler() local
196 struct sun20i_gpadc_iio *info; sun20i_gpadc_probe() local
[all...]
/kernel/linux/linux-6.6/tools/perf/util/
H A Dbpf-utils.c72 static __u32 bpf_prog_info_read_offset_u32(struct bpf_prog_info *info, in bpf_prog_info_read_offset_u32() argument
75 __u32 *array = (__u32 *)info; in bpf_prog_info_read_offset_u32()
82 static __u64 bpf_prog_info_read_offset_u64(struct bpf_prog_info *info, in bpf_prog_info_read_offset_u64() argument
85 __u64 *array = (__u64 *)info; in bpf_prog_info_read_offset_u64()
92 static void bpf_prog_info_set_offset_u32(struct bpf_prog_info *info, int offset, in bpf_prog_info_set_offset_u32() argument
95 __u32 *array = (__u32 *)info; in bpf_prog_info_set_offset_u32()
101 static void bpf_prog_info_set_offset_u64(struct bpf_prog_info *info, int offset, in bpf_prog_info_set_offset_u64() argument
104 __u64 *array = (__u64 *)info; in bpf_prog_info_set_offset_u64()
113 struct bpf_prog_info info = {}; in get_bpf_prog_info_linear() local
115 __u32 info_len = sizeof(info); in get_bpf_prog_info_linear()
[all...]
/third_party/alsa-utils/alsactl/
H A Dinfo.c2 * Advanced Linux Sound Architecture Control Program - General info
68 error("control digital audio playback info (%s): %s", snd_ctl_name(ctl), snd_strerror(err)); in pcm_device_list()
97 snd_rawmidi_info_t *info; in rawmidi_device_list() local
98 snd_rawmidi_info_alloca(&info); in rawmidi_device_list()
110 snd_rawmidi_info_set_device(info, dev); in rawmidi_device_list()
111 snd_rawmidi_info_set_subdevice(info, 0); in rawmidi_device_list()
112 snd_rawmidi_info_set_stream(info, stream); in rawmidi_device_list()
113 if ((err = snd_ctl_rawmidi_info(ctl, info)) < 0) { in rawmidi_device_list()
128 snd_rawmidi_info_get_id(info), in rawmidi_device_list()
129 snd_rawmidi_info_get_name(info)); in rawmidi_device_list()
154 snd_hwdep_info_t *info; hwdep_device_list() local
189 snd_ctl_card_info_t *info; card_info() local
[all...]
/third_party/libuv/src/unix/
H A Dopenbsd.c49 struct loadavg info; in uv_loadavg() local
50 size_t size = sizeof(info); in uv_loadavg()
53 if (sysctl(which, ARRAY_SIZE(which), &info, &size, NULL, 0) < 0) return; in uv_loadavg()
55 avg[0] = (double) info.ldavg[0] / info.fscale; in uv_loadavg()
56 avg[1] = (double) info.ldavg[1] / info.fscale; in uv_loadavg()
57 avg[2] = (double) info.ldavg[2] / info.fscale; in uv_loadavg()
114 struct uvmexp info; in uv_get_free_memory() local
126 uint64_t info; uv_get_total_memory() local
170 struct timeval info; uv_uptime() local
187 uint64_t info[CPUSTATES]; uv_cpu_info() local
[all...]
/third_party/node/deps/uv/src/unix/
H A Dopenbsd.c49 struct loadavg info; in uv_loadavg() local
50 size_t size = sizeof(info); in uv_loadavg()
53 if (sysctl(which, ARRAY_SIZE(which), &info, &size, NULL, 0) < 0) return; in uv_loadavg()
55 avg[0] = (double) info.ldavg[0] / info.fscale; in uv_loadavg()
56 avg[1] = (double) info.ldavg[1] / info.fscale; in uv_loadavg()
57 avg[2] = (double) info.ldavg[2] / info.fscale; in uv_loadavg()
114 struct uvmexp info; in uv_get_free_memory() local
126 uint64_t info; uv_get_total_memory() local
165 struct timeval info; uv_uptime() local
182 uint64_t info[CPUSTATES]; uv_cpu_info() local
[all...]
/third_party/skia/src/gpu/d3d/
H A DGrD3DRenderTarget.cpp22 const GrD3DTextureResourceInfo& info, in GrD3DRenderTarget()
29 : GrSurface(gpu, dimensions, info.fProtected) in GrD3DRenderTarget()
30 , GrD3DTextureResource(info, std::move(state)) in GrD3DRenderTarget()
32 , GrRenderTarget(gpu, dimensions, msaaInfo.fSampleCount, info.fProtected) in GrD3DRenderTarget()
36 SkASSERT(info.fProtected == msaaInfo.fProtected); in GrD3DRenderTarget()
45 const GrD3DTextureResourceInfo& info, in GrD3DRenderTarget()
51 : GrSurface(gpu, dimensions, info.fProtected) in GrD3DRenderTarget()
52 , GrD3DTextureResource(info, std::move(state)) in GrD3DRenderTarget()
54 , GrRenderTarget(gpu, dimensions, msaaInfo.fSampleCount, info.fProtected) in GrD3DRenderTarget()
58 SkASSERT(info in GrD3DRenderTarget()
20 GrD3DRenderTarget(GrD3DGpu* gpu, SkISize dimensions, const GrD3DTextureResourceInfo& info, sk_sp<GrD3DResourceState> state, const GrD3DTextureResourceInfo& msaaInfo, sk_sp<GrD3DResourceState> msaaState, const GrD3DDescriptorHeap::CPUHandle& colorRenderTargetView, const GrD3DDescriptorHeap::CPUHandle& resolveRenderTargetView, Wrapped) GrD3DRenderTarget() argument
43 GrD3DRenderTarget(GrD3DGpu* gpu, SkISize dimensions, const GrD3DTextureResourceInfo& info, sk_sp<GrD3DResourceState> state, const GrD3DTextureResourceInfo& msaaInfo, sk_sp<GrD3DResourceState> msaaState, const GrD3DDescriptorHeap::CPUHandle& colorRenderTargetView, const GrD3DDescriptorHeap::CPUHandle& resolveRenderTargetView) GrD3DRenderTarget() argument
64 GrD3DRenderTarget(GrD3DGpu* gpu, SkISize dimensions, const GrD3DTextureResourceInfo& info, sk_sp<GrD3DResourceState> state, const GrD3DDescriptorHeap::CPUHandle& renderTargetView, Wrapped) GrD3DRenderTarget() argument
80 GrD3DRenderTarget(GrD3DGpu* gpu, SkISize dimensions, const GrD3DTextureResourceInfo& info, sk_sp<GrD3DResourceState> state, const GrD3DDescriptorHeap::CPUHandle& renderTargetView) GrD3DRenderTarget() argument
91 MakeWrappedRenderTarget( GrD3DGpu* gpu, SkISize dimensions, int sampleCnt, const GrD3DTextureResourceInfo& info, sk_sp<GrD3DResourceState> state) MakeWrappedRenderTarget() argument
[all...]
/device/soc/hisilicon/hi3516dv300/sdk_linux/drv/mpp/component/hifb/src/
H A Dhifb_main.c63 typedef hi_s32(*drv_hifb_ioctl_func)(struct fb_info *info, unsigned long arg);
138 static hi_s32 hifb_pan_display(struct fb_var_screeninfo *var, struct fb_info *info);
158 static hi_s32 hifb_set_rotatemode(struct fb_info *info, HIFB_ROTATE_MODE_E rotate_mode);
168 static hi_s32 hifb_onputlayerinfo(struct fb_info *info, hifb_par *par, const hi_void __user *argp);
209 static hi_s32 hifb_get_colorkey(struct fb_info *info, unsigned long arg);
210 static hi_s32 hifb_set_colorkey(struct fb_info *info, unsigned long arg);
211 static hi_s32 hifb_get_layer_alpha(struct fb_info *info, unsigned long arg);
212 static hi_s32 hifb_set_layer_alpha(struct fb_info *info, unsigned long arg);
213 static hi_s32 hifb_get_screen_origin_pos(struct fb_info *info, unsigned long arg);
214 static hi_s32 hifb_set_screen_origin_pos(struct fb_info *info, unsigne
342 hifb_get_smem_start(struct fb_info *info) hifb_get_smem_start() argument
347 hifb_get_screen_base(struct fb_info *info) hifb_get_screen_base() argument
352 hifb_get_xres(struct fb_info *info) hifb_get_xres() argument
357 hifb_get_yres(struct fb_info *info) hifb_get_yres() argument
362 hifb_get_xres_virtual(struct fb_info *info) hifb_get_xres_virtual() argument
367 hifb_get_yres_virtual(struct fb_info *info) hifb_get_yres_virtual() argument
372 hifb_get_smem_len(struct fb_info *info) hifb_get_smem_len() argument
377 hifb_get_line_length(struct fb_info *info) hifb_get_line_length() argument
382 hifb_get_bits_per_pixel(struct fb_info *info) hifb_get_bits_per_pixel() argument
387 hifb_get_yoffset(struct fb_info *info) hifb_get_yoffset() argument
392 hifb_get_xoffset(struct fb_info *info) hifb_get_xoffset() argument
540 hifb_get_smem_start(struct hifb_info *info) hifb_get_smem_start() argument
545 hifb_get_screen_base(struct hifb_info *info) hifb_get_screen_base() argument
550 hifb_get_xres(struct hifb_info *info) hifb_get_xres() argument
555 hifb_get_yres(struct hifb_info *info) hifb_get_yres() argument
560 hifb_get_xres_virtual(struct hifb_info *info) hifb_get_xres_virtual() argument
565 hifb_get_yres_virtual(struct hifb_info *info) hifb_get_yres_virtual() argument
570 hifb_get_smem_len(struct hifb_info *info) hifb_get_smem_len() argument
575 hifb_get_line_length(struct hifb_info *info) hifb_get_line_length() argument
580 hifb_get_bits_per_pixel(struct hifb_info *info) hifb_get_bits_per_pixel() argument
585 hifb_get_yoffset(struct hifb_info *info) hifb_get_yoffset() argument
590 hifb_get_xoffset(struct hifb_info *info) hifb_get_xoffset() argument
658 hifb_screeninfo_init(struct hifb_info *info, struct hifb_screeninfo *sinfo) hifb_screeninfo_init() argument
908 hifb_completely(struct fb_info *info, hi_u32 fill_data, size_t n) hifb_completely() argument
1390 struct fb_info *info = HI_NULL; hifb_interrupt_route() local
1472 struct fb_info *info = HI_NULL; hifb_soft_interrupt() local
1493 hifb_open_check_param(struct fb_info *info) hifb_open_check_param() argument
1515 hifb_open_is_cursor_layer(struct fb_info *info) hifb_open_is_cursor_layer() argument
1548 hifb_open_default_param(struct fb_info *info, HIFB_COLOR_FMT_E *color_format) hifb_open_default_param() argument
1578 hifb_open_default_param(struct fb_info *info, HIFB_COLOR_FMT_E *color_format) hifb_open_default_param() argument
1616 hifb_open_init_display(struct fb_info *info, hi_u32 layer_id, hifb_osd_data *osd_data) hifb_open_init_display() argument
1647 hifb_open_init_config(struct fb_info *info, hi_u32 layer_id, hifb_osd_data *osd_data, HIFB_COLOR_FMT_E color_format, hifb_cursor_info *cursor_info) hifb_open_init_config() argument
1683 hifb_open_init_compress(struct fb_info *info) hifb_open_init_compress() argument
1732 hifb_open_init_finish(struct fb_info *info) hifb_open_init_finish() argument
1767 hifb_open_start(struct fb_info *info) hifb_open_start() argument
1833 struct hifb_info *info = (struct hifb_info *)vtable; hifb_open() local
1932 struct hifb_info *info = (struct hifb_info *)vtable; hifb_release() local
2021 hifb_ioctl_check_param(struct fb_info *info, hi_u32 cmd, hi_void *argp) hifb_ioctl_check_param() argument
2061 hifb_get_colorkey(struct fb_info *info, unsigned long arg) hifb_get_colorkey() argument
2083 hifb_set_colorkey(struct fb_info *info, unsigned long arg) hifb_set_colorkey() argument
2140 hifb_get_layer_alpha(struct fb_info *info, unsigned long arg) hifb_get_layer_alpha() argument
2151 hifb_set_layer_alpha(struct fb_info *info, unsigned long arg) hifb_set_layer_alpha() argument
2183 hifb_get_screen_origin_pos(struct fb_info *info, unsigned long arg) hifb_get_screen_origin_pos() argument
2196 hifb_set_screen_origin_pos(struct fb_info *info, unsigned long arg) hifb_set_screen_origin_pos() argument
2238 hifb_get_deflicker(struct fb_info *info, unsigned long arg) hifb_get_deflicker() argument
2253 hifb_set_deflicker(struct fb_info *info, unsigned long arg) hifb_set_deflicker() argument
2266 hifb_get_vblank(struct fb_info *info, unsigned long arg) hifb_get_vblank() argument
2279 hifb_show_layer(struct fb_info *info, unsigned long arg) hifb_show_layer() argument
2320 hifb_get_layer_show_state(struct fb_info *info, unsigned long arg) hifb_get_layer_show_state() argument
2330 hifb_get_capability(struct fb_info *info, unsigned long arg) hifb_get_capability() argument
2341 hifb_set_sursor_info(struct fb_info *info, unsigned long arg) hifb_set_sursor_info() argument
2380 hifb_get_sursor_info(struct fb_info *info, unsigned long arg) hifb_get_sursor_info() argument
2408 hifb_set_cursor_state(struct fb_info *info, unsigned long arg) hifb_set_cursor_state() argument
2440 hifb_get_cursor_state(struct fb_info *info, unsigned long arg) hifb_get_cursor_state() argument
2465 hifb_set_cursor_pos(struct fb_info *info, unsigned long arg) hifb_set_cursor_pos() argument
2497 hifb_get_cursor_pos(struct fb_info *info, unsigned long arg) hifb_get_cursor_pos() argument
2522 hifb_set_cursor_colorkey(struct fb_info *info, unsigned long arg) hifb_set_cursor_colorkey() argument
2563 hifb_get_cursor_colorkey(struct fb_info *info, unsigned long arg) hifb_get_cursor_colorkey() argument
2592 hifb_set_cursor_alpha(struct fb_info *info, unsigned long arg) hifb_set_cursor_alpha() argument
2628 hifb_get_cursor_alpha(struct fb_info *info, unsigned long arg) hifb_get_cursor_alpha() argument
2653 hifb_set_attch_cursor(struct fb_info *info, unsigned long arg) hifb_set_attch_cursor() argument
2692 hifb_set_detach_cursor(struct fb_info *info, unsigned long arg) hifb_set_detach_cursor() argument
2731 hifb_set_layer_info(struct fb_info *info, unsigned long arg) hifb_set_layer_info() argument
2740 hifb_get_layer_info(struct fb_info *info, unsigned long arg) hifb_get_layer_info() argument
2750 hifb_get_canvas_buffer(struct fb_info *info, unsigned long arg) hifb_get_canvas_buffer() argument
2771 hifb_refresh_layer(struct fb_info *info, unsigned long arg) hifb_refresh_layer() argument
2778 hifb_wait_refresh_finish(struct fb_info *info, unsigned long arg) hifb_wait_refresh_finish() argument
2800 hifb_set_mirror_mode(struct fb_info *info, unsigned long arg) hifb_set_mirror_mode() argument
2815 hifb_get_mirror_mode(struct fb_info *info, unsigned long arg) hifb_get_mirror_mode() argument
2838 hifb_set_rotate_mode(struct fb_info *info, unsigned long arg) hifb_set_rotate_mode() argument
2854 hifb_get_rotate_mode(struct fb_info *info, unsigned long arg) hifb_get_rotate_mode() argument
2878 hifb_set_screen_size(struct fb_info *info, unsigned long arg) hifb_set_screen_size() argument
2932 hifb_get_screen_size(struct fb_info *info, unsigned long arg) hifb_get_screen_size() argument
2942 flip_surface_check_param(struct fb_info *info, HIFB_SURFACEEX_S *surface_ex) flip_surface_check_param() argument
2997 flip_surface_pan_display(struct fb_info *info, HIFB_SURFACEEX_S *surface_ex, hifb_colorkeyex *colorkey_ex) flip_surface_pan_display() argument
3048 flip_surface_pan_display(struct fb_info *info, HIFB_SURFACEEX_S *surface_ex, hifb_colorkeyex *colorkey_ex) flip_surface_pan_display() argument
3101 hifb_flip_surface(struct fb_info *info, unsigned long arg) hifb_flip_surface() argument
3140 set_compression_process(struct fb_info *info) set_compression_process() argument
3184 set_compression_start(struct fb_info *info, hi_bool is_compress) set_compression_start() argument
3215 hifb_set_compression_mode(struct fb_info *info, unsigned long arg) hifb_set_compression_mode() argument
3237 hifb_get_compression_mode(struct fb_info *info, unsigned long arg) hifb_get_compression_mode() argument
3253 hifb_set_mddrdetect(struct fb_info *info, unsigned long arg) hifb_set_mddrdetect() argument
3312 hifb_get_mddrdetect(struct fb_info *info, unsigned long arg) hifb_get_mddrdetect() argument
3345 hifb_set_dynamic_range(struct fb_info *info, unsigned long arg) hifb_set_dynamic_range() argument
3364 hifb_get_dynamic_range(struct fb_info *info, unsigned long arg) hifb_get_dynamic_range() argument
3383 drv_hifb_create(struct fb_info *info, unsigned long arg) drv_hifb_create() argument
3413 hdf_panel_set_powerstatus(struct fb_info *info, unsigned long arg) hdf_panel_set_powerstatus() argument
3436 hdf_panel_set_backlight(struct fb_info *info, unsigned long arg) hdf_panel_set_backlight() argument
3445 drv_hifb_release(struct fb_info *info, unsigned long arg) drv_hifb_release() argument
3469 hifb_ioctl_liteos_standard_io(struct fb_info *info, hi_u32 cmd, unsigned long arg, hi_bool *is_continue) hifb_ioctl_liteos_standard_io() argument
3538 struct hifb_info *info = (struct hifb_info *)vtable; global() local
3571 hifb_compat_ioctl(struct fb_info *info, unsigned cmd, unsigned long arg) global() argument
3678 hifb_check_mem_enough(struct fb_info *info, hi_u32 pitch, hi_u32 height) global() argument
3729 hifb_check_fmt(struct fb_var_screeninfo *var, struct fb_info *info) global() argument
3778 hifb_check_output(struct fb_var_screeninfo *var, struct fb_info *info) global() argument
3794 hifb_check_virtual_resolution(struct fb_var_screeninfo *var, struct fb_info *info) global() argument
3825 hifb_check_offset(struct fb_var_screeninfo *var, struct fb_info *info) global() argument
3849 hifb_check_total(struct fb_var_screeninfo *var, struct fb_info *info) global() argument
3879 hifb_check_var(struct fb_var_screeninfo *var, struct fb_info *info) global() argument
3948 struct fb_info *info = g_layer[layer_id].info; global() local
3983 hifb_refresh_1buf_prepare_dst(HIFB_BUFFER_S *dst_rect, hifb_par *par, hifb_display_info *display_info, hifb_dispbuf_info *display_buf_info, struct fb_info *info) global() argument
4029 hifb_refresh_1buf_prepare_addr(hifb_refresh_info *refresh_info, hi_u32 layer_id, hifb_osd_data *osd_data, struct fb_info *info, HIFB_BUFFER_S *dst_rect) global() argument
4153 struct fb_info *info = g_layer[layer_id].info; global() local
4226 refresh_2buf_prepare_back_buf(struct fb_info *info, HIFB_BUFFER_S *back_buf, hi_u32 *bytes_per_pixel) global() argument
4476 struct fb_info *info = g_layer[layer_id].info; global() local
4569 refresh_2buf_immediate_prepare_back_buf(struct fb_info *info, HIFB_BUFFER_S *back_buf, hi_u32 *bytes_per_pixel, hi_u32 index) global() argument
4727 refresh_2buf_imediate_backup_buffer(struct fb_info *info, HIFB_BUFFER_S *back_buf, HIFB_RECT *new_union_rect, hifb_blit_opt *blit_opt, hi_u32 *index) global() argument
4792 struct fb_info *info = g_layer[layer_id].info; global() local
4866 struct fb_info *info = g_layer[layer_id].info; global() local
4892 hifb_disp_check_param(struct fb_info *info, hi_u32 width, hi_u32 height) global() argument
4926 struct fb_info *info = g_layer[layer_id].info; global() local
4979 struct fb_info *info = g_layer[layer_id].info; global() local
5052 struct fb_info *info = g_layer[layer_id].info; global() local
5102 set_par_stride(struct fb_info *info) global() argument
5138 set_par_resolution(struct fb_info *info) global() argument
5189 struct hifb_info *info = (struct hifb_info *)vtable; global() local
5247 struct hifb_info *info = (struct hifb_info *)vtable; global() local
5796 struct fb_info *info = HI_NULL; global() local
5841 struct fb_info *info = HI_NULL; global() local
5888 struct fb_info *info = HI_NULL; global() local
5939 struct fb_info *info = HI_NULL; global() local
6025 struct fb_info *info = g_layer[layer_id].info; global() local
6076 struct fb_info *info = g_layer[layer_id].info; global() local
6090 struct fb_info *info = g_layer[layer_id].info; global() local
6148 struct fb_info *info = g_layer[layer_id].info; global() local
6202 struct fb_info *info = g_layer[layer_id].info; global() local
6251 struct fb_info *info = g_layer[layer_id].info; global() local
6307 struct fb_info *info = g_layer[layer_id].info; global() local
6346 struct fb_info *info = g_layer[layer_id].info; global() local
6402 struct fb_info *info = g_layer[layer_id].info; global() local
[all...]
/kernel/linux/linux-5.10/drivers/regulator/
H A Dab8500.c182 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); in ab8500_regulator_enable() local
184 if (info == NULL) { in ab8500_regulator_enable()
185 dev_err(rdev_get_dev(rdev), "regulator info null pointer\n"); in ab8500_regulator_enable()
189 ret = abx500_mask_and_set_register_interruptible(info->dev, in ab8500_regulator_enable()
190 info->update_bank, info->update_reg, in ab8500_regulator_enable()
191 info->update_mask, info->update_val); in ab8500_regulator_enable()
200 info->desc.name, info in ab8500_regulator_enable()
209 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); ab8500_regulator_disable() local
236 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); ab8500_regulator_is_enabled() local
270 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); ab8500_regulator_get_optimum_mode() local
291 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); ab8500_regulator_set_mode() local
376 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); ab8500_regulator_get_mode() local
423 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); ab8500_regulator_get_voltage_sel() local
455 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); ab8500_regulator_set_voltage_sel() local
1522 struct ab8500_regulator_info *info; global() member
1554 struct ab8500_regulator_info *info = NULL; ab8500_regulator_register() local
[all...]
/kernel/linux/linux-6.6/drivers/regulator/
H A Dab8500.c296 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); in ab8500_regulator_enable() local
298 if (info == NULL) { in ab8500_regulator_enable()
299 dev_err(rdev_get_dev(rdev), "regulator info null pointer\n"); in ab8500_regulator_enable()
303 ret = abx500_mask_and_set_register_interruptible(info->dev, in ab8500_regulator_enable()
304 info->update_bank, info->update_reg, in ab8500_regulator_enable()
305 info->update_mask, info->update_val); in ab8500_regulator_enable()
314 info->desc.name, info in ab8500_regulator_enable()
323 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); ab8500_regulator_disable() local
350 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); ab8500_regulator_is_enabled() local
384 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); ab8500_regulator_get_optimum_mode() local
405 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); ab8500_regulator_set_mode() local
490 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); ab8500_regulator_get_mode() local
537 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); ab8500_regulator_get_voltage_sel() local
569 struct ab8500_regulator_info *info = rdev_get_drvdata(rdev); ab8500_regulator_set_voltage_sel() local
1636 struct ab8500_regulator_info *info; global() member
1668 struct ab8500_regulator_info *info = NULL; ab8500_regulator_register() local
[all...]
/kernel/linux/linux-6.6/sound/core/
H A Dump.c150 ump->info.card = card->number; in snd_ump_endpoint_new()
151 ump->info.device = device; in snd_ump_endpoint_new()
210 if (fb->info.block_id == id) in snd_ump_get_block()
380 fb->info.card = ump->info.card; in snd_ump_block_new()
381 fb->info.device = ump->info.device; in snd_ump_block_new()
382 fb->info.block_id = blk; in snd_ump_block_new()
383 if (blk >= ump->info.num_blocks) in snd_ump_block_new()
384 ump->info in snd_ump_block_new()
712 fill_fb_info(struct snd_ump_endpoint *ump, struct snd_ump_block_info *info, const union snd_ump_stream_msg *buf) fill_fb_info() argument
[all...]
/kernel/linux/linux-5.10/drivers/acpi/acpica/
H A Ddbnames.c300 struct acpi_walk_info info; in acpi_db_walk_and_match_name() local
326 info.count = 0; in acpi_db_walk_and_match_name()
327 info.owner_id = ACPI_OWNER_ID_MAX; in acpi_db_walk_and_match_name()
328 info.debug_level = ACPI_UINT32_MAX; in acpi_db_walk_and_match_name()
329 info.display_type = ACPI_DISPLAY_SUMMARY | ACPI_DISPLAY_SHORT; in acpi_db_walk_and_match_name()
332 (void)acpi_ns_dump_one_object(obj_handle, nesting_level, &info, in acpi_db_walk_and_match_name()
418 /* If method returns a package, the info is in the next table entry */ in acpi_db_walk_for_predefined_names()
420 if (predefined->info.expected_btypes & ACPI_RTYPE_PACKAGE) { in acpi_db_walk_for_predefined_names()
425 predefined->info.expected_btypes); in acpi_db_walk_for_predefined_names()
428 METHOD_GET_ARG_COUNT(predefined->info in acpi_db_walk_for_predefined_names()
492 struct acpi_object_info *info = (struct acpi_object_info *)context; acpi_db_walk_for_object_counts() local
523 struct acpi_region_walk_info *info = acpi_db_walk_for_fields() local
603 struct acpi_walk_info *info = (struct acpi_walk_info *)context; acpi_db_walk_for_specific_objects() local
643 struct acpi_walk_info info; acpi_db_display_objects() local
730 struct acpi_region_walk_info info; acpi_db_display_fields() local
764 struct acpi_integrity_info *info = acpi_db_integrity_walk() local
832 struct acpi_integrity_info info = { 0, 0 }; acpi_db_check_integrity() local
937 struct acpi_device_info *info; acpi_db_bus_walk() local
[all...]
/kernel/linux/linux-6.6/drivers/acpi/acpica/
H A Ddbnames.c300 struct acpi_walk_info info; in acpi_db_walk_and_match_name() local
326 info.count = 0; in acpi_db_walk_and_match_name()
327 info.owner_id = ACPI_OWNER_ID_MAX; in acpi_db_walk_and_match_name()
328 info.debug_level = ACPI_UINT32_MAX; in acpi_db_walk_and_match_name()
329 info.display_type = ACPI_DISPLAY_SUMMARY | ACPI_DISPLAY_SHORT; in acpi_db_walk_and_match_name()
332 (void)acpi_ns_dump_one_object(obj_handle, nesting_level, &info, in acpi_db_walk_and_match_name()
418 /* If method returns a package, the info is in the next table entry */ in acpi_db_walk_for_predefined_names()
420 if (predefined->info.expected_btypes & ACPI_RTYPE_PACKAGE) { in acpi_db_walk_for_predefined_names()
425 predefined->info.expected_btypes); in acpi_db_walk_for_predefined_names()
428 METHOD_GET_ARG_COUNT(predefined->info in acpi_db_walk_for_predefined_names()
492 struct acpi_object_info *info = (struct acpi_object_info *)context; acpi_db_walk_for_object_counts() local
523 struct acpi_region_walk_info *info = acpi_db_walk_for_fields() local
603 struct acpi_walk_info *info = (struct acpi_walk_info *)context; acpi_db_walk_for_specific_objects() local
643 struct acpi_walk_info info; acpi_db_display_objects() local
730 struct acpi_region_walk_info info; acpi_db_display_fields() local
764 struct acpi_integrity_info *info = acpi_db_integrity_walk() local
832 struct acpi_integrity_info info = { 0, 0 }; acpi_db_check_integrity() local
937 struct acpi_device_info *info; acpi_db_bus_walk() local
[all...]
/third_party/mesa3d/src/util/indices/
H A Du_primconvert.c35 * if (info->mode needs emulating) {
37 * util_primconvert_draw_vbo(ctx->primconvert, info);
107 const struct pipe_draw_info *info, in primconvert_init_draw()
128 if (!info->primitive_restart && in primconvert_init_draw()
129 !u_trim_pipe_prim(info->mode, (unsigned*)&draw.count)) in primconvert_init_draw()
133 new_info->index_bounds_valid = info->index_bounds_valid; in primconvert_init_draw()
134 new_info->min_index = info->min_index; in primconvert_init_draw()
135 new_info->max_index = info->max_index; in primconvert_init_draw()
136 new_info->start_instance = info->start_instance; in primconvert_init_draw()
137 new_info->instance_count = info in primconvert_init_draw()
106 primconvert_init_draw(struct primconvert_context *pc, const struct pipe_draw_info *info, const struct pipe_draw_start_count_bias *draws, struct pipe_draw_info *new_info, struct pipe_draw_start_count_bias *new_draw) primconvert_init_draw() argument
273 util_primconvert_draw_single_vbo(struct primconvert_context *pc, const struct pipe_draw_info *info, unsigned drawid_offset, const struct pipe_draw_start_count_bias *draw) util_primconvert_draw_single_vbo() argument
290 util_primconvert_draw_vbo(struct primconvert_context *pc, const struct pipe_draw_info *info, unsigned drawid_offset, const struct pipe_draw_indirect_info *indirect, const struct pipe_draw_start_count_bias *draws, unsigned num_draws) util_primconvert_draw_vbo() argument
327 util_primconvert_draw_vertex_state(struct primconvert_context *pc, struct pipe_vertex_state *vstate, uint32_t partial_velem_mask, struct pipe_draw_vertex_state_info info, const struct pipe_draw_start_count_bias *draws, unsigned num_draws) util_primconvert_draw_vertex_state() argument
[all...]
/kernel/linux/linux-5.10/arch/x86/kernel/
H A Ddumpstack_64.c75 * info. The guard pages including the not mapped DB2 stack are zeroed
88 static __always_inline bool in_exception_stack(unsigned long *stack, struct stack_info *info) in in_exception_stack() argument
122 info->type = ep->type; in in_exception_stack()
123 info->begin = (unsigned long *)begin; in in_exception_stack()
124 info->end = (unsigned long *)end; in in_exception_stack()
125 info->next_sp = (unsigned long *)regs->sp; in in_exception_stack()
129 static __always_inline bool in_irq_stack(unsigned long *stack, struct stack_info *info) in in_irq_stack() argument
141 info->type = STACK_TYPE_IRQ; in in_irq_stack()
142 info->begin = begin; in in_irq_stack()
143 info in in_irq_stack()
154 get_stack_info_noinstr(unsigned long *stack, struct task_struct *task, struct stack_info *info) get_stack_info_noinstr() argument
175 get_stack_info(unsigned long *stack, struct task_struct *task, struct stack_info *info, unsigned long *visit_mask) get_stack_info() argument
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/top/
H A Dgk104.c31 struct nvkm_top_device *info = NULL; in gk104_top_oneinit() local
36 if (!info) { in gk104_top_oneinit()
37 if (!(info = nvkm_top_device_new(top))) in gk104_top_oneinit()
50 info->addr = (data & 0x00fff000); in gk104_top_oneinit()
52 info->fault = (data & 0x000003f8) >> 3; in gk104_top_oneinit()
56 info->engine = (data & 0x3c000000) >> 26; in gk104_top_oneinit()
58 info->runlist = (data & 0x01e00000) >> 21; in gk104_top_oneinit()
60 info->intr = (data & 0x000f8000) >> 15; in gk104_top_oneinit()
62 info->reset = (data & 0x00003e00) >> 9; in gk104_top_oneinit()
73 #define A_(A) if (inst == 0) info in gk104_top_oneinit()
[all...]
/kernel/linux/linux-5.10/net/netfilter/
H A Dxt_NFQUEUE.c39 const struct xt_NFQ_info_v1 *info = par->targinfo; in nfqueue_tg_v1() local
40 u32 queue = info->queuenum; in nfqueue_tg_v1()
42 if (info->queues_total > 1) { in nfqueue_tg_v1()
43 queue = nfqueue_hash(skb, queue, info->queues_total, in nfqueue_tg_v1()
52 const struct xt_NFQ_info_v2 *info = par->targinfo; in nfqueue_tg_v2() local
55 if (info->bypass) in nfqueue_tg_v2()
62 const struct xt_NFQ_info_v3 *info = par->targinfo; in nfqueue_tg_check() local
67 if (info->queues_total == 0) { in nfqueue_tg_check()
71 maxid = info->queues_total - 1 + info in nfqueue_tg_check()
88 const struct xt_NFQ_info_v3 *info = par->targinfo; nfqueue_tg_v3() local
[all...]
/kernel/linux/linux-5.10/drivers/staging/media/atomisp/pci/isp/kernels/output/output_1.0/
H A Dia_css_output.host.c31 .info = (struct ia_css_frame_info *)NULL,
36 .info = (struct ia_css_frame_info *)NULL,
41 .info = (struct ia_css_frame_info *)NULL,
64 ia_css_dma_configure_from_info(&to->port_b, from->info); in ia_css_output_config()
66 to->height = from->info ? from->info->res.height : 0; in ia_css_output_config()
67 to->enable = from->info != NULL; in ia_css_output_config()
68 ia_css_frame_info_to_frame_sp_info(&to->info, from->info); in ia_css_output_config()
97 const struct ia_css_frame_info *info) in ia_css_output_configure()
95 ia_css_output_configure( const struct ia_css_binary *binary, const struct ia_css_frame_info *info) ia_css_output_configure() argument
110 ia_css_output0_configure( const struct ia_css_binary *binary, const struct ia_css_frame_info *info) ia_css_output0_configure() argument
125 ia_css_output1_configure( const struct ia_css_binary *binary, const struct ia_css_frame_info *info) ia_css_output1_configure() argument
[all...]
/kernel/linux/linux-6.6/drivers/staging/media/atomisp/pci/isp/kernels/output/output_1.0/
H A Dia_css_output.host.c31 .info = (struct ia_css_frame_info *)NULL,
36 .info = (struct ia_css_frame_info *)NULL,
41 .info = (struct ia_css_frame_info *)NULL,
62 ret = ia_css_dma_configure_from_info(&to->port_b, from->info); in ia_css_output_config()
67 to->height = from->info ? from->info->res.height : 0; in ia_css_output_config()
68 to->enable = from->info != NULL; in ia_css_output_config()
69 ia_css_frame_info_to_frame_sp_info(&to->info, from->info); in ia_css_output_config()
93 const struct ia_css_frame_info *info) in ia_css_output_configure()
92 ia_css_output_configure(const struct ia_css_binary *binary, const struct ia_css_frame_info *info) ia_css_output_configure() argument
106 ia_css_output0_configure(const struct ia_css_binary *binary, const struct ia_css_frame_info *info) ia_css_output0_configure() argument
120 ia_css_output1_configure(const struct ia_css_binary *binary, const struct ia_css_frame_info *info) ia_css_output1_configure() argument
[all...]
/kernel/linux/linux-6.6/arch/x86/mm/
H A Dhugetlbpage.c54 struct vm_unmapped_area_info info; in hugetlb_get_unmapped_area_bottomup() local
56 info.flags = 0; in hugetlb_get_unmapped_area_bottomup()
57 info.length = len; in hugetlb_get_unmapped_area_bottomup()
58 info.low_limit = get_mmap_base(1); in hugetlb_get_unmapped_area_bottomup()
64 info.high_limit = in_32bit_syscall() ? in hugetlb_get_unmapped_area_bottomup()
67 info.align_mask = PAGE_MASK & ~huge_page_mask(h); in hugetlb_get_unmapped_area_bottomup()
68 info.align_offset = 0; in hugetlb_get_unmapped_area_bottomup()
69 return vm_unmapped_area(&info); in hugetlb_get_unmapped_area_bottomup()
77 struct vm_unmapped_area_info info; in hugetlb_get_unmapped_area_topdown() local
79 info in hugetlb_get_unmapped_area_topdown()
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/nouveau/nvkm/subdev/bios/
H A Dpmu.c64 struct nvbios_pmuE *info) in nvbios_pmuEp()
68 info->type = nvbios_rd08(bios, data + 0x00); in nvbios_pmuEp()
69 info->data = nvbios_rd32(bios, data + 0x02); in nvbios_pmuEp()
75 nvbios_pmuRm(struct nvkm_bios *bios, u8 type, struct nvbios_pmuR *info) in nvbios_pmuRm() argument
80 memset(info, 0x00, sizeof(*info)); in nvbios_pmuRm()
83 info->init_addr_pmu = nvbios_rd32(bios, data + 0x08); in nvbios_pmuRm()
84 info->args_addr_pmu = nvbios_rd32(bios, data + 0x0c); in nvbios_pmuRm()
85 info->boot_addr = data + 0x30; in nvbios_pmuRm()
86 info in nvbios_pmuRm()
63 nvbios_pmuEp(struct nvkm_bios *bios, int idx, u8 *ver, u8 *hdr, struct nvbios_pmuE *info) nvbios_pmuEp() argument
[all...]
/kernel/linux/linux-6.6/net/netfilter/
H A Dxt_NFQUEUE.c39 const struct xt_NFQ_info_v1 *info = par->targinfo; in nfqueue_tg_v1() local
40 u32 queue = info->queuenum; in nfqueue_tg_v1()
42 if (info->queues_total > 1) { in nfqueue_tg_v1()
43 queue = nfqueue_hash(skb, queue, info->queues_total, in nfqueue_tg_v1()
52 const struct xt_NFQ_info_v2 *info = par->targinfo; in nfqueue_tg_v2() local
55 if (info->bypass) in nfqueue_tg_v2()
62 const struct xt_NFQ_info_v3 *info = par->targinfo; in nfqueue_tg_check() local
67 if (info->queues_total == 0) { in nfqueue_tg_check()
71 maxid = info->queues_total - 1 + info in nfqueue_tg_check()
88 const struct xt_NFQ_info_v3 *info = par->targinfo; nfqueue_tg_v3() local
[all...]
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-smp/
H A Dminimal-http-server-eventlib-smp.c90 struct lws_context_creation_info info; in main() local
109 memset(&info, 0, sizeof info); /* otherwise uninitialized garbage */ in main()
110 info.port = 7681; in main()
111 info.mounts = &mount; in main()
112 info.error_document_404 = "/404.html"; in main()
113 info.pcontext = &context; in main()
114 info.signal_cb = signal_cb; in main()
115 info.options = in main()
119 info in main()
[all...]

Completed in 17 milliseconds

1...<<31323334353637383940>>...714