Lines Matching defs:hstart
199 int hstart; /* Start/stop values for the camera. Note */
295 * make sense - hstop is less than hstart. But they work...
733 .hstart = 158, /* These values from */
744 .hstart = 170, /* Empirically determined */
755 .hstart = 168, /* Empirically determined */
766 .hstart = 456, /* Empirically determined */
784 .hstart = 158, /* These values from */
919 static int ov7670_set_hw(struct v4l2_subdev *sd, int hstart, int hstop,
925 * Horizontal: 11 bits, top 8 live in hstart and hstop. Bottom 3 of
926 * hstart are in href[2:0], bottom 3 of hstop in href[5:3]. There is
929 ret = ov7670_write(sd, REG_HSTART, (hstart >> 3) & 0xff);
932 v = (v & 0xc0) | ((hstop & 0x7) << 3) | (hstart & 0x7);
1062 ret = ov7670_set_hw(sd, wsize->hstart, wsize->hstop, wsize->vstart,