Lines Matching refs:tabcol
101 colnr_T tabcol = 0; in tabstop_padding() local
112 tabcol += vts[t]; in tabstop_padding()
113 if (tabcol > col) in tabstop_padding()
115 padding = (int)(tabcol - col); in tabstop_padding()
120 padding = vts[tabcount] - (int)((col - tabcol) % vts[tabcount]); in tabstop_padding()
132 colnr_T tabcol = 0; in tabstop_at() local
142 tabcol += vts[t]; in tabstop_at()
143 if (tabcol > col) in tabstop_at()
162 colnr_T tabcol = 0; in tabstop_start() local
172 tabcol += vts[t]; in tabstop_start()
173 if (tabcol > col) in tabstop_start()
174 return tabcol - vts[t]; in tabstop_start()
177 excess = tabcol % vts[tabcount]; in tabstop_start()
195 colnr_T tabcol = 0; in tabstop_fromto() local
224 tabcol += vts[t]; in tabstop_fromto()
225 if (tabcol > start_col) in tabstop_fromto()
227 padding = (int)(tabcol - start_col); in tabstop_fromto()
232 padding = vts[tabcount] - (int)((start_col - tabcol) % vts[tabcount]); in tabstop_fromto()