Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/drivers/dri/i965/
Dintel_tiled_memcpy.c306 const uint32_t column_width = ytile_span; in linear_to_ytiled() local
307 const uint32_t bytes_per_column = column_width * ytile_height; in linear_to_ytiled()
324 for (yo = y0 * column_width; yo < y1 * column_width; yo += column_width) { in linear_to_ytiled()
410 const uint32_t column_width = ytile_span; in ytiled_to_linear() local
411 const uint32_t bytes_per_column = column_width * ytile_height; in ytiled_to_linear()
428 for (yo = y0 * column_width; yo < y1 * column_width; yo += column_width) { in ytiled_to_linear()
/external/python/cpython2/Demo/tix/samples/
DSHList2.py71 hlist.column_width(2,0)
104 hlist.column_width(0, chars=20)
/external/toolchain-utils/crb/
Dtable_formatter.py127 column_width=14, argument
141 width = column_width
/external/mesa3d/src/gallium/auxiliary/hud/
Dhud_context.c1061 unsigned column_width = 251; in hud_parse_env_var() local
1092 column_width = width > column_width ? width : column_width; in hud_parse_env_var()
1311 x += column_width + hud->font.glyph_width * 9; in hud_parse_env_var()
1320 column_width = 251; in hud_parse_env_var()
/external/python/cpython2/Lib/lib-tk/
DTix.py887 def column_width(self, col=0, width=None, chars=None): member in HList