Home | History | Annotate | Download | only in math

Lines Matching refs:i1

33 	int64_t i0,i1,j0;
35 GET_FLT128_WORDS64(i0,i1,x);
40 if(i0>=0) {i0=i1=0;}
41 else if(((i0&0x7fffffffffffffffLL)|i1)!=0)
42 { i0=0xbfff000000000000ULL;i1=0;}
45 if(((i0&i)|i1)==0) return x; /* x is integral */
47 i0 &= (~i); i1=0;
54 if((i1&i)==0) return x; /* x is integral */
58 j = i1+(1LL<<(112-j0));
59 if(j<i1) i0 +=1 ; /* got a carry */
60 i1=j;
63 i1 &= (~i);
65 SET_FLT128_WORDS64(x,i0,i1);