reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383; 39 if (e < 0 || (fb.u.high.s.low & 0x00008000)) 43 return fb.u.low.all >> (63 - e);projects/compiler-rt/lib/builtins/fixunsxfsi.c
38 int e = (fb.u.high.s.low & 0x00007FFF) - 16383; 39 if (e < 0 || (fb.u.high.s.low & 0x00008000)) 43 return fb.u.low.s.high >> (31 - e);projects/compiler-rt/lib/builtins/fixunsxfti.c
31 int e = (fb.u.high.s.low & 0x00007FFF) - 16383; 32 if (e < 0 || (fb.u.high.s.low & 0x00008000)) 36 tu_int r = fb.u.low.all;projects/compiler-rt/lib/builtins/fixxfdi.c
39 int e = (fb.u.high.s.low & 0x00007FFF) - 16383; 44 di_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15); 45 di_int r = fb.u.low.all;projects/compiler-rt/lib/builtins/fixxfti.c
32 int e = (fb.u.high.s.low & 0x00007FFF) - 16383; 35 ti_int s = -(si_int)((fb.u.high.s.low & 0x00008000) >> 15); 36 ti_int r = fb.u.low.all;projects/compiler-rt/lib/builtins/floattixf.c
67 fb.u.high.s.low = ((su_int)s & 0x8000) | // sign 69 fb.u.low.all = (du_int)a; // mantissaprojects/compiler-rt/lib/builtins/floatuntixf.c
65 fb.u.high.s.low = (e + 16383); // exponent 66 fb.u.low.all = (du_int)a; // mantissa