Lines Matching defs:exp
30181 int exp, e2; /* exponent of real numbers */
30497 exp = 0;
30505 while( realvalue>=1e100*scale && exp<=350 ){ scale *= 1e100;exp+=100;}
30506 while( realvalue>=1e10*scale && exp<=350 ){ scale *= 1e10; exp+=10; }
30507 while( realvalue>=10.0*scale && exp<=350 ){ scale *= 10.0; exp++; }
30509 while( realvalue<1e-8 ){ realvalue *= 1e8; exp-=8; }
30510 while( realvalue<1.0 ){ realvalue *= 10.0; exp--; }
30511 if( exp>350 ){
30526 if( realvalue>=10.0 ){ realvalue *= 0.1; exp++; }
30530 if( exp<-4 || exp>precision ){
30533 precision = precision - exp;
30542 e2 = exp;
30596 if( exp<0 ){
30597 *(bufpt++) = '-'; exp = -exp;
30601 if( exp>=100 ){
30602 *(bufpt++) = (char)((exp/100)+'0'); /* 100's digit */
30603 exp %= 100;
30605 *(bufpt++) = (char)(exp/10+'0'); /* 10's digit */
30606 *(bufpt++) = (char)(exp%10+'0'); /* 1's digit */
126861 ** exp(X) - Compute e to the X-th power
127069 MFUNCTION(exp, 1, exp, math1Func ),