Lines Matching refs:aDouble
890 double aDouble = rPar.Get( 1 )->GetDouble(); in RTLFUNC() local
891 aDouble = exp( aDouble ); in RTLFUNC()
892 checkArithmeticOverflow( aDouble ); in RTLFUNC()
893 rPar.Get( 0 )->PutDouble( aDouble ); in RTLFUNC()
1148 double aDouble= pArg->GetDouble(); in RTLFUNC() local
1153 aDouble = floor( aDouble ); in RTLFUNC()
1154 rPar.Get(0)->PutDouble( aDouble ); in RTLFUNC()
1170 double aDouble = pArg->GetDouble(); in RTLFUNC() local
1171 if ( aDouble >= 0.0 ) in RTLFUNC()
1172 aDouble = floor( aDouble ); in RTLFUNC()
1174 aDouble = ceil( aDouble ); in RTLFUNC()
1175 rPar.Get(0)->PutDouble( aDouble ); in RTLFUNC()
1516 double aDouble = rPar.Get(1)->GetDouble(); in RTLFUNC() local
1518 if ( aDouble > 0 ) in RTLFUNC()
1520 else if ( aDouble < 0 ) in RTLFUNC()
1565 double aDouble = rPar.Get(1)->GetDouble(); in RTLFUNC() local
1566 if ( aDouble >= 0 ) in RTLFUNC()
1567 rPar.Get(0)->PutDouble( sqrt( aDouble )); in RTLFUNC()