Lines Matching defs:hstart
198 int hstart; /* Start/stop values for the camera. Note */
294 * make sense - hstop is less than hstart. But they work...
735 .hstart = 158, /* These values from */
746 .hstart = 170, /* Empirically determined */
757 .hstart = 168, /* Empirically determined */
768 .hstart = 456, /* Empirically determined */
786 .hstart = 158, /* These values from */
921 static int ov7670_set_hw(struct v4l2_subdev *sd, int hstart, int hstop,
927 * Horizontal: 11 bits, top 8 live in hstart and hstop. Bottom 3 of
928 * hstart are in href[2:0], bottom 3 of hstop in href[5:3]. There is
931 ret = ov7670_write(sd, REG_HSTART, (hstart >> 3) & 0xff);
940 v = (v & 0xc0) | ((hstop & 0x7) << 3) | (hstart & 0x7);
1075 ret = ov7670_set_hw(sd, wsize->hstart, wsize->hstop, wsize->vstart,