Home | History | Annotate | Download | only in src

Lines Matching defs:i0

34 	int32_t i0,i1,j0;
36 EXTRACT_WORDS(i0,i1,x);
37 j0 = ((i0>>20)&0x7ff)-0x3ff;
41 if(i0>=0) {i0=i1=0;}
42 else if(((i0&0x7fffffff)|i1)!=0)
43 { i0=0xbff00000;i1=0;}
47 if(((i0&i)|i1)==0) return x; /* x is integral */
49 if(i0<0) i0 += (0x00100000)>>j0;
50 i0 &= (~i); i1=0;
60 if(i0<0) {
61 if(j0==20) i0+=1;
64 if(j<i1) i0 +=1 ; /* got a carry */
71 INSERT_WORDS(x,i0,i1);