Lines Matching refs:total
281 int total; in shift_block() local
303 total = (int)((unsigned)amount * (unsigned)sw_val); in shift_block()
304 if ((total / sw_val) != amount) in shift_block()
317 total += bd.pre_whitesp; // all virtual WS up to & incl a split TAB in shift_block()
339 total += incr; in shift_block()
346 tabstop_fromto(ws_vcol, ws_vcol + total, in shift_block()
349 j = total; in shift_block()
352 i = ((ws_vcol % ts_val) + total) / ts_val; // number of tabs in shift_block()
354 j = ((ws_vcol % ts_val) + total) % ts_val; // number of spp in shift_block()
356 j = total; in shift_block()
412 shift_amount = (block_space_width < (size_t)total in shift_block()
413 ? block_space_width : (size_t)total); in shift_block()