Home
last modified time | relevance | path

Searched refs:compose (Results 1 – 25 of 67) sorted by relevance

123

/linux/arch/m68k/hp300/
H A Dhp300map.map185 compose '`' 'A' to '�'
186 compose '`' 'a' to '�'
187 compose '\'' 'A' to '�'
188 compose '\'' 'a' to '�'
189 compose '^' 'A' to '�'
190 compose '^' 'a' to '�'
191 compose '~' 'A' to '�'
192 compose '~' 'a' to '�'
193 compose '"' 'A' to '�'
194 compose '"' 'a' to '�'
[all …]
/linux/drivers/tty/vt/
H A Ddefkeymap.map291 compose '`' 'A' to '�'
292 compose '`' 'a' to '�'
293 compose '\'' 'A' to '�'
294 compose '\'' 'a' to '�'
295 compose '^' 'A' to '�'
296 compose '^' 'a' to '�'
297 compose '~' 'A' to '�'
298 compose '~' 'a' to '�'
299 compose '"' 'A' to '�'
300 compose '"' 'a' to '�'
[all …]
/linux/drivers/media/platform/st/stm32/stm32-dcmipp/
H A Ddcmipp-byteproc.c124 struct v4l2_rect *compose) in dcmipp_byteproc_adjust_crop() argument
128 v4l2_rect_map_inside(r, compose); in dcmipp_byteproc_adjust_crop()
246 struct v4l2_rect *compose; in dcmipp_byteproc_enum_frame_size() local
258 compose = v4l2_subdev_state_get_compose(sd_state, 0); in dcmipp_byteproc_enum_frame_size()
259 fse->max_width = compose->width; in dcmipp_byteproc_enum_frame_size()
260 fse->max_height = compose->height; in dcmipp_byteproc_enum_frame_size()
271 struct v4l2_rect *crop, *compose; in dcmipp_byteproc_set_fmt() local
279 compose = v4l2_subdev_state_get_compose(sd_state, 0); in dcmipp_byteproc_set_fmt()
291 *compose = *crop; in dcmipp_byteproc_set_fmt()
305 struct v4l2_rect *crop, *compose; in dcmipp_byteproc_get_selection() local
[all …]
/linux/drivers/media/platform/arm/mali-c55/
H A Dmali-c55-resizer.c557 struct v4l2_rect *crop, *compose; in __mali_c55_rsz_set_routing() local
562 compose = v4l2_subdev_state_get_compose(state, active_sink, 0); in __mali_c55_rsz_set_routing()
569 *compose = *crop; in __mali_c55_rsz_set_routing()
653 struct v4l2_rect *compose; in mali_c55_rsz_enum_frame_size() local
691 compose = v4l2_subdev_state_get_compose(state, in mali_c55_rsz_enum_frame_size()
695 fse->min_width = compose->width; in mali_c55_rsz_enum_frame_size()
696 fse->max_width = compose->width; in mali_c55_rsz_enum_frame_size()
697 fse->min_height = compose->height; in mali_c55_rsz_enum_frame_size()
698 fse->max_height = compose->height; in mali_c55_rsz_enum_frame_size()
858 struct v4l2_rect *crop, *compose; in mali_c55_rsz_set_crop() local
[all …]
/linux/drivers/staging/media/imx/
H A Dimx-media-csi.c82 struct v4l2_rect compose; member
428 image.rect = vdev->compose; in csi_idmac_setup_channel()
730 priv->crop.width == 2 * priv->compose.width, in csi_setup()
731 priv->crop.height == 2 * priv->compose.height); in csi_setup()
1189 return &priv->compose; in __csi_get_compose()
1435 struct v4l2_rect *compose, in csi_try_fmt() argument
1449 sdformat->format.width = compose->width; in csi_try_fmt()
1450 sdformat->format.height = compose->height; in csi_try_fmt()
1503 compose->left = 0; in csi_try_fmt()
1504 compose->top = 0; in csi_try_fmt()
[all …]
H A Dimx-media-capture.c140 __capture_try_fmt(struct v4l2_pix_format *pixfmt, struct v4l2_rect *compose) in __capture_try_fmt() argument
174 if (compose) { in __capture_try_fmt()
175 compose->width = fmt_src.width; in __capture_try_fmt()
176 compose->height = fmt_src.height; in __capture_try_fmt()
200 cc = __capture_try_fmt(&f->fmt.pix, &priv->vdev.compose); in capture_s_fmt_vid_cap()
218 s->r = priv->vdev.compose; in capture_g_selection()
471 priv->vdev.compose.width = fmt_src.format.width; in capture_legacy_s_fmt_vid_cap()
472 priv->vdev.compose.height = fmt_src.format.height; in capture_legacy_s_fmt_vid_cap()
697 if (priv->vdev.compose.width != fmt_src.format.width || in capture_validate_fmt()
698 priv->vdev.compose.height != fmt_src.format.height) in capture_validate_fmt()
[all …]
/linux/drivers/media/test-drivers/vivid/
H A Dvivid-vid-out.c447 struct v4l2_rect *compose = &dev->compose_out; in vivid_s_fmt_vid_out() local
498 v4l2_rect_set_min_size(compose, &min_r); in vivid_s_fmt_vid_out()
499 v4l2_rect_set_max_size(compose, &max_r); in vivid_s_fmt_vid_out()
500 v4l2_rect_map_inside(compose, &dev->compose_bounds_out); in vivid_s_fmt_vid_out()
513 v4l2_rect_set_min_size(compose, &min_r); in vivid_s_fmt_vid_out()
514 v4l2_rect_set_max_size(compose, &max_r); in vivid_s_fmt_vid_out()
515 v4l2_rect_map_inside(compose, &dev->compose_bounds_out); in vivid_s_fmt_vid_out()
520 v4l2_rect_set_size_to(compose, &r); in vivid_s_fmt_vid_out()
521 v4l2_rect_map_inside(compose, &dev->compose_bounds_out); in vivid_s_fmt_vid_out()
525 v4l2_rect_set_size_to(compose, &r); in vivid_s_fmt_vid_out()
[all …]
H A Dvivid-vid-cap.c671 struct v4l2_rect *compose = &dev->compose_cap; in vivid_s_fmt_vid_cap() local
698 v4l2_rect_map_inside(compose, &r); in vivid_s_fmt_vid_cap()
700 *compose = r; in vivid_s_fmt_vid_cap()
719 compose->width / MAX_ZOOM, in vivid_s_fmt_vid_cap()
720 factor * compose->height / MAX_ZOOM in vivid_s_fmt_vid_cap()
724 compose->width * MAX_ZOOM, in vivid_s_fmt_vid_cap()
725 factor * compose->height * MAX_ZOOM in vivid_s_fmt_vid_cap()
738 v4l2_rect_set_size_to(compose, &r); in vivid_s_fmt_vid_cap()
740 v4l2_rect_map_inside(compose, &r); in vivid_s_fmt_vid_cap()
745 compose->top *= factor; in vivid_s_fmt_vid_cap()
[all …]
/linux/drivers/media/platform/renesas/vsp1/
H A Dvsp1_brx.c158 struct v4l2_rect *compose; in brx_set_format() local
160 compose = v4l2_subdev_state_get_compose(state, fmt->pad); in brx_set_format()
161 compose->left = 0; in brx_set_format()
162 compose->top = 0; in brx_set_format()
163 compose->width = format->width; in brx_set_format()
164 compose->height = format->height; in brx_set_format()
223 struct v4l2_rect *compose; in brx_set_selection() local
256 compose = v4l2_subdev_state_get_compose(state, sel->pad); in brx_set_selection()
257 *compose = sel->r; in brx_set_selection()
H A Dvsp1_hgt.c135 struct v4l2_rect *compose; in hgt_configure_stream() local
144 compose = v4l2_subdev_state_get_compose(state, HISTO_PAD_SINK); in hgt_configure_stream()
165 hratio = crop->width * 2 / compose->width / 3; in hgt_configure_stream()
166 vratio = crop->height * 2 / compose->height / 3; in hgt_configure_stream()
H A Dvsp1_hgo.c139 struct v4l2_rect *compose; in hgo_configure_stream() local
145 compose = v4l2_subdev_state_get_compose(state, HISTO_PAD_SINK); in hgo_configure_stream()
162 hratio = crop->width * 2 / compose->width / 3; in hgo_configure_stream()
163 vratio = crop->height * 2 / compose->height / 3; in hgo_configure_stream()
H A Dvsp1_rpf.c187 const struct v4l2_rect *compose; in rpf_configure_stream() local
189 compose = v4l2_subdev_state_get_compose(pipe->brx->state, in rpf_configure_stream()
191 left = compose->left; in rpf_configure_stream()
192 top = compose->top; in rpf_configure_stream()
H A Dvsp1_drm.h64 struct v4l2_rect compose; member
H A Dvsp1_histo.c279 struct v4l2_rect *compose; in histo_set_compose() local
316 compose = v4l2_subdev_state_get_compose(sd_state, sel->pad); in histo_set_compose()
317 *compose = sel->r; in histo_set_compose()
/linux/Documentation/userspace-api/media/v4l/
H A Dselection-api-examples.rst46 /* setting smaller compose rectangle */
66 struct v4l2_selection compose = {
76 ret = ioctl(fd, VIDIOC_G_SELECTION, &compose);
84 hscale = (double)compose.r.width / crop.r.width;
85 vscale = (double)compose.r.height / crop.r.height;
H A Dv4l2-selection-targets.rst69 - Bounds of the compose rectangle. All valid compose rectangles fit
70 inside the compose bounds rectangle.
/linux/drivers/media/platform/renesas/rcar-vin/
H A Drcar-dma.c184 vin->compose.width == vin->format.width && in rvin_scaler_needed()
186 vin->compose.height == vin->format.height); in rvin_scaler_needed()
567 if (vin->crop.height != vin->compose.height) in rvin_scaler_gen2()
568 ys = (4096 * vin->crop.height) / vin->compose.height; in rvin_scaler_gen2()
572 if (vin->crop.width != vin->compose.width) in rvin_scaler_gen2()
573 xs = (4096 * vin->crop.width) / vin->compose.width; in rvin_scaler_gen2()
634 ratio_h = rvin_uds_scale_ratio(vin->crop.width, vin->compose.width); in rvin_scaler_gen3()
637 ratio_v = rvin_uds_scale_ratio(vin->crop.height, vin->compose.height); in rvin_scaler_gen3()
640 clip_size = vin->compose.width << 16; in rvin_scaler_gen3()
646 clip_size |= vin->compose.height / 2; in rvin_scaler_gen3()
[all …]
/linux/drivers/media/platform/mediatek/mdp3/
H A Dmtk-mdp3-regs.c284 const struct v4l2_rect *compose, s32 rotation, in mdp_check_scaling_ratio() argument
292 comp_w = compose->height; in mdp_check_scaling_ratio()
293 comp_h = compose->width; in mdp_check_scaling_ratio()
295 comp_w = compose->width; in mdp_check_scaling_ratio()
296 comp_h = compose->height; in mdp_check_scaling_ratio()
320 r2 = frame->compose.width * frame->compose.height; in mdp_check_pp_enable()
474 out->buffer.format.width = frame->compose.width; in mdp_set_dst_config()
475 out->buffer.format.height = frame->compose.height; in mdp_set_dst_config()
510 frame->compose.width = frame->format.fmt.pix_mp.width; in mdp_frameparam_init()
511 frame->compose.height = frame->format.fmt.pix_mp.height; in mdp_frameparam_init()
H A Dmtk-mdp3-m2m.c102 task.composes[0] = &frame->compose; in mdp_m2m_device_run()
156 &capture->compose, in mdp_m2m_start_streaming()
345 capture->compose.left = 0; in mdp_m2m_s_fmt_mplane()
346 capture->compose.top = 0; in mdp_m2m_s_fmt_mplane()
347 capture->compose.width = f->fmt.pix_mp.width; in mdp_m2m_s_fmt_mplane()
348 capture->compose.height = f->fmt.pix_mp.height; in mdp_m2m_s_fmt_mplane()
391 s->r = frame->compose; in mdp_m2m_g_selection()
447 capture->compose = r; in mdp_m2m_s_selection()
H A Dmtk-mdp3-regs.h312 struct v4l2_rect compose; member
369 const struct v4l2_rect *compose, s32 rotation,
/linux/drivers/media/common/v4l2-tpg/
H A Dv4l2-tpg-core.c94 tpg->crop.width = tpg->compose.width = w; in tpg_init()
95 tpg->crop.height = tpg->compose.height = h; in tpg_init()
508 const struct v4l2_rect *compose) in tpg_s_crop_compose() argument
511 tpg->compose = *compose; in tpg_s_crop_compose()
512 tpg->scaled_width = (tpg->src_width * tpg->compose.width + in tpg_s_crop_compose()
538 tpg->compose.top = tpg->compose.left = 0; in tpg_reset_source()
539 tpg->compose.width = width; in tpg_reset_source()
540 tpg->compose.height = tpg->buf_height; in tpg_reset_source()
2012 if (y + 16 >= tpg->compose.height || x + 8 >= tpg->compose.width) in tpg_gen_text()
2015 if (len > (tpg->compose.width - x) / 8) in tpg_gen_text()
[all …]
/linux/drivers/media/platform/nxp/imx8-isi/
H A Dimx8-isi-pipe.c242 const struct v4l2_rect *compose; in mxc_isi_pipe_enable() local
268 compose = v4l2_subdev_state_get_compose(state, MXC_ISI_PIPE_PAD_SINK); in mxc_isi_pipe_enable()
278 scale.width = compose->width; in mxc_isi_pipe_enable()
279 scale.height = compose->height; in mxc_isi_pipe_enable()
350 struct v4l2_rect *compose; in mxc_isi_pipe_init_state() local
372 compose = mxc_isi_pipe_get_pad_compose(pipe, state, in mxc_isi_pipe_init_state()
376 compose->left = 0; in mxc_isi_pipe_init_state()
377 compose->top = 0; in mxc_isi_pipe_init_state()
378 compose->width = MXC_ISI_DEF_WIDTH; in mxc_isi_pipe_init_state()
379 compose->height = MXC_ISI_DEF_HEIGHT; in mxc_isi_pipe_init_state()
[all …]
/linux/drivers/s390/char/
H A Ddefkeymap.map189 compose '^' 'c' to Control_c
190 compose '^' 'd' to Control_d
191 compose '^' 'z' to Control_z
192 compose '^' '\012' to nul
/linux/tools/perf/python/
H A Dilist.py140 def compose(self) -> ComposeResult: member in ErrorScreen
160 def compose(self) -> ComposeResult: member in SearchScreen
181 def compose(self) -> ComposeResult: member in Counter
194 def compose(self) -> ComposeResult: member in CounterSparkline
438 def compose(self) -> ComposeResult: member in IListApp
/linux/fs/hfsplus/
H A Dunicode.c159 int i, len, ustrlen, res, compose; in hfsplus_uni2asc() local
173 compose = !test_bit(HFSPLUS_SB_NODECOMPOSE, &HFSPLUS_SB(sb)->flags); in hfsplus_uni2asc()
179 if (likely(compose)) in hfsplus_uni2asc()
215 if (likely(compose)) in hfsplus_uni2asc()

123