- t2ex
- bsd_source/lib/libc/src_bsd/math/s_atan.c - 4.6KB - 129 lines
82: u_int32_t low;
83: GET_LOW_WORD(low,x);
84: if(ix>0x7ff00000||
- bsd_source/lib/libc/src_bsd/math/s_cbrt.c - 2.6KB - 91 lines
46: if(hx>=0x7ff00000) return(x+x); /* cbrt(NaN,INF) is itself */
47: GET_LOW_WORD(low,x);
48: if((hx|low)==0)
- bsd_source/lib/libc/src_bsd/math/s_exp2.c - 16.7KB - 402 lines
352: if(ix >= 0x7ff00000) {
353: GET_LOW_WORD(lx,x);
354: if(((ix & 0xfffff) | lx) != 0 || (hx & 0x80000000) == 0)
- More results from s_exp2.c
- bsd_source/lib/libc/src_bsd/math/s_expm1.c - 8.9KB - 230 lines
147: u_int32_t low;
148: GET_LOW_WORD(low,x);
149: if(((hx&0xfffff)|low)!=0)
- bsd_source/lib/libc/src_bsd/math/s_ilogb.c - 1.5KB - 57 lines
34: if(hx<0x00100000) {
35: GET_LOW_WORD(lx,x);
36: if((hx|lx)==0)