Searched defs:flip (Results 1 - 22 of 22) sorted by relevance

/drivers/pcmcia/
H A Dpxa2xx_balloon3.c60 int flip; local
64 flip = (status ^ balloon3_pcmcia_status[skt->nr])
71 if (flip) {
H A Dpxa2xx_mainstone.c60 unsigned long status, flip; local
63 flip = (status ^ mst_pcmcia_status[skt->nr]) & MST_PCMCIA_nSTSCHG_BVD1;
70 if (flip) {
H A Di82365.c292 #define flip(v,b,f) (v = ((f)<0) ? v : ((f) ? ((v)|(b)) : ((v)&(~b)))) macro
328 flip(p->misc2, PD67_MC2_IRQ15_RI, has_ring);
329 flip(p->misc2, PD67_MC2_DYNAMIC_MODE, dynamic_mode);
330 flip(p->misc2, PD67_MC2_FREQ_BYPASS, freq_bypass);
398 flip(p->ctl, VG468_CTL_ASYNC, async_clock);
399 flip(p->ema, VG469_MODE_CABLE, cable_mode);
/drivers/media/video/gspca/gl860/
H A Dgl860-mi1320.c198 sd->vcur.flip = 0;
210 sd->vmax.flip = 1;
275 sd->vold.flip = -1;
361 s32 flip = (((sd->vcur.flip > 0) ^ sd->mirrorMask) > 0); local
492 if (mirror != sd->vold.mirror || flip != sd->vold.flip) {
495 sd->vold.flip = flip;
497 dat_hvflip2[3] = flip
[all...]
H A Dgl860-mi2020.c304 sd->vcur.flip = 0;
316 sd->vmax.flip = 1;
385 s32 flip = (((sd->vcur.flip > 0) ^ sd->mirrorMask) > 0); local
414 dat_hvflip2[2] = 0x6c + 2 * (1 - flip) + (1 - mirror);
415 dat_hvflip4[2] = 0x24 + 2 * (1 - flip) + (1 - mirror);
534 sd->vold.flip = flip;
573 s32 flip = (((sd->vcur.flip > local
[all...]
H A Dgl860-ov2640.c196 sd->vcur.flip = 0;
207 sd->vmax.flip = 1;
260 sd->vold.flip = -1;
360 s32 flip = (((sd->vcur.flip > 0) ^ sd->mirrorMask) == 0); local
450 if (mirror != sd->vold.mirror || flip != sd->vold.flip) {
452 sd->vold.flip = flip;
460 flip
[all...]
H A Dgl860.h55 u8 flip; member in struct:sd_gl860
/drivers/media/video/s5p-fimc/
H A Dfimc-reg.c45 u32 flip = S5P_MSCTRL_FLIP_NORMAL; local
48 flip = S5P_MSCTRL_FLIP_X_MIRROR;
50 flip = S5P_MSCTRL_FLIP_Y_MIRROR;
53 return flip;
55 return (flip ^ S5P_MSCTRL_FLIP_180) & S5P_MSCTRL_FLIP_180;
60 u32 flip = S5P_CITRGFMT_FLIP_NORMAL; local
63 flip |= S5P_CITRGFMT_FLIP_X_MIRROR;
65 flip |= S5P_CITRGFMT_FLIP_Y_MIRROR;
68 return flip;
70 return (flip
75 u32 cfg, flip; local
[all...]
/drivers/media/video/s5p-g2d/
H A Dg2d.h64 u32 flip; member in struct:g2d_ctx
/drivers/net/wan/
H A Dpc300_tty.c120 static int cpc_tty_open(struct tty_struct *tty, struct file *flip);
121 static void cpc_tty_close(struct tty_struct *tty, struct file *flip);
293 static int cpc_tty_open(struct tty_struct *tty, struct file *flip) argument
360 static void cpc_tty_close(struct tty_struct *tty, struct file *flip) argument
/drivers/xen/
H A Dgntdev.c456 static int gntdev_open(struct inode *inode, struct file *flip) argument
484 flip->private_data = priv;
490 static int gntdev_release(struct inode *inode, struct file *flip) argument
492 struct gntdev_priv *priv = flip->private_data;
666 static long gntdev_ioctl(struct file *flip, argument
669 struct gntdev_priv *priv = flip->private_data;
693 static int gntdev_mmap(struct file *flip, struct vm_area_struct *vma) argument
695 struct gntdev_priv *priv = flip->private_data;
/drivers/tty/hvc/
H A Dhvsi.c357 * it. Accordingly we won't send more than 128 bytes at a time to the flip
402 static int hvsi_load_chunk(struct hvsi_struct *hp, struct tty_struct **flip, argument
408 *flip = NULL;
445 *flip = hvsi_recv_data(hp, packet);
497 struct tty_struct *flip; local
507 again = hvsi_load_chunk(hp, &flip, &hangup, &handshake);
516 if (flip) {
517 /* there was data put in the tty flip buffer */
518 tty_flip_buffer_push(flip);
519 flip
[all...]
/drivers/video/
H A Dw100fb.c88 return sprintf(buf, "%d\n",par->flip);
93 unsigned int flip; local
97 flip = simple_strtoul(buf, NULL, 10);
99 if (flip > 0)
100 par->flip = 1;
102 par->flip = 0;
113 static DEVICE_ATTR(flip, 0644, flip_show, flip_store);
733 par->flip = 1;
735 par->flip = 0;
1426 if (par->flip) {
[all...]
/drivers/media/video/marvell-ccic/
H A Dmcam-core.c80 static bool flip; variable
81 module_param(flip, bool, 0444);
82 MODULE_PARM_DESC(flip,
83 "If set, the sensor will be instructed to flip the image "
846 ctrl.value = flip;
861 * OV7670 does weird things if flip is set *before* format...
/drivers/media/video/
H A Dmt9m111.c661 static int mt9m111_set_flip(struct mt9m111 *mt9m111, int flip, int mask) argument
666 if (flip)
H A Dstk-sensor.c148 #define MVFP_FLIP 0x10 /* Vertical flip */
508 int flip; local
559 flip = (dev->vsettings.vflip?MVFP_FLIP:0)
561 stk_sensor_outb(dev, REG_MVFP, flip);
H A Ds5k6aa.c473 unsigned int flip = (horiz_flip ^ s5k6aa->inv_hflip) | (vflip << 1); local
475 return s5k6aa_write(client, REG_P_PREV_MIRROR(index), flip);
/drivers/tty/
H A Dnozomi.c375 unsigned long flip; member in struct:nozomi
870 set_bit(index, &dc->flip);
1281 if (test_and_clear_bit(a, &dc->flip)) {
1317 dc->flip = 0;
/drivers/tty/serial/
H A Dioc3_serial.c1397 int read_count = 0, read_room, flip = 0; local
1416 flip = 1;
1422 if (flip)
/drivers/usb/host/
H A Disp1362-hcd.c710 static inline void enable_istl_transfers(struct isp1362_hcd *isp1362_hcd, int flip) argument
712 isp1362_enable_int(isp1362_hcd, flip ? HCuPINT_ISTL1 : HCuPINT_ISTL0);
713 isp1362_set_mask16(isp1362_hcd, HCBUFSTAT, flip ?
863 int flip = isp1362_hcd->istl_flip; local
871 epq = &isp1362_hcd->istl_queue[flip];
925 enable_istl_transfers(isp1362_hcd, flip);
933 (flip ? HCBUFSTAT_ISTL0_FULL : HCBUFSTAT_ISTL1_FULL))) {
936 flip = 1 - flip;
/drivers/usb/serial/
H A Dkeyspan.c232 int flip; local
248 dbg("%s - for port %d (%d chars), flip=%d",
256 flip = p_priv->out_flip;
259 this_urb = p_priv->out_urbs[flip];
266 dbg("%s - endpoint %d flip %d",
267 __func__, usb_pipeendpoint(this_urb->pipe), flip);
271 p_priv->tx_start_time[flip] + 10 * HZ))
290 p_priv->tx_start_time[flip] = jiffies;
294 p_priv->out_flip = (flip + 1) & d_details->outdat_endp_flip;
1034 int flip; local
[all...]
/drivers/gpu/drm/nouveau/
H A Dnouveau_drv.h304 struct list_head flip; member in struct:nouveau_channel::__anon575

Completed in 616 milliseconds