Home
last modified time | relevance | path

Searched +full:0 +full:x4b800000 (Results 1 – 11 of 11) sorted by relevance

/freebsd/lib/msun/src/
H A Ds_cbrtf.c37 sign=hx&0x80000000; /* sign= sign(x) */ in cbrtf()
39 if(hx>=0x7f800000) return(x+x); /* cbrt(NaN,INF) is itself */ in cbrtf()
42 if(hx<0x00800000) { /* zero or subnormal? */ in cbrtf()
43 if(hx==0) in cbrtf()
44 return(x); /* cbrt(+-0) is itself */ in cbrtf()
45 SET_FLOAT_WORD(t,0x4b800000); /* set t= 2**24 */ in cbrtf()
48 SET_FLOAT_WORD(t,sign|((high&0x7fffffff)/3+B2)); in cbrtf()
53 * First step Newton iteration (solving t*t-x/t == 0) to 16 bits. In in cbrtf()
H A Ds_cospif.c41 volatile static const float vzero = 0;
50 ix = ix & 0x7fffffff; in cospif()
53 if (ix < 0x3f800000) { /* |x| < 1 */ in cospif()
54 if (ix < 0x3e800000) { /* |x| < 0.25 */ in cospif()
55 if (ix < 0x38800000) { /* |x| < 0x1p-14 */ in cospif()
56 /* Raise inexact iff != 0. */ in cospif()
57 if ((int)ax == 0) in cospif()
63 if (ix < 0x3f000000) /* |x| < 0.5 */ in cospif()
65 else if (ix < 0x3f400000) { /* |x| < 0.75 */ in cospif()
66 if (ix == 0x3f000000) in cospif()
[all …]
H A Ds_tanpif.c38 pi_hi = 3.14160156e+00F, /* 0x40491000 */
39 pi_lo = -8.90890988e-06F; /* 0xb715777a */
56 volatile static const float vzero = 0;
65 ix = hx & 0x7fffffff; in tanpif()
68 if (ix < 0x3f800000) { /* |x| < 1 */ in tanpif()
69 if (ix < 0x3f000000) { /* |x| < 0.5 */ in tanpif()
70 if (ix < 0x38800000) { /* |x| < 0x1p-14 */ in tanpif()
71 if (ix == 0) in tanpif()
73 SET_FLOAT_WORD(hi, hx & 0xffff0000); in tanpif()
74 hi *= 0x1p23F; in tanpif()
[all …]
H A De_powf.c21 dp_h[] = { 0.0, 5.84960938e-01,}, /* 0x3f15c000 */
22 dp_l[] = { 0.0, 1.56322085e-06,}, /* 0x35d1cfdc */
26 thrd = 3.33333343e-01, /* 0x3eaaaaab */
29 two24 = 16777216.0, /* 0x4b800000 */
33 L1 = 6.0000002384e-01, /* 0x3f19999a */
34 L2 = 4.2857143283e-01, /* 0x3edb6db7 */
35 L3 = 3.3333334327e-01, /* 0x3eaaaaab */
36 L4 = 2.7272811532e-01, /* 0x3e8ba305 */
37 L5 = 2.3066075146e-01, /* 0x3e6c325
[all...]
/freebsd/sys/contrib/device-tree/Bindings/dma/ti/
H A Dk3-pktdma.yaml39 for source thread IDs (rx): 0 - 0x7fff
40 for destination thread IDs (tx): 0x8000 - 0xffff
82 maximum: 0x3f
93 maximum: 0x3f
104 maximum: 0x3f
115 maximum: 0x3f
150 reg = <0x0 0x485c000
[all...]
/freebsd/contrib/arm-optimized-routines/pl/math/
H A Dv_log1pf_2u1.c22 V4 (0x1.5555aap-2f), V4 (-0x1.000038p-2f), V4 (0x1.99675cp-3f),
23 V4 (-0x1.54ef78p-3f), V4 (0x1.28a1f4p-3f), V4 (-0x1.0da91p-3f),
24 V4 (0x1.abcb6p-4f), V4 (-0x1.6f0d5ep-5f) },
25 .ln2 = V4 (0x1.62e43p-1f),
26 .tiny_bound = V4 (0x34000000), /* asuint32(0x1p-23). ulp=0.5 at 0x1p-23. */
27 .thresh = V4 (0x4b800000), /* asuint32(INFINITY) - tiny_bound. */
28 .minus_one = V4 (0xbf800000),
29 .four = V4 (0x40800000),
30 .three_quarters = V4 (0x3f400000)
37 float32x4_t p_12 = vfmaq_f32 (v_f32 (-0.5), m, p[0]); in eval_poly()
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/ti/
H A Dk3-am62a-main.dtsi11 reg = <0x00 0x70000000 0x00 0x10000>;
14 ranges = <0x0 0x00 0x70000000 0x10000>;
19 reg = <0x00 0x0180000
[all...]
H A Dk3-am62-main.dtsi11 reg = <0x00 0x70000000 0x00 0x10000>;
14 ranges = <0x0 0x00 0x70000000 0x10000>;
24 reg = <0x00 0x0180000
[all...]
H A Dk3-am64-main.dtsi13 #clock-cells = <0>;
15 clock-frequency = <0>;
22 reg = <0x00 0x70000000 0x00 0x200000>;
25 ranges = <0x0 0x00 0x70000000 0x20000
[all...]
/freebsd/contrib/arm-optimized-routines/math/test/rtest/
H A Ddotest.c73 uint32 exp = (hl >> 52) & 0x7ff; in set_mpfr_d()
76 if (exp == 0x7ff) { in set_mpfr_d()
77 if (mantissa == 0) in set_mpfr_d()
81 } else if (exp == 0 && mantissa == 0) { in set_mpfr_d()
82 mpfr_set_ui(x, 0, GMP_RNDN); in set_mpfr_d()
83 mpfr_setsign(x, x, sign < 0, GMP_RNDN); in set_mpfr_d()
85 if (exp != 0) in set_mpfr_d()
89 mpfr_set_sj_2exp(x, mantissa * sign, (int)exp - 0x3ff - 52, GMP_RNDN); in set_mpfr_d()
94 uint32 exp = (f >> 23) & 0xff; in set_mpfr_f()
97 if (exp == 0xff) { in set_mpfr_f()
[all …]
/freebsd/tools/test/iconv/ref/
H A DUTF-32BE-rev1 0x00 = 0x00000000
2 0x01 = 0x01000000
3 0x02 = 0x02000000
4 0x03 = 0x03000000
5 0x04 = 0x04000000
6 0x05 = 0x05000000
7 0x06 = 0x06000000
8 0x07 = 0x07000000
9 0x08 = 0x08000000
10 0x09 = 0x09000000
[all …]