Searched +full:0 +full:x3280 (Results 1 – 9 of 9) sorted by relevance
/llvm-project/libc/src/math/generic/ |
H A D | coshf.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 29 if (LIBC_UNLIKELY(x_u >= 0x42b4'0000U || x_u <= 0x3280'0000U)) { 31 if (x_u <= 0x3280'0000U) {
|
H A D | atanhf.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 25 if (LIBC_UNLIKELY(x_abs >= 0x3F80'0000U)) { 30 if (x_abs == 0x3F80'0000U) { 42 if (LIBC_UNLIKELY(x_abs <= 0x3dcc'0000U)) { 44 if (LIBC_UNLIKELY(x_abs <= 0x3280'0000U)) { 45 return static_cast<float>(LIBC_UNLIKELY(x_abs == 0) 47 : (x + 0x1.5555555555555p-2 * x * x * x)); 53 double pe = fputil::polyeval(x2, 0.0, 0x1.5555555555555p-2, 54 0x [all...] |
H A D | sinhf.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 24 if (LIBC_UNLIKELY(x_abs >= 0x42b4'0000U || x_abs <= 0x3da0'0000U)) { 26 if (x_abs <= 0x3da0'0000U) { 28 if (LIBC_UNLIKELY(x_abs == 0x3a12'85ffU)) { 34 if (LIBC_UNLIKELY(x_abs <= 0x3280'0000U)) { 36 LIBC_UNLIKELY(x_abs == 0) ? x : (x + 0.25 * x * x * x)); 42 // Sollya output: x * (0x1p0 + x^0x1p [all...] |
H A D | asinhf.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 28 if (LIBC_UNLIKELY(x_abs <= 0x3e80'0000U)) { 30 if (LIBC_UNLIKELY(x_abs <= 0x3280'0000U)) { 31 return static_cast<float>(LIBC_UNLIKELY(x_abs == 0) 33 : (x - 0x1.5555555555555p-3 * x * x * x)); 39 // > P = fpminimax(asinh(x)/x, [|0, 2, 4, 6, 8, 10, 12, 14, 16], [|D...|], 40 // [0, 2^-2]); 42 x_sq, 0.0, -0x1.555555555551ep-3, 0x [all...] |
H A D | expf.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 29 uint32_t x_abs = x_u & 0x7fff'ffffU; 32 if (LIBC_UNLIKELY(x_u == 0xc236'bd8cU)) { // x = -0x1.6d7b18p+5f 33 return 0x1.108a58p-66f - x * 0x1.0p-95f; 37 if (LIBC_UNLIKELY(x_abs >= 0x42b2'0000U || x_abs <= 0x3280'000 [all...] |
H A D | exp10f_impl.h | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 29 uint32_t x_abs = x_u & 0x7fff'ffffU; in exp10f() 32 if (LIBC_UNLIKELY(x_abs >= 0x421a'209bU)) { in exp10f() 34 if (x_u > 0xc234'9e35U) { in exp10f() 35 // exp(-Inf) = 0 in exp10f() 48 if (xbits.is_pos() && (x_u >= 0x421a'209bU)) { in exp10f() 50 if (x_u < 0x7f80'0000U) { in exp10f() 64 if (LIBC_UNLIKELY(x_abs <= 0x3b9a'209bU)) { in exp10f() 65 if (LIBC_UNLIKELY(x_u == 0xb25e'5bd9U)) { // x = -0x in exp10f() [all...] |
H A D | tanhf.cpp | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 29 const int sign_index = xbits.is_neg() ? 1 : 0; 32 if (LIBC_UNLIKELY((x_abs >= 0x4170'0000U) || (x_abs <= 0x3da0'0000U))) { 33 if (x_abs <= 0x3da0'0000U) { 35 if (LIBC_UNLIKELY(x_abs <= 0x3280'0000U)) { 37 return (x_abs != 0) 38 ? static_cast<float>(x - 0x1.5555555555555p-2 * x * x * x) 42 const double TAYLOR[] = {-0x [all...] |
H A D | exp2f_impl.h | 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 30 constexpr uint32_t EXVAL1 = 0x3b42'9d37U; 31 constexpr uint32_t EXVAL2 = 0xbcf3'a937U; 38 uint32_t x_abs = x_u & 0x7fff'ffffU; 41 if (LIBC_UNLIKELY(x_abs >= 0x4300'0000U || x_abs <= 0x3d00'0000U)) { 43 if (x_abs <= 0x3d00'0000) { 45 if (LIBC_UNLIKELY(x_abs <= 0x3280'0000U)) { 51 if (LIBC_UNLIKELY(x_u == EXVAL1)) { // x = 0x [all...] |
/llvm-project/llvm/test/tools/llvm-readtapi/Inputs/ |
H A D | mixed-swift-objc.yaml | 3 magic: 0xFEEDFACF 4 cputype: 0x1000007 5 cpusubtype: 0x3 6 filetype: 0x6 9 flags: 0x110085 10 reserved: 0x0 15 vmaddr: 0 17 fileoff: 0 22 flags: 0 26 addr: 0x1B30 [all …]
|