Lines Matching +full:8 +full:k
26 h = roundup(height, 8); in hantro_vp9_tile_filter_size()
29 size = 24 * height32 * (MAX_NUM_TILE_COLS - 1); /* luma: 8, chroma: 8 + 8 */ in hantro_vp9_tile_filter_size()
38 h = roundup(height, 8); in hantro_vp9_bsd_control_size()
49 w = roundup(width, 8); in hantro_vp9_segment_map_size()
50 h = roundup(height, 8); in hantro_vp9_segment_map_size()
71 static void *get_coeffs_arr(struct symbol_counts *cnts, int i, int j, int k, int l, int m) in get_coeffs_arr() argument
74 return &cnts->count_coeffs[j][k][l][m]; in get_coeffs_arr()
77 return &cnts->count_coeffs8x8[j][k][l][m]; in get_coeffs_arr()
80 return &cnts->count_coeffs16x16[j][k][l][m]; in get_coeffs_arr()
83 return &cnts->count_coeffs32x32[j][k][l][m]; in get_coeffs_arr()
88 static void *get_eobs1(struct symbol_counts *cnts, int i, int j, int k, int l, int m) in get_eobs1() argument
91 return &cnts->count_coeffs[j][k][l][m][3]; in get_eobs1()
94 return &cnts->count_coeffs8x8[j][k][l][m][3]; in get_eobs1()
97 return &cnts->count_coeffs16x16[j][k][l][m][3]; in get_eobs1()
100 return &cnts->count_coeffs32x32[j][k][l][m][3]; in get_eobs1()
108 vp9_ctx->cnts.coeff[i][j][k][l][m] = \
109 get_coeffs_arr(cnts, i, j, k, l, m); \
110 vp9_ctx->cnts.eob[i][j][k][l][m][0] = \
111 &cnts->count_eobs[i][j][k][l][m]; \
112 vp9_ctx->cnts.eob[i][j][k][l][m][1] = \
113 get_eobs1(cnts, i, j, k, l, m); \
121 int i, j, k, l, m; in init_v4l2_vp9_count_tbl() local
153 for (k = 0; k < ARRAY_SIZE(vp9_ctx->cnts.coeff[i][0]); ++k) in init_v4l2_vp9_count_tbl()