Home
last modified time | relevance | path

Searched refs:rotate (Results 1 – 25 of 248) sorted by relevance

12345678910

/OK3568_Linux_fs/kernel/drivers/media/platform/vsp1/
H A Dvsp1_wpf.c49 bool rotate; in vsp1_wpf_set_rotation() local
56 rotate = rotation == 90 || rotation == 270; in vsp1_wpf_set_rotation()
57 if (rotate == wpf->flip.rotate) in vsp1_wpf_set_rotation()
77 if (rotate) { in vsp1_wpf_set_rotation()
85 wpf->flip.rotate = rotate; in vsp1_wpf_set_rotation()
103 rotation = wpf->flip.ctrls.rotate ? wpf->flip.ctrls.rotate->val : 0; in vsp1_wpf_s_ctrl()
173 wpf->flip.ctrls.rotate = in wpf_init_controls()
285 if (wpf->flip.rotate) in wpf_configure_stream()
457 if (flip & BIT(WPF_CTRL_HFLIP) && !wpf->flip.rotate) in wpf_configure_partition()
459 else if (flip & BIT(WPF_CTRL_VFLIP) && wpf->flip.rotate) in wpf_configure_partition()
[all …]
H A Dvsp1_rwpf.h56 struct v4l2_ctrl *rotate; member
60 bool rotate; member
/OK3568_Linux_fs/kernel/drivers/media/platform/sunxi/sun8i-rotate/
H A DMakefile2 sun8i-rotate-y += sun8i_rotate.o
3 sun8i-rotate-y += sun8i_formats.o
5 obj-$(CONFIG_VIDEO_SUN8I_ROTATE) += sun8i-rotate.o
H A Dsun8i_rotate.c80 val |= ROTATE_GLB_CTL_ROTATION(ctx->rotate / 90); in rotate_device_run()
81 if (ctx->rotate != 90 && ctx->rotate != 270) in rotate_device_run()
260 u32 rotate) in rotate_set_cap_format() argument
275 if (rotate == 90 || rotate == 270) { in rotate_set_cap_format()
313 return rotate_set_cap_format(ctx, &f->fmt.pix, ctx->rotate); in rotate_try_fmt_vid_cap()
390 return rotate_set_cap_format(ctx, &ctx->dst_fmt, ctx->rotate); in rotate_s_fmt_vid_out()
600 ctx->rotate = ctrl->val; in rotate_s_ctrl()
661 rotate_set_cap_format(ctx, &ctx->dst_fmt, ctx->rotate); in rotate_open()
/OK3568_Linux_fs/kernel/drivers/staging/fbtft/
H A Dfb_watterott.c194 u8 rotate; in set_var() local
197 switch (par->info->var.rotate) { in set_var()
199 rotate = 27; in set_var()
202 rotate = 18; in set_var()
205 rotate = 9; in set_var()
208 rotate = 0; in set_var()
210 write_reg(par, CMD_LCD_ORIENTATION, rotate); in set_var()
H A Dfb_uc1611.c113 switch (par->info->var.rotate) { in set_addr_win()
161 switch (par->info->var.rotate) { in set_var()
232 switch (par->info->var.rotate) { in write_vmem()
266 switch (par->info->var.rotate) { in write_vmem()
H A Dfb_ssd1305.c81 write_reg(par, 0xA0 | ((par->info->var.rotate == 180) ? 0x0 : 0x1)); in init_display()
87 write_reg(par, ((par->info->var.rotate == 180) ? 0xC8 : 0xC0)); in init_display()
125 write_reg(par, 0x00 | ((par->info->var.rotate == 180) ? 0x0 : 0x4)); in set_addr_win()
H A Dfb_ili9163.c114 switch (par->info->var.rotate) { in set_addr_win()
138 par->info->var.rotate = 0; in set_addr_win()
167 switch (par->info->var.rotate) { in set_var()
/OK3568_Linux_fs/kernel/drivers/video/fbdev/core/
H A Dfbcon.c216 ops->rotate = ops->p->con_rotate; in fbcon_set_rotation()
218 ops->rotate = 0; in fbcon_set_rotation()
221 static void fbcon_rotate(struct fb_info *info, u32 rotate) in fbcon_rotate() argument
234 if (rotate < 4) in fbcon_rotate()
235 p->con_rotate = rotate; in fbcon_rotate()
243 static void fbcon_rotate_all(struct fb_info *info, u32 rotate) in fbcon_rotate_all() argument
250 if (!ops || ops->currcon < 0 || rotate > 3) in fbcon_rotate_all()
260 p->con_rotate = rotate; in fbcon_rotate_all()
270 ops->rotate = FB_ROTATE_UR; in fbcon_set_rotation()
273 static void fbcon_rotate(struct fb_info *info, u32 rotate) in fbcon_rotate() argument
[all …]
H A Dfbcon_rotate.c41 if (ops->rotate == FB_ROTATE_CW || in fbcon_rotate_font()
42 ops->rotate == FB_ROTATE_CCW) in fbcon_rotate_font()
65 switch (ops->rotate) { in fbcon_rotate_font()
101 switch(ops->rotate) { in fbcon_set_rotate()
H A Dfbmem.c387 struct fb_image *image, int rotate) in fb_rotate_logo() argument
391 if (rotate == FB_ROTATE_UD) { in fb_rotate_logo()
396 } else if (rotate == FB_ROTATE_CW) { in fb_rotate_logo()
405 } else if (rotate == FB_ROTATE_CCW) { in fb_rotate_logo()
420 int rotate, unsigned int num) in fb_do_show_logo() argument
427 if (rotate == FB_ROTATE_UR) { in fb_do_show_logo()
434 } else if (rotate == FB_ROTATE_UD) { in fb_do_show_logo()
441 } else if (rotate == FB_ROTATE_CW) { in fb_do_show_logo()
448 } else if (rotate == FB_ROTATE_CCW) { in fb_do_show_logo()
458 static int fb_show_logo_line(struct fb_info *info, int rotate, in fb_show_logo_line() argument
[all …]
/OK3568_Linux_fs/buildroot/package/audit/
H A DS02auditd53 rotate(){
73 rotate)
74 rotate
/OK3568_Linux_fs/kernel/arch/arm/mach-omap1/
H A Dlcd_dma.c57 int rotate, data_type, xres, yres; member
88 void omap_set_lcd_dma_b1_rotation(int rotate) in omap_set_lcd_dma_b1_rotation() argument
95 lcd_dma.rotate = rotate; in omap_set_lcd_dma_b1_rotation()
164 switch (lcd_dma.rotate) { in set_b1_regs()
267 if (!(lcd_dma.rotate || lcd_dma.mirror || in set_b1_regs()
316 lcd_dma.rotate = 0; in omap_request_lcd_dma()
/OK3568_Linux_fs/external/xserver/hw/kdrive/src/
H A Dkdrive.c197 Rotation rotate = (a & RR_Rotate_All) * (b & RR_Rotate_All); in KdAddRotation() local
200 if (rotate > RR_Rotate_270) in KdAddRotation()
201 rotate /= (RR_Rotate_270 * RR_Rotate_90); in KdAddRotation()
202 return reflect | rotate; in KdAddRotation()
208 Rotation rotate = (a & RR_Rotate_All) * 16 / (b & RR_Rotate_All); in KdSubRotation() local
211 if (rotate > RR_Rotate_270) in KdSubRotation()
212 rotate /= (RR_Rotate_270 * RR_Rotate_90); in KdSubRotation()
213 return reflect | rotate; in KdSubRotation()
292 int rotate = atoi(save); in KdParseScreen() local
294 if (rotate < 45) in KdParseScreen()
[all …]
H A Dkshadow.c29 KdShadowFbAlloc(KdScreenInfo * screen, Bool rotate) in KdShadowFbAlloc() argument
33 int width = rotate ? screen->height : screen->width; in KdShadowFbAlloc()
34 int height = rotate ? screen->width : screen->height; in KdShadowFbAlloc()
/OK3568_Linux_fs/kernel/init/
H A Ddo_mounts_rd.c192 unsigned short rotate = 0; in rd_load_image() local
252 rotate = 0; in rd_load_image()
260 pr_cont("%c\b", rotator[rotate & 0x3]); in rd_load_image()
261 rotate++; in rd_load_image()
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/allwinner/camera/CameraUI/src/
H A Dmyspeed.cpp86 painter->rotate(m_startAngle); in drawScale()
105 painter->rotate(angleStep); in drawScale()
137 painter->rotate(m_startAngle); in drawIndicator()
141 painter->rotate(degRotate); in drawIndicator()
/OK3568_Linux_fs/external/xserver/hw/xfree86/drivers/modesetting/
H A Dexa.c68 int rotate; member
456 ms_exa_parse_transform(PictTransformPtr t, int *rotate, Bool *reflect_y) in ms_exa_parse_transform() argument
463 *rotate = 0; in ms_exa_parse_transform()
495 *rotate = (360 - r1) % 360; in ms_exa_parse_transform()
531 if (!ms_exa_parse_transform(t, &ctx->prepare_args.composite.rotate, in ms_exa_prepare_composite()
634 int rotate = ctx->prepare_args.composite.rotate; in ms_exa_composite() local
663 if (rotate == 90) in ms_exa_composite()
665 else if (rotate == 180) in ms_exa_composite()
667 else if (rotate == 270) in ms_exa_composite()
671 if (reflect_y && rotate) { in ms_exa_composite()
[all …]
/OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-extended/rsyslog/rsyslog/
H A Drsyslog.logrotate5 rotate 7
29 rotate 4
/OK3568_Linux_fs/kernel/tools/include/linux/
H A Drbtree_augmented.h32 void (*rotate)(struct rb_node *old, struct rb_node *new); member
52 __rb_insert_augmented(node, root, augment->rotate); in rb_insert_augmented()
106 .rotate = RBNAME ## _rotate \
296 __rb_erase_color(rebalance, root, augment->rotate); in rb_erase_augmented()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/text/
H A Dquads.cpp153 tl = util::rotate(tl - center, verticalRotation) + center + xOffsetCorrection; in getGlyphQuads()
154 tr = util::rotate(tr - center, verticalRotation) + center + xOffsetCorrection; in getGlyphQuads()
155 bl = util::rotate(bl - center, verticalRotation) + center + xOffsetCorrection; in getGlyphQuads()
156 br = util::rotate(br - center, verticalRotation) + center + xOffsetCorrection; in getGlyphQuads()
/OK3568_Linux_fs/app/forlinx/flapp/src/plugins/opengl/
H A Dglwidget.cpp134 modelview.rotate(m_fAngle, 0.0f, 1.0f, 0.0f); in paintGL()
135 modelview.rotate(m_fAngle, 1.0f, 0.0f, 0.0f); in paintGL()
136 modelview.rotate(m_fAngle, 0.0f, 0.0f, 1.0f); in paintGL()
/OK3568_Linux_fs/kernel/include/linux/
H A Drbtree_augmented.h30 void (*rotate)(struct rb_node *old, struct rb_node *new); member
50 __rb_insert_augmented(node, root, augment->rotate); in rb_insert_augmented()
104 .rotate = RBNAME ## _rotate \
305 __rb_erase_color(rebalance, root, augment->rotate); in rb_erase_augmented()
/OK3568_Linux_fs/kernel/drivers/video/fbdev/omap2/omapfb/dss/
H A Ddisplay-sysfs.c142 int rotate; in display_rotate_show() local
145 rotate = dssdev->driver->get_rotate(dssdev); in display_rotate_show()
146 return snprintf(buf, PAGE_SIZE, "%u\n", rotate); in display_rotate_show()
250 static DISPLAY_ATTR(rotate, S_IRUGO|S_IWUSR,
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/toastergui/static/css/
H A Ddefault.css348 -webkit-transform: rotate(0deg);
349 transform: rotate(0deg);
352 -webkit-transform: rotate(359deg);
353 transform: rotate(359deg);
359 -webkit-transform: rotate(0deg);
360 -moz-transform: rotate(0deg);
361 transform: rotate(0deg);
364 -webkit-transform: rotate(359deg);
365 -moz-transform: rotate(359deg);
366 transform: rotate(359deg);

12345678910