Searched refs:tile_cols (Results 1 - 5 of 5) sorted by relevance

/external/skia/bench/
H A Dtile_analyze.py144 [tile_cols, tile_rows] = [int(i) for i in layout.split('x')]
152 matrix = [[0 for y in range(tile_cols)] for x in range(truncated_tile_rows)]
153 for y in range(min(viewport_cols, tile_cols)):
155 matrix[x][y] = values[x * tile_cols + y]
156 viewport_tile_sum += values[x * tile_cols + y]
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decodframe.c206 static void alloc_tile_storage(VP9D_COMP *pbi, int tile_rows, int tile_cols) { argument
212 vpx_realloc(pbi->mi_streams, tile_rows * tile_cols *
215 for (tile_col = 0; tile_col < tile_cols; ++tile_col) {
218 pbi->mi_streams[tile_row * tile_cols + tile_col] =
771 const int tile_cols = 1 << pbi->common.log2_tile_cols; local
772 xd->mi_stream = pbi->mi_streams[tile_row * tile_cols + tile_col];
886 const int tile_cols = 1 << cm->log2_tile_cols; local
895 assert(tile_cols <= (1 << 6));
907 for (tile_col = 0; tile_col < tile_cols; ++tile_col) {
909 tile_col == tile_cols
977 const int tile_cols = 1 << cm->log2_tile_cols; local
1303 const int tile_cols = 1 << cm->log2_tile_cols; local
[all...]
/external/libvpx/libvpx/vp9/encoder/
H A Dvp9_bitstream.c1176 const int tile_cols = 1 << cm->log2_tile_cols; local
1185 tok[tile_row][0] = tok[tile_row - 1][tile_cols - 1] +
1186 cpi->tok_count[tile_row - 1][tile_cols - 1];
1188 for (tile_col = 1; tile_col < tile_cols; tile_col++)
1194 for (tile_col = 0; tile_col < tile_cols; tile_col++) {
1200 if (tile_col < tile_cols - 1 || tile_row < tile_rows - 1)
1208 if (tile_col < tile_cols - 1 || tile_row < tile_rows - 1) {
H A Dvp9_encodeframe.c2000 const int tile_cols = 1 << cm->log2_tile_cols; local
2004 for (tile_col = 0; tile_col < tile_cols; tile_col++) {
/external/libvpx/libvpx/
H A Dvpxenc.c537 static const arg_def_t tile_cols = ARG_DEF(NULL, "tile-columns", 1, variable
586 &tile_cols, &tile_rows, &arnr_maxframes, &arnr_strength, &arnr_type,

Completed in 683 milliseconds