- t2ex
- bsd_source/lib/libc/src_bsd/math/e_fmod.c - 4.3KB - 142 lines
117: hx = ((hx-0x00100000)|((iy+1023)<<20));
118: INSERT_WORDS(x,hx|sx,lx);
119: } else { /* subnormal output */
- More results from e_fmod.c
- bsd_source/lib/libc/src_bsd/math/e_sqrt.c - 17.9KB - 454 lines
185: ix0 += (m <<20);
186: INSERT_WORDS(z,ix0,ix1);
187: return z;
- bsd_source/lib/libc/src_bsd/math/k_cos.c - 3.3KB - 84 lines
77: } else {
78: INSERT_WORDS(qx,ix-0x00200000,0); /* x/4 */
79: }
- bsd_source/lib/libc/src_bsd/math/s_cbrt.c - 2.6KB - 91 lines
67: GET_HIGH_WORD(high,t);
68: INSERT_WORDS(t,high+0x00000001,0);
69:
- bsd_source/lib/libc/src_bsd/math/s_ceil.c - 2.3KB - 82 lines
70: }
71: INSERT_WORDS(x,i0,i1);
72: return x;
- bsd_source/lib/libc/src_bsd/math/s_exp2.c - 16.7KB - 402 lines
379: if (k >= -1021 << 20)
380: INSERT_WORDS(twopk, 0x3ff00000 + k, 0);
381: else
- More results from s_exp2.c
- bsd_source/lib/libc/src_bsd/math/s_exp2f.c - 4.7KB - 135 lines
125: z = x - t;
126: INSERT_WORDS(twopk, 0x3ff00000 + k, 0);
127:
- bsd_source/lib/libc/src_bsd/math/s_floor.c - 2.3KB - 83 lines
71: }
72: INSERT_WORDS(x,i0,i1);
73: return x;
- bsd_source/lib/libc/src_bsd/math/s_nextafter.c - 2.8KB - 89 lines
43: if((ix|lx)==0) { /* x == 0 */
44: INSERT_WORDS(x,hy&0x80000000,1); /* return +-minsubnormal */
45: y = x*x;
- More results from s_nextafter.c
- bsd_source/lib/libc/src_bsd/math/s_remquo.c - 4.9KB - 163 lines
137: fixup:
138: INSERT_WORDS(x,hx,lx);
139: y = fabs(y);