HomeSort by: relevance | last modified time | path
    Searched defs:mexp (Results 1 - 2 of 2) sorted by relevancy

  /src/lib/libm/noieee_src/
n_cbrt.c 83 mexp,sign; local in function:cbrt
91 mexp=px[n0]&0x7ff00000;
92 if(mexp==0x7ff00000) return(x); /* cbrt(NaN,INF) is itself */
100 if(mexp==0) /* subnormal number */
n_support.c 78 static const unsigned short msign=0x7fff , mexp =0x7f80 ; variable in typeref:typename:const unsigned short
82 static const unsigned short msign=0x7fff, mexp =0x7ff0 ; variable in typeref:typename:const unsigned short
101 if( (k= *px & mexp ) != ~msign ) {
108 if( (k= *px & mexp ) != mexp ) {
115 if( k < (mexp>>gap) ) *px = (*px&~mexp) | (k<<gap);
120 {*px=(*px&~mexp)|(short)(1<<gap); x *= scalb(1.0,k-1);}
140 if ( (*px & mexp) == 0 ) return(x);
158 return (int)(((*px&mexp)>>gap)-bias)
    [all...]

Completed in 12 milliseconds