Searched refs:column_width (Results 1 – 11 of 11) sorted by relevance
/third_party/mesa3d/src/intel/isl/ |
D | isl_tiled_memcpy.c | 309 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/ |
D | switches.cc | 85 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/ |
D | hevc_ps.c | 1312 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 …]
|
D | hevc_ps.h | 310 unsigned int *column_width; ///< ColumnWidth member
|
D | nvdec_hevc.c | 202 ppc->column_width_minus1[i] = pps->column_width[i] - 1; in nvdec_hevc_start_frame()
|
D | dxva2_hevc.c | 148 pp->column_width_minus1[i] = pps->column_width[i] - 1; in fill_picture_parameters()
|
D | vdpau_hevc.c | 162 info->column_width_minus1[i] = pps->column_width[i] - 1; in vdpau_hevc_start_frame()
|
D | vaapi_hevc.c | 208 pic_param->column_width_minus1[i] = pps->column_width[i] - 1; in vaapi_hevc_start_frame()
|
D | hevcdec.c | 2421 … 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/ |
D | hud_context.c | 1191 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/ |
D | tix.py | 883 def column_width(self, col=0, width=None, chars=None): member in HList
|