Searched refs:column (Results 1 - 1 of 1) sorted by relevance

/darwin-on-arm/xnu/osfmk/console/
H A Dvideo_console.c271 static boolean_t gc_is_tab_stop(unsigned int column);
288 static void gc_set_tab_stop(unsigned int column, boolean_t enabled);
999 gc_set_tab_stop(unsigned int column, boolean_t enabled) argument
1001 if (gc_buffer_tab_stops && (column < vinfo.v_columns)) {
1002 gc_buffer_tab_stops[column] = enabled;
1006 static boolean_t gc_is_tab_stop(unsigned int column) argument
1009 return ((column % 8) == 0);
1010 if (column < vinfo.v_columns)
1011 return gc_buffer_tab_stops[column];
1039 uint32_t column, ro local
1152 uint32_t column, row; local
[all...]

Completed in 75 milliseconds