Lines Matching defs:height
80 static void get_resolution(struct go7007 *go, int *width, int *height)
85 *height = 480;
89 *height = 576;
94 *height = go->board_info->sensor_height;
179 int width, height;
188 height = sensor_height;
197 if (fmt->fmt.pix.height > sensor_height)
198 height = sensor_height;
199 else if (fmt->fmt.pix.height < 96)
200 height = 96;
202 height = fmt->fmt.pix.height & ~0x0f;
208 height = sensor_height / 4;
211 height = sensor_height / 2;
214 height = sensor_height;
217 height &= ~0xf;
226 fmt->fmt.pix.height = height;
240 go->height = height;
251 format.format.height = height;
314 fmt->fmt.pix.height = go->height;
512 int width, height;
520 get_resolution(go, &width, &height);
523 fsize->discrete.height = (height >> fsize->index) & ~0xf;
531 int width, height;
541 get_resolution(go, &width, &height);
544 fival->height == ((height >> i) & ~0xf))
819 for (y = 0; y < go->height / 16; y++, mt += go->width / 16)