| /src/lib/libm/src/ |
| e_coshf.c | 25 static const float one = 1.0, half=0.5; variable 50 return half*t+half/t; 53 /* |x| in [22, log(maxdouble)] return half*exp(|x|) */ 54 if (ix < 0x42b17180) return half*__ieee754_expf(fabsf(x)); 58 w = __ieee754_expf(half*fabsf(x)); 59 t = half*w;
|
| e_cosh.c | 42 static const double one = 1.0, half=0.5, huge = 1.0e300; variable 69 return half*t+half/t; 72 /* |x| in [22, log(maxdouble)] return half*exp(|x|) */ 73 if (ix < 0x40862E42) return half*__ieee754_exp(fabs(x)); 79 w = __ieee754_exp(half*fabs(x)); 80 t = half*w;
|
| k_sin.c | 50 half = 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable 71 else return x-((z*(half*y-v*r)-y)-v*S1);
|
| k_sinf.c | 25 half = 5.0000000000e-01,/* 0x3f000000 */ variable 46 else return x-((z*(half*y-v*r)-y)-v*S1);
|
| e_rem_pio2.c | 48 half = 5.00000000000000000000e-01, /* 0x3FE00000, 0x00000000 */ variable 98 n = (int32_t) (t*invpio2+half);
|
| e_rem_pio2f.c | 81 half = 5.0000000000e-01, /* 0x3f000000 */ variable 129 n = (int32_t) (t*invpio2+half);
|
| /src/external/gpl3/gcc.old/dist/gcc/d/dmd/root/ |
| ctfloat.h | 62 static real_t half; member in struct:CTFloat
|
| /src/external/gpl3/gcc/dist/libquadmath/math/ |
| coshq.c | 56 static const __float128 one = 1.0, half = 0.5, huge = 1.0e4900Q, variable 91 return half * t + half / t; 94 /* |x| in [22, ln(maxdouble)] return half*exp(|x|) */ 96 return half * expq (u.value); 101 w = expq (half * u.value); 102 t = half * w;
|
| /src/external/gpl3/gcc.old/dist/libquadmath/math/ |
| coshq.c | 56 static const __float128 one = 1.0, half = 0.5, huge = 1.0e4900Q, variable 91 return half * t + half / t; 94 /* |x| in [22, ln(maxdouble)] return half*exp(|x|) */ 96 return half * expq (u.value); 101 w = expq (half * u.value); 102 t = half * w;
|
| /src/lib/libm/ld80/ |
| k_sinl.c | 22 half = 0.5; variable 59 else return x-((z*(half*y-v*r)-y)-v*S1);
|
| /src/lib/libm/noieee_src/ |
| n_cosh.c | 66 * Note: .3465 is a number near one half of ln2. 117 static const double half=1.0/2.0, local 130 { t=exp(x); return((t+one/t)*half); } 140 return(exp(x)*half); /* for large x, cosh(x)=exp(x)/2 */
|
| n_expm1.c | 123 static const double one=1.0, half=1.0/2.0; local 143 {x=z+half;x +=__exp__E(z,c); return(x+x);} 145 {z+=__exp__E(z,c); x=half+z; return(x+x);}
|
| n_log1p.c | 127 half=1.0/2.0, small=1.0E-20; /* 1+small == 1 */ local 142 { k += 1 ; z *= half; t *= half; } 147 s = x/(2+x); t = x*x*half;
|
| n_sinh.c | 111 static const double one=1.0, half=1.0/2.0 ; local 119 {t=expm1(x); return(copysign((t+t/(one+t))*half,sign));}
|
| n_exp__E.c | 113 static const double zero=0.0, one=1.0, half=1.0/2.0, small=1.0E-19; local 124 xh= x*half ; 128 return(z*half+c);
|
| /src/sys/arch/x68k/stand/aout2hux/ |
| type_local.h | 33 be_uint16_t half[2]; member in union:be_uint32
|
| /src/external/mit/libcbor/dist/src/cbor/internal/ |
| loaders.c | 54 int half = (halfp[0] << 8) + halfp[1]; local 55 int exp = (half >> 10) & 0x1f; 56 int mant = half & 0x3ff; 64 return (float)(half & 0x8000 ? -val : val);
|
| /src/lib/libm/ld128/ |
| k_sinl.c | 22 half = 0.5; variable 56 else return x-((z*(half*y-v*r)-y)-v*S1);
|
| /src/tests/lib/libc/gen/ |
| t_closefrom.c | 84 int buf[16], cur, half; local 88 * Open a buffer of descriptors, close the half of 104 half = STDERR_FILENO + __arraycount(buf) / 2; 105 ATF_REQUIRE(closefrom(half) == 0); 108 ATF_REQUIRE(cur == half - 1);
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| poly1305_internal_test.c | 1135 size_t half = inlen / 2; local 1138 Poly1305_Update(&poly1305, in, half); 1139 Poly1305_Update(&poly1305, in + half, inlen - half); 1147 for (half = 16; half < inlen; half += 16) { 1149 Poly1305_Update(&poly1305, in, half); 1150 Poly1305_Update(&poly1305, in + half, inlen - half); [all...] |
| siphash_internal_test.c | 1887 size_t half = inlen / 2; local 1892 SipHash_Update(&siphash, in, half); 1893 SipHash_Update(&siphash, in + half, inlen - half); 1902 for (half = 16; half < inlen; half += 16) { 1906 SipHash_Update(&siphash, in, half); 1907 SipHash_Update(&siphash, in + half, inlen - half); [all...] |
| /src/crypto/external/bsd/openssl/dist/test/ |
| poly1305_internal_test.c | 1542 size_t half = inlen / 2; local 1545 Poly1305_Update(&poly1305, in, half); 1546 Poly1305_Update(&poly1305, in+half, inlen-half); 1554 for (half = 16; half < inlen; half += 16) { 1556 Poly1305_Update(&poly1305, in, half); 1557 Poly1305_Update(&poly1305, in+half, inlen-half); [all...] |
| siphash_internal_test.c | 222 size_t half = inlen / 2; local 227 SipHash_Update(&siphash, in, half); 228 SipHash_Update(&siphash, in+half, inlen-half); 237 for (half = 16; half < inlen; half += 16) { 241 SipHash_Update(&siphash, in, half); 242 SipHash_Update(&siphash, in+half, inlen-half); [all...] |
| /src/crypto/external/bsd/openssl.old/dist/test/ |
| poly1305_internal_test.c | 1543 size_t half = inlen / 2; local 1546 Poly1305_Update(&poly1305, in, half); 1547 Poly1305_Update(&poly1305, in+half, inlen-half); 1555 for (half = 16; half < inlen; half += 16) { 1557 Poly1305_Update(&poly1305, in, half); 1558 Poly1305_Update(&poly1305, in+half, inlen-half); [all...] |
| siphash_internal_test.c | 223 size_t half = inlen / 2; local 228 SipHash_Update(&siphash, in, half); 229 SipHash_Update(&siphash, in+half, inlen-half); 238 for (half = 16; half < inlen; half += 16) { 242 SipHash_Update(&siphash, in, half); 243 SipHash_Update(&siphash, in+half, inlen-half); [all...] |