Lines Matching refs:mi_row
549 int mi_row, int mi_col) {
554 xd->mi_8x8 = cm->mi_grid_visible + (mi_row * cm->mode_info_stride + mi_col);
558 mi_row, num_8x8_blocks_high_lookup[m->mbmi.sb_type],
577 static void write_partition(VP9_COMP *cpi, int hbs, int mi_row, int mi_col,
582 mi_row, mi_col, bsize);
584 const int has_rows = (mi_row + hbs) < cm->mi_rows;
602 int mi_row, int mi_col, BLOCK_SIZE bsize) {
608 MODE_INFO *m = cm->mi_grid_visible[mi_row * cm->mode_info_stride + mi_col];
610 if (mi_row >= cm->mi_rows || mi_col >= cm->mi_cols)
614 write_partition(cpi, bs, mi_row, mi_col, partition, bsize, w);
617 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
621 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
624 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
625 if (mi_row + bs < cm->mi_rows)
626 write_modes_b(cpi, tile, w, tok, tok_end, mi_row + bs, mi_col);
629 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col);
631 write_modes_b(cpi, tile, w, tok, tok_end, mi_row, mi_col + bs);
634 write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, subsize);
635 write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col + bs,
637 write_modes_sb(cpi, tile, w, tok, tok_end, mi_row + bs, mi_col,
639 write_modes_sb(cpi, tile, w, tok, tok_end, mi_row + bs, mi_col + bs,
651 mi_row, mi_col, subsize, bsize);
656 int mi_row, mi_col;
658 for (mi_row = tile->mi_row_start; mi_row < tile->mi_row_end;
659 mi_row += MI_BLOCK_SIZE) {
663 write_modes_sb(cpi, tile, w, tok, tok_end, mi_row, mi_col, BLOCK_64X64);