- t2ex
- bsd_source/lib/libc/src_bsd/math/s_fabsf.c - 740B - 30 lines
26: u_int32_t ix;
27: GET_FLOAT_WORD(ix,x);
28: SET_FLOAT_WORD(x,ix&0x7fffffff);
- bsd_source/lib/libc/src_bsd/math/s_floorf.c - 1.7KB - 58 lines
34: u_int32_t i;
35: GET_FLOAT_WORD(i0,x);
36: jj0 = ((i0>>23)&0xff)-0x7f;
- bsd_source/lib/libc/src_bsd/math/s_frexpf.c - 1.1KB - 40 lines
25: int32_t hx,ix;
26: GET_FLOAT_WORD(hx,x);
27: ix = 0x7fffffff&hx;
- More results from s_frexpf.c
- bsd_source/lib/libc/src_bsd/math/s_ilogbf.c - 1010B - 35 lines
23:
24: GET_FLOAT_WORD(hx,x);
25: hx &= 0x7fffffff;
- bsd_source/lib/libc/src_bsd/math/s_log1pf.c - 3.3KB - 96 lines
38:
39: GET_FLOAT_WORD(hx,x);
40: ax = hx&0x7fffffff;
- More results from s_log1pf.c
- bsd_source/lib/libc/src_bsd/math/s_logbf.c - 928B - 31 lines
22: int32_t ix;
23: GET_FLOAT_WORD(ix,x);
24: ix &= 0x7fffffff; /* high |x| */
- bsd_source/lib/libc/src_bsd/math/s_lrintf.c - 3.0KB - 92 lines
58:
59: GET_FLOAT_WORD(i0, x);
60: e = i0 >> SNG_FRACBITS;
- More results from s_lrintf.c
- bsd_source/lib/libc/src_bsd/math/s_lroundf.c - 2.9KB - 83 lines
52:
53: GET_FLOAT_WORD(i0, x);
54: e = i0 >> SNG_FRACBITS;
- More results from s_lroundf.c
- bsd_source/lib/libc/src_bsd/math/s_modff.c - 1.7KB - 52 lines
25: u_int32_t i;
26: GET_FLOAT_WORD(i0,x);
27: jj0 = ((i0>>23)&0xff)-0x7f; /* exponent of x */
- More results from s_modff.c
- bsd_source/lib/libc/src_bsd/math/s_nextafterf.c - 2.1KB - 62 lines
23:
24: GET_FLOAT_WORD(hx,x);
25: GET_FLOAT_WORD(hy,y);
- More results from s_nextafterf.c