/external/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 …]
|
/external/igt-gpu-tools/lib/ |
D | igt_vc4.c | 339 static size_t vc4_sand_tiled_offset(size_t column_width, size_t column_size, size_t x, in vc4_sand_tiled_offset() argument 347 cols_x = x / column_width; in vc4_sand_tiled_offset() 351 pix_x = x % column_width; in vc4_sand_tiled_offset() 352 offset += (column_width * y + pix_x) * bpp / 8; in vc4_sand_tiled_offset() 363 uint32_t column_width_bytes, column_width, column_size; in vc4_fb_convert_plane_to_sand_tiled() local 384 column_width = column_width_bytes * dst->plane_width[plane] / dst->width; in vc4_fb_convert_plane_to_sand_tiled() 393 dst_offset += vc4_sand_tiled_offset(column_width, in vc4_fb_convert_plane_to_sand_tiled() 419 uint32_t column_width_bytes, column_width, column_size; in vc4_fb_convert_plane_from_sand_tiled() local 440 column_width = column_width_bytes * src->plane_width[plane] / src->width; in vc4_fb_convert_plane_from_sand_tiled() 448 src_offset += vc4_sand_tiled_offset(column_width, in vc4_fb_convert_plane_from_sand_tiled()
|
/external/perfetto/src/trace_processor/ |
D | trace_processor_shell.cc | 431 uint32_t column_width) { in PrintQueryResultInteractively() argument 447 printf("%-*.*s ", column_width, column_width, in PrintQueryResultInteractively() 451 std::string divider(column_width, '-'); in PrintQueryResultInteractively() 453 printf("%-*s ", column_width, divider.c_str()); in PrintQueryResultInteractively() 462 printf("%-*s", column_width, "[NULL]"); in PrintQueryResultInteractively() 465 printf("%*f", column_width, value.double_value); in PrintQueryResultInteractively() 468 printf("%*" PRIi64, column_width, value.long_value); in PrintQueryResultInteractively() 471 printf("%-*.*s", column_width, column_width, value.string_value); in PrintQueryResultInteractively() 474 printf("%-*s", column_width, "<raw bytes>"); in PrintQueryResultInteractively() 1005 util::Status StartInteractiveShell(uint32_t column_width) { in StartInteractiveShell() argument [all …]
|
/external/python/cpython2/Demo/tix/samples/ |
D | SHList2.py | 71 hlist.column_width(2,0) 104 hlist.column_width(0, chars=20)
|
/external/rust/crates/textwrap/src/ |
D | lib.rs | 1049 let column_width = std::cmp::max(inner_width / columns, 1); in wrap_columns() localVariable 1050 options.width = column_width; in wrap_columns() 1051 let last_column_padding = " ".repeat(inner_width % column_width); in wrap_columns() 1062 line.push_str(&" ".repeat(column_width - core::display_width(&column_line))); in wrap_columns() 1065 line.push_str(&" ".repeat(column_width)); in wrap_columns()
|
/external/mesa3d/src/gallium/auxiliary/hud/ |
D | hud_context.c | 1183 unsigned column_width = 251; in hud_parse_env_var() local 1221 column_width = width > column_width ? width : column_width; in hud_parse_env_var() 1461 x += column_width + hud->font.glyph_width * 9; in hud_parse_env_var() 1470 column_width = 251; in hud_parse_env_var()
|
/external/ethtool/ |
D | sfc.c | 3743 static size_t column_width(const struct efx_nic_reg_field *field) in column_width() function 3857 printf(" %-*s", (int)column_width(field), in print_complex_table() 3867 for (j = column_width(field); j > 0; j--) in print_complex_table()
|
/external/python/cpython3/Lib/tkinter/ |
D | tix.py | 881 def column_width(self, col=0, width=None, chars=None): member in HList
|
/external/python/cpython2/Lib/lib-tk/ |
D | Tix.py | 883 def column_width(self, col=0, width=None, chars=None): member in HList
|