Home | History | Annotate | Download | only in lang

Lines Matching refs:rValue

1322         double  rValue, tValue;
1375 rValue = dValue * small10pow[exp];
1377 tValue = rValue / small10pow[exp];
1382 return (isNegative)? -rValue : rValue;
1393 rValue = dValue * small10pow[exp-slop];
1396 tValue = rValue / small10pow[exp-slop];
1401 return (isNegative)? -rValue : rValue;
1411 rValue = dValue / small10pow[-exp];
1412 tValue = rValue * small10pow[-exp];
1418 return (isNegative)? -rValue : rValue;