Lines Matching refs:spaces
598 static void move_right(char *buf, char *end, unsigned len, unsigned spaces) in move_right() argument
604 if (size <= spaces) { in move_right()
609 if (len > size - spaces) in move_right()
610 len = size - spaces; in move_right()
611 memmove(buf + spaces, buf, len); in move_right()
613 memset(buf, ' ', spaces); in move_right()
627 unsigned spaces; in widen_string() local
632 spaces = spec.field_width - n; in widen_string()
634 move_right(buf - n, end, n, spaces); in widen_string()
635 return buf + spaces; in widen_string()
637 while (spaces--) { in widen_string()