Lines Matching defs:num_cols

121 	unsigned int num_cols;
180 /* num_rows * num_cols */
348 ic_image->num_cols, ic_image->num_rows,
471 ctx->in.num_cols = cols;
677 tile_idx = in->num_cols * row + col;
708 for (col = 0; col < in->num_cols; col++) {
709 tile_idx = in->num_cols * row + col;
767 for (col = in->num_cols - 1; col > 0; col--) {
770 bool allow_out_overshoot = (col < in->num_cols - 1) &&
872 const unsigned int row = i / image->num_cols;
873 const unsigned int col = i % image->num_cols;
929 return src_row * s_image->num_cols + src_col;
936 src_col = src_col * 2 - (s_image->num_cols - 1);
961 dst_col += d_image->num_cols - 1;
965 return dst_row * d_image->num_cols + dst_col;
977 for (col = 0; col < s_image->num_cols; col++) {
1013 for (col = 0; col < image->num_cols; col++) {
1067 for (col = 0; col < image->num_cols; col++) {
1135 for (col = 0; col < ctx->in.num_cols; col++) {
1136 bool closest = (col < ctx->in.num_cols - 1) &&
1177 tile_idx = row * ctx->in.num_cols + col;
1199 tile_idx = row * ctx->in.num_cols;
1233 for (col = 0; col < ctx->in.num_cols; col++) {
1234 tile_idx = row * ctx->in.num_cols + col;
1411 row = tile / s_image->num_cols;
1412 col = tile % s_image->num_cols;
1623 if (ctx->resize_coeffs_h[cur_tile % ctx->in.num_cols] !=
1624 ctx->resize_coeffs_h[next_tile % ctx->in.num_cols] ||
1625 ctx->resize_coeffs_v[cur_tile / ctx->in.num_cols] !=
1626 ctx->resize_coeffs_v[next_tile / ctx->in.num_cols] ||
2125 d_image->num_rows = s_image->num_cols;
2126 d_image->num_cols = s_image->num_rows;
2129 d_image->num_cols = s_image->num_cols;
2132 ctx->num_tiles = d_image->num_cols * d_image->num_rows;
2201 for (i = 1; i < ctx->in.num_cols; i++) {