Lines Matching refs:tabcount
100 int tabcount; in tabstop_padding() local
108 tabcount = vts[0]; in tabstop_padding()
110 for (t = 1; t <= tabcount; ++t) in tabstop_padding()
119 if (t > tabcount) in tabstop_padding()
120 padding = vts[tabcount] - (int)((col - tabcol) % vts[tabcount]); in tabstop_padding()
131 int tabcount; in tabstop_at() local
139 tabcount = vts[0]; in tabstop_at()
140 for (t = 1; t <= tabcount; ++t) in tabstop_at()
149 if (t > tabcount) in tabstop_at()
150 tab_size = vts[tabcount]; in tabstop_at()
161 int tabcount; in tabstop_start() local
169 tabcount = vts[0]; in tabstop_start()
170 for (t = 1; t <= tabcount; ++t) in tabstop_start()
177 excess = tabcol % vts[tabcount]; in tabstop_start()
178 return excess + ((col - excess) / vts[tabcount]) * vts[tabcount]; in tabstop_start()
197 int tabcount; in tabstop_fromto() local
221 tabcount = vts[0]; in tabstop_fromto()
222 for (t = 1; t <= tabcount; ++t) in tabstop_fromto()
231 if (t > tabcount) in tabstop_fromto()
232 padding = vts[tabcount] - (int)((start_col - tabcol) % vts[tabcount]); in tabstop_fromto()
246 while (spaces != 0 && ++t <= tabcount) in tabstop_fromto()
258 *ntabs += spaces / vts[tabcount]; in tabstop_fromto()
259 *nspcs = spaces % vts[tabcount]; in tabstop_fromto()