Home
last modified time | relevance | path

Searched refs:column_width (Results 1 – 11 of 11) sorted by relevance

/third_party/mesa3d/src/intel/isl/
Disl_tiled_memcpy.c309 const uint32_t column_width = ytile_span; in linear_to_ytiled() local
310 const uint32_t bytes_per_column = column_width * ytile_height; in linear_to_ytiled()
331 for (yo = y0 * column_width; yo < y1 * column_width; yo += column_width) { in linear_to_ytiled()
352 for (yo = y1 * column_width; yo < y2 * column_width; yo += 4 * column_width) { in linear_to_ytiled()
357 … mem_copy(dst + ((xo0 + yo + 0 * column_width) ^ swizzle0), src + x0 + 0 * src_pitch, x1 - x0); in linear_to_ytiled()
358 … mem_copy(dst + ((xo0 + yo + 1 * column_width) ^ swizzle0), src + x0 + 1 * src_pitch, x1 - x0); in linear_to_ytiled()
359 … mem_copy(dst + ((xo0 + yo + 2 * column_width) ^ swizzle0), src + x0 + 2 * src_pitch, x1 - x0); in linear_to_ytiled()
360 … mem_copy(dst + ((xo0 + yo + 3 * column_width) ^ swizzle0), src + x0 + 3 * src_pitch, x1 - x0); in linear_to_ytiled()
367 …mem_copy_align16(dst + ((xo + yo + 0 * column_width) ^ swizzle), src + x + 0 * src_pitch, ytile_sp… in linear_to_ytiled()
368 …mem_copy_align16(dst + ((xo + yo + 1 * column_width) ^ swizzle), src + x + 1 * src_pitch, ytile_sp… in linear_to_ytiled()
[all …]
/third_party/flutter/engine/flutter/shell/common/
Dswitches.cc85 const uint32_t column_width = 80; in PrintUsage() local
95 const uint32_t help_width = column_width - max_width - 3; in PrintUsage()
97 std::cerr << std::string(column_width, '-') << std::endl; in PrintUsage()
123 std::cerr << std::string(column_width, '-') << std::endl; in PrintUsage()
/third_party/ffmpeg/libavcodec/
Dhevc_ps.c1312 av_freep(&pps->column_width); in hevc_pps_free()
1382 if (!pps->column_width) { in setup_pps()
1383 pps->column_width = av_malloc_array(pps->num_tile_columns, sizeof(*pps->column_width)); in setup_pps()
1386 if (!pps->column_width || !pps->row_height) in setup_pps()
1390 pps->column_width[i] = ((i + 1) * sps->ctb_width) / pps->num_tile_columns - in setup_pps()
1402 pps->col_bd[i + 1] = pps->col_bd[i] + pps->column_width[i]; in setup_pps()
1450 val += pps->row_height[tile_y] * pps->column_width[i]; in setup_pps()
1454 val += (tb_y - pps->row_bd[tile_y]) * pps->column_width[tile_x] + in setup_pps()
1637 pps->column_width = av_malloc_array(pps->num_tile_columns, sizeof(*pps->column_width)); in ff_hevc_decode_nal_pps()
1639 if (!pps->column_width || !pps->row_height) { in ff_hevc_decode_nal_pps()
[all …]
Dhevc_ps.h310 unsigned int *column_width; ///< ColumnWidth member
Dnvdec_hevc.c202 ppc->column_width_minus1[i] = pps->column_width[i] - 1; in nvdec_hevc_start_frame()
Ddxva2_hevc.c148 pp->column_width_minus1[i] = pps->column_width[i] - 1; in fill_picture_parameters()
Dvdpau_hevc.c162 info->column_width_minus1[i] = pps->column_width[i] - 1; in vdpau_hevc_start_frame()
Dvaapi_hevc.c208 pic_param->column_width_minus1[i] = pps->column_width[i] - 1; in vaapi_hevc_start_frame()
Dhevcdec.c2421 … lc->end_of_tiles_x = x_ctb + (s->ps.pps->column_width[idxX] << s->ps.sps->log2_ctb_size); in hls_decode_neighbour()
2916 lc->end_of_tiles_x = s->ps.pps->column_width[0] << s->ps.sps->log2_ctb_size; in hevc_frame_start()
/third_party/mesa3d/src/gallium/auxiliary/hud/
Dhud_context.c1191 unsigned column_width = 251; in hud_parse_env_var() local
1229 column_width = width > column_width ? width : column_width; in hud_parse_env_var()
1469 x += column_width + hud->font.glyph_width * 9; in hud_parse_env_var()
1478 column_width = 251; in hud_parse_env_var()
/third_party/python/Lib/tkinter/
Dtix.py883 def column_width(self, col=0, width=None, chars=None): member in HList