Home
last modified time | relevance | path

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

/freebsd/sys/contrib/device-tree/Bindings/mfd/
H A Dapple,smc.yaml60 reg = <0x2 0x3e400000 0x0 0x4000>,
61 <0x2 0x3fe00000 0x0 0x100000>;
/freebsd/lib/msun/src/
H A Ds_sincos.c33 ix &= 0x7fffffff; in sincos()
34 if (ix <= 0x3fe921fb) { in sincos()
35 if (ix < 0x3e400000) { /* |x| < 2**-27 */ in sincos()
36 if ((int)x == 0) { /* Generate inexact. */ in sincos()
42 __kernel_sincos(x, 0, 0, sn, cs); in sincos()
47 if (ix >= 0x7ff00000) { in sincos()
57 case 0: in sincos()
58 __kernel_sincos(y[0], y[1], 1, sn, cs); in sincos()
61 __kernel_sincos(y[0], y[1], 1, cs, sn); in sincos()
65 __kernel_sincos(y[0], y[1], 1, sn, cs); in sincos()
[all …]
H A Ds_tan.c27 * 0 S C T
59 ix &= 0x7fffffff; in tan()
60 if(ix <= 0x3fe921fb) { in tan()
61 if(ix<0x3e400000) /* x < 2**-27 */ in tan()
62 if((int)x==0) return x; /* generate inexact */ in tan()
67 else if (ix>=0x7ff00000) return x-x; /* NaN */ in tan()
72 return __kernel_tan(y[0],y[1],1-((n&1)<<1)); /* 1 -- n even in tan()
H A Dk_cos.c21 * 2. if x < 2^-27 (hx<0x3e400000 0), return 1 with inexact if x!=0.
23 * [0,pi/4]
56 one = 1.00000000000000000000e+00, /* 0x3FF00000, 0x00000000 */
57 C1 = 4.16666666666666019037e-02, /* 0x3FA55555, 0x5555554C */
58 C2 = -1.38888888888741095749e-03, /* 0xBF56C16C, 0x16C15177 */
59 C3 = 2.48015872894767294178e-05, /* 0x3EFA01A0, 0x19CB1590 */
60 C4 = -2.75573143513906633035e-07, /* 0xBE927E4F, 0x809C52AD */
61 C5 = 2.08757232129817482790e-09, /* 0x3E21EE9E, 0xBDB4B1C4 */
62 C6 = -1.13596475577881948265e-11; /* 0xBDA8FAE9, 0xBE8838D4 */
H A Ds_atan.c19 * [0,7/16] atan(x) = t-t^3*(a1+t^2*(a2+...(a10+t^2*a11)...)
38 4.63647609000806093515e-01, /* atan(0.5)hi 0x3FDDAC67, 0x0561BB4F */
39 7.85398163397448278999e-01, /* atan(1.0)hi 0x3FE921FB, 0x54442D18 */
40 9.82793723247329054082e-01, /* atan(1.5)hi 0x3FEF730B, 0xD281F69B */
41 1.57079632679489655800e+00, /* atan(inf)hi 0x3FF921FB, 0x54442D18 */
45 2.26987774529616870924e-17, /* atan(0.5)lo 0x3C7A2B7F, 0x222F65E2 */
46 3.06161699786838301793e-17, /* atan(1.0)lo 0x3C81A626, 0x33145C07 */
47 1.39033110312309984516e-17, /* atan(1.5)lo 0x3C700788, 0x7AF0CBBD */
48 6.12323399573676603587e-17, /* atan(inf)lo 0x3C91A626, 0x33145C07 */
52 3.33333333333329318027e-01, /* 0x3FD55555, 0x5555550D */
[all …]
H A De_j0.c17 * for x in (0,2)
34 * j0(0) = 1
35 * j0(inf) = 0
54 * 3. Special cases: y0(0)=-inf, y0(x<0)=NaN, y0(inf)=0.
62 static const volatile double vone = 1, vzero = 0;
67 invsqrtpi= 5.64189583547756279280e-01, /* 0x3FE20DD7, 0x50429B6D */
68 tpi = 6.36619772367581382433e-01, /* 0x3FE45F30, 0x6DC9C883 */
69 /* R0/S0 on [0, 2.00] */
70 R02 = 1.56249999999999947958e-02, /* 0x3F8FFFFF, 0xFFFFFFFD */
71 R03 = -1.89979294238854721751e-04, /* 0xBF28E6A5, 0xB61AC6E9 */
[all …]
H A De_j1.c17 * for x in (0,2)
35 * j1(0) = 0
36 * j1(inf) = 0
39 * 1. screen out x<=0 cases: y1(0)=-inf, y1(x<0)=NaN
46 * where for x in [0,2] (abs err less than 2**-65.89)
47 * U(z) = U0[0] + U0[1]*z + ... + U0[4]*z^4
48 * V(z) = 1 + v0[0]*z + ... + v0[4]*z^5
62 static const volatile double vone = 1, vzero = 0;
67 invsqrtpi= 5.64189583547756279280e-01, /* 0x3FE20DD7, 0x50429B6D */
68 tpi = 6.36619772367581382433e-01, /* 0x3FE45F30, 0x6DC9C883 */
[all …]
/freebsd/contrib/arm-optimized-routines/math/test/rtest/
H A Ddotest.c21 #if MPFR_VERSION < MPFR_VERSION_NUM(4, 2, 0)
102 uint32 exp = (hl >> 52) & 0x7ff; in set_mpfr_d()
105 if (exp == 0x7ff) { in set_mpfr_d()
106 if (mantissa == 0) in set_mpfr_d()
110 } else if (exp == 0 && mantissa == 0) { in set_mpfr_d()
111 mpfr_set_ui(x, 0, GMP_RNDN); in set_mpfr_d()
112 mpfr_setsign(x, x, sign < 0, GMP_RNDN); in set_mpfr_d()
114 if (exp != 0) in set_mpfr_d()
118 mpfr_set_sj_2exp(x, mantissa * sign, (int)exp - 0x3ff - 52, GMP_RNDN); in set_mpfr_d()
123 uint32 exp = (f >> 23) & 0xff; in set_mpfr_f()
[all …]
/freebsd/sys/contrib/device-tree/src/arm64/exynos/
H A Dexynos7870-on7xelte.dts38 reg = <0x0 0x67000000 (1080 * 1920 * 4)>;
51 pinctrl-0 = <&key_home &key_power &key_voldown &key_volup>;
61 gpios = <&gpa0 0 GPIO_ACTIVE_LOW>;
73 gpios = <&gpa2 0 GPIO_ACTIVE_LOW>;
80 reg = <0x0 0x40000000 0x3e400000>,
81 <0x0 0x80000000 0x80000000>;
95 gpio = <&gpc0 0 GPIO_ACTIVE_HIGH>;
106 reg = <0x0 0x46e00000 0x8000>;
107 console-size = <0x4000>;
108 pmsg-size = <0x4000>;
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonDepMask.h3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
17 0xf0000000,
18 0xb0000000,
19 0x0fe03fe0,
20 0 },
23 0xffc00000,
24 0x76000000,
25 0x00203fe0,
26 0 },
29 0xff800000,
[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 …]