HomeSort by relevance Sort by last modified time
    Searched refs:new_col (Results 1 - 2 of 2) sorted by null

  /external/libvpx/libvpx/vp8/decoder/
error_concealment.c 97 * overlapping block at position (new_row, new_col) (in pixels, Q3). The
102 int new_row, int new_col, int mb_row,
127 /* Check if new_row and new_col are evenly divisible by 4 (Q3),
131 if (new_col >= 0 && (new_col & 0x1F) == 0) end_col = 1;
137 if (new_col < (mb_col * 16) << 3) end_col = 1;
143 block_overlap(new_row, new_col, (((first_blk_row + row) * 4) << 3),
154 int new_row, new_col; local
165 new_col = col - bmi->mv.as_mv.col;
167 if (new_row >= ((16 * mb_rows) << 3) || new_col >= ((16 * mb_cols) << 3))
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
load_and_remap_matrix_op.cc 237 int64 new_col = old_col; variable
247 new_col = *new_col_ptr;
251 new_row < num_rows_ && new_col < num_cols_ &&
252 new_row >= 0 && new_col >= 0,
254 "new_row=", new_row, " and new_col=", new_col,
259 output_matrix(new_row, new_col) = loaded_tensor(row, old_col);

Completed in 4882 milliseconds