Home | History | Annotate | Download | only in src

Lines Matching refs:i1

34 	int32_t i0,i1,j0;
36 EXTRACT_WORDS(i0,i1,x);
41 if(i0<0) {i0=0x80000000;i1=0;}
42 else if((i0|i1)!=0) { i0=0x3ff00000;i1=0;}
46 if(((i0&i)|i1)==0) return x; /* x is integral */
49 i0 &= (~i); i1=0;
57 if((i1&i)==0) return x; /* x is integral */
62 j = i1 + (1<<(52-j0));
63 if(j<i1) i0+=1; /* got a carry */
64 i1 = j;
67 i1 &= (~i);
70 INSERT_WORDS(x,i0,i1);