Home | History | Annotate | Download | only in perldriver

Lines Matching refs:delta

49 # Format a number, optionally with a +/- delta, to n significant
55 # @optional delta in seconds
63 my $delta = shift; # may be undef
66 if (defined($delta)) {
67 my $d = formatSigDig($sigdig, $delta*$mult);
68 # restrict PRECISION of delta to that of main number
74 # isn't rounding the $delta properly. Have to put
85 # Format a time, optionally with a +/- delta, to n significant
90 # @optional delta in seconds
97 my $delta = shift; # may be undef
107 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
111 # Format a percentage, optionally with a +/- delta, to n significant
116 # @optional delta, as a fraction
123 my $delta = shift; # may be undef
125 formatNumber($sigdig, 100, $a, $delta) . '%';