Searched refs:lx (Results 1 - 15 of 15) sorted by relevance

/fuchsia/zircon/third_party/ulib/musl/third_party/complex/
H A Dcexp.c35 uint32_t hx, hy, lx, ly; local
46 EXTRACT_WORDS(hx, lx, x);
48 if (((hx & 0x7fffffff) | lx) == 0)
52 if (lx != 0 || (hx & 0x7fffffff) != 0x7ff00000) {
H A Dcsinh.c43 int32_t hx, hy, ix, iy, lx, ly; local
48 EXTRACT_WORDS(hx, lx, x);
86 if ((ix | lx) == 0 && iy >= 0x7ff00000)
95 if (((hx & 0xfffff) | lx) == 0)
122 if (ix >= 0x7ff00000 && ((hx & 0xfffff) | lx) == 0) {
H A Dctanh.c71 uint32_t hx, ix, lx; local
76 EXTRACT_WORDS(hx, lx, x);
96 if ((ix & 0xfffff) | lx) /* x is NaN */
H A Dccosh.c43 int32_t hx, hy, ix, iy, lx, ly; local
48 EXTRACT_WORDS(hx, lx, x);
86 if ((ix | lx) == 0 && iy >= 0x7ff00000)
96 if (((hx & 0xfffff) | lx) == 0)
121 if (ix >= 0x7ff00000 && ((hx & 0xfffff) | lx) == 0) {
/fuchsia/zircon/third_party/ulib/jemalloc/include/jemalloc/internal/
H A Dsmoothstep.sh40 y=`echo ${yprec} k ${step} ${nsteps} / sx _2 lx 3 ^ '*' 3 lx 2 ^ '*' + p | dc | tr -d '\\\\\n' | sed -e 's#^\.#0.#g'`
46 y=`echo ${yprec} k ${step} ${nsteps} / sx 6 lx 5 ^ '*' _15 lx 4 ^ '*' + 10 lx 3 ^ '*' + p | dc | tr -d '\\\\\n' | sed -e 's#^\.#0.#g'`
52 y=`echo ${yprec} k ${step} ${nsteps} / sx _20 lx 7 ^ '*' 70 lx 6 ^ '*' + _84 lx 5 ^ '*' + 35 lx 4 ^ '*' + p | dc | tr -d '\\\\\n' | sed -e 's#^\.#0.#g'`
/fuchsia/zircon/third_party/ulib/musl/third_party/math/
H A Datan2.c47 uint32_t m, lx, ly, ix, iy; local
51 EXTRACT_WORDS(ix, lx, x);
53 if (((ix - 0x3ff00000) | lx) == 0) /* x = 1.0 */
72 if ((ix | lx) == 0)
H A Djn.c42 uint32_t ix, lx; local
46 EXTRACT_WORDS(ix, lx, x);
50 if ((ix | (lx | -lx) >> 31) > 0x7ff00000) /* nan */
70 if ((ix | lx) == 0 || ix == 0x7ff00000) /* if x is 0 or inf */
222 uint32_t ix, lx, ib; local
226 EXTRACT_WORDS(ix, lx, x);
230 if ((ix | (lx | -lx) >> 31) > 0x7ff00000) /* nan */
232 if (sign && (ix | lx) !
[all...]
H A Dasin.c73 uint32_t lx; local
74 GET_LOW_WORD(lx, x);
75 if (((ix - 0x3ff00000) | lx) == 0) /* asin(1) = +-pi/2 with inexact */
H A Dacos.c66 uint32_t lx; local
68 GET_LOW_WORD(lx, x);
69 if (((ix - 0x3ff00000) | lx) == 0) {
H A Dpow.c105 uint32_t lx, ly; local
107 EXTRACT_WORDS(hx, lx, x);
116 if (hx == 0x3ff00000 && lx == 0)
119 if (ix > 0x7ff00000 || (ix == 0x7ff00000 && lx != 0) || iy > 0x7ff00000 ||
149 if (((ix - 0x3ff00000) | lx) == 0) /* (-1)**+-inf is 1 */
183 if (lx == 0) {
H A Dpowl.c410 int n, e, sign, lx; local
427 s = frexpl(s, &lx);
428 e = (lx - 1) * n;
431 s = (2.9142135623730950L * s - 0.5 + lx) * nn * LOGE2L;
H A Dj0.c156 uint32_t ix, lx; local
158 EXTRACT_WORDS(ix, lx, x);
161 if ((ix << 1 | lx) == 0)
H A Dj1.c150 uint32_t ix, lx; local
152 EXTRACT_WORDS(ix, lx, x);
154 if ((ix << 1 | lx) == 0)
/fuchsia/zircon/third_party/ulib/musl/src/math/
H A Dhypot.c27 double_t hx, lx, hy, ly, z; local
65 sq(&hx, &lx, x);
67 return z * sqrt(ly + lx + hy + hx);
H A Dhypotl.c26 long double hx, lx, hy, ly, z; local
59 sq(&hx, &lx, x);
61 return z * sqrtl(ly + lx + hy + hx);

Completed in 109 milliseconds