Home | History | Annotate | Download | only in src

Lines Matching defs:i0

27 	int32_t i0,j0;
30 GET_FLOAT_WORD(i0,x);
31 j0 = ((i0>>23)&0xff)-0x7f;
35 if(i0<0) {i0=0x80000000;}
36 else if(i0!=0) { i0=0x3f800000;}
40 if((i0&i)==0) return x; /* x is integral */
42 if(i0>0) i0 += (0x00800000)>>j0;
43 i0 &= (~i);
50 SET_FLOAT_WORD(x,i0);