Lines Matching defs:row_n
43 unsigned int col_n, row_n;
147 stk1160_write_reg(dev, STK1160_DMCTRL_V_UNITS, ctrl->row_n);
150 val, ctrl->col_n, ctrl->row_n);
377 unsigned int col_n, row_n;
392 row_n = 0;
439 row_n = div_round_integer(height, base_height - height);
440 if (row_n > 0 && row_n <= 255) {
443 f->fmt.pix.height = (base_height * row_n) / (row_n + 1);
447 row_n = div_round_integer(base_height, height) - 1;
448 if (row_n > 0 && row_n <= 255) {
451 f->fmt.pix.height = base_height / (row_n + 1);
466 ctrl->row_n = row_n;