Lines Matching refs:tile_row
3786 int tile_col, tile_row; in vp9_init_tile_data() local
3797 for (tile_row = 0; tile_row < tile_rows; ++tile_row) in vp9_init_tile_data()
3800 &cpi->tile_data[tile_row * tile_cols + tile_col]; in vp9_init_tile_data()
3811 for (tile_row = 0; tile_row < tile_rows; ++tile_row) { in vp9_init_tile_data()
3814 &cpi->tile_data[tile_row * tile_cols + tile_col].tile_info; in vp9_init_tile_data()
3815 vp9_tile_init(tile_info, cm, tile_row, tile_col); in vp9_init_tile_data()
3817 cpi->tile_tok[tile_row][tile_col] = pre_tok + tile_tok; in vp9_init_tile_data()
3818 pre_tok = cpi->tile_tok[tile_row][tile_col]; in vp9_init_tile_data()
3825 int tile_row, int tile_col) { in vp9_encode_tile() argument
3829 &cpi->tile_data[tile_row * tile_cols + tile_col]; in vp9_encode_tile()
3831 TOKENEXTRA *tok = cpi->tile_tok[tile_row][tile_col]; in vp9_encode_tile()
3841 cpi->tok_count[tile_row][tile_col] = in vp9_encode_tile()
3842 (unsigned int)(tok - cpi->tile_tok[tile_row][tile_col]); in vp9_encode_tile()
3843 assert(tok - cpi->tile_tok[tile_row][tile_col] <= in vp9_encode_tile()
3851 int tile_col, tile_row; in encode_tiles() local
3855 for (tile_row = 0; tile_row < tile_rows; ++tile_row) in encode_tiles()
3857 vp9_encode_tile(cpi, &cpi->td, tile_row, tile_col); in encode_tiles()