Home | History | Annotate | Download | only in misc

Lines Matching refs:rValue

1163         double  rValue, tValue;
1216 rValue = dValue * small10pow[exp];
1218 tValue = rValue / small10pow[exp];
1223 return (isNegative)? -rValue : rValue;
1234 rValue = dValue * small10pow[exp-slop];
1237 tValue = rValue / small10pow[exp-slop];
1242 return (isNegative)? -rValue : rValue;
1252 rValue = dValue / small10pow[-exp];
1253 tValue = rValue * small10pow[-exp];
1259 return (isNegative)? -rValue : rValue;