Home | History | Annotate | Download | only in Math

Lines Matching defs:i0

35   int32_t i0,i1,j0;

38 EXTRACT_WORDS(i0,i1,x);
39 j0 = ((i0>>20)&0x7ff)-0x3ff;
43 if(i0<0) {i0=0x80000000;i1=0;}
44 else if((i0|i1)!=0) { i0=0x3ff00000;i1=0;}
48 if(((i0&i)|i1)==0) return x; /* x is integral */
50 if(i0>0) i0 += (0x00100000)>>j0;
51 i0 &= (~i); i1=0;
61 if(i0>0) {
62 if(j0==20) i0+=1;
65 if((int32_t)j<i1) i0+=1; /* got a carry */
72 INSERT_WORDS(x,i0,i1);