Home | History | Annotate | Download | only in perldriver

Lines Matching refs:delta

45 # Format a number, optionally with a +/- delta, to n significant
51 # @optional delta in seconds
59 my $delta = shift; # may be undef
62 if (defined($delta)) {
63 my $d = formatSigDig($sigdig, $delta*$mult);
64 # restrict PRECISION of delta to that of main number
70 # isn't rounding the $delta properly. Have to put
81 # Format a time, optionally with a +/- delta, to n significant
86 # @optional delta in seconds
93 my $delta = shift; # may be undef
103 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
107 # Format a percentage, optionally with a +/- delta, to n significant
112 # @optional delta, as a fraction
119 my $delta = shift; # may be undef
121 formatNumber($sigdig, 100, $a, $delta) . '%';