Home | History | Annotate | Download | only in src

Lines Matching refs:i0

28 	int32_t i0,j0;
31 GET_FLOAT_WORD(i0,x);
32 j0 = ((i0>>23)&0xff)-0x7f;
36 if(i0<0) {i0=0x80000000;}
37 else if(i0!=0) { i0=0x3f800000;}
41 if((i0&i)==0) return x; /* x is integral */
43 if(i0>0) i0 += (0x00800000)>>j0;
44 i0 &= (~i);
51 SET_FLOAT_WORD(x,i0);