Lines Matching refs:num_cols

124 	unsigned int num_cols;
183 /* num_rows * num_cols */
351 ic_image->num_cols, ic_image->num_rows,
474 ctx->in.num_cols = cols;
676 tile_idx = in->num_cols * row + col;
707 for (col = 0; col < in->num_cols; col++) {
708 tile_idx = in->num_cols * row + col;
766 for (col = in->num_cols - 1; col > 0; col--) {
769 bool allow_out_overshoot = (col < in->num_cols - 1) &&
871 const unsigned int row = i / image->num_cols;
872 const unsigned int col = i % image->num_cols;
928 return src_row * s_image->num_cols + src_col;
935 src_col = src_col * 2 - (s_image->num_cols - 1);
960 dst_col += d_image->num_cols - 1;
964 return dst_row * d_image->num_cols + dst_col;
976 for (col = 0; col < s_image->num_cols; col++) {
1012 for (col = 0; col < image->num_cols; col++) {
1063 for (col = 0; col < image->num_cols; col++) {
1131 for (col = 0; col < ctx->in.num_cols; col++) {
1132 bool closest = (col < ctx->in.num_cols - 1) &&
1173 tile_idx = row * ctx->in.num_cols + col;
1195 tile_idx = row * ctx->in.num_cols;
1229 for (col = 0; col < ctx->in.num_cols; col++) {
1230 tile_idx = row * ctx->in.num_cols + col;
1407 row = tile / s_image->num_cols;
1408 col = tile % s_image->num_cols;
1619 if (ctx->resize_coeffs_h[cur_tile % ctx->in.num_cols] !=
1620 ctx->resize_coeffs_h[next_tile % ctx->in.num_cols] ||
1621 ctx->resize_coeffs_v[cur_tile / ctx->in.num_cols] !=
1622 ctx->resize_coeffs_v[next_tile / ctx->in.num_cols] ||
2121 d_image->num_rows = s_image->num_cols;
2122 d_image->num_cols = s_image->num_rows;
2125 d_image->num_cols = s_image->num_cols;
2128 ctx->num_tiles = d_image->num_cols * d_image->num_rows;
2197 for (i = 1; i < ctx->in.num_cols; i++) {