Lines Matching refs:spaces
194 int spaces = end_col - start_col; in tabstop_fromto() local
207 if (spaces >= initspc) in tabstop_fromto()
209 spaces -= initspc; in tabstop_fromto()
212 tabs += spaces / ts; in tabstop_fromto()
213 spaces -= (spaces / ts) * ts; in tabstop_fromto()
216 *nspcs = spaces; in tabstop_fromto()
235 if (spaces < padding) in tabstop_fromto()
238 *nspcs = spaces; in tabstop_fromto()
243 spaces -= padding; in tabstop_fromto()
246 while (spaces != 0 && ++t <= tabcount) in tabstop_fromto()
249 if (spaces < padding) in tabstop_fromto()
251 *nspcs = spaces; in tabstop_fromto()
255 spaces -= padding; in tabstop_fromto()
258 *ntabs += spaces / vts[tabcount]; in tabstop_fromto()
259 *nspcs = spaces % vts[tabcount]; in tabstop_fromto()