Lines Matching +full:right +full:- +full:justified
43 else if (str[0] == '-') in atoiwi()
56 * itoa - convert integer (decimal) to ascii string for positive numbers
64 * ever convert will be 2^32-1, which is 10
74 we will ever convert will be 2^32-1, in itoa()
82 * itoa7(val) - like itoa, except the number is right justified in a 7
92 we will ever convert will be 2^32-1, in itoa7()
100 * digits(val) - return number of decimal digits in val. Only works for
101 * non-negative numbers.
120 * argparse(line, cntp) - parse arguments in string "line", separating them
121 * out into an argv-like array, and setting *cntp to the number of
147 * percentages(cnt, out, new, old, diffs) - calculate percentage change
171 if ((change = *new - *old) < 0) in percentages()
175 ((unsigned long)*new-(unsigned long)*old); in percentages()
199 /* format_time(seconds) - format number of seconds into a suitable
246 * format_k(amt) - format a kilobyte memory value, returning a string
301 if ((nproc == 1) && (pbase->ki_pid == pid)) { in find_pid()