File size: 181,238 Bytes
9c6594c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 |
// Copyright Naoki Shibata and contributors 2010 - 2024.
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
#ifndef __SLEEF_H__
#define __SLEEF_H__
#define SLEEF_VERSION_MAJOR 3
#define SLEEF_VERSION_MINOR 7
#define SLEEF_VERSION_PATCHLEVEL 0
#include <stddef.h>
#include <stdint.h>
#if defined (__GNUC__) || defined (__clang__) || defined(__INTEL_COMPILER)
#define SLEEF_CONST __attribute__((const))
#define SLEEF_INLINE __attribute__((always_inline))
#elif defined(_MSC_VER)
#define SLEEF_CONST
#define SLEEF_INLINE __forceinline
#endif
#if defined(__AVX2__) || defined(__aarch64__) || defined(__arm__) || defined(__powerpc64__) || defined(__zarch__)
#ifndef FP_FAST_FMA
#define FP_FAST_FMA
#endif
#ifndef FP_FAST_FMAF
#define FP_FAST_FMAF
#endif
#endif
#if defined(_MSC_VER) && !defined(__STDC__)
#define __STDC__ 1
#endif
#if (defined(__MINGW32__) || defined(__MINGW64__) || defined(__CYGWIN__) || defined(_MSC_VER)) && !defined(SLEEF_STATIC_LIBS)
#ifdef SLEEF_IMPORT_IS_EXPORT
#define SLEEF_IMPORT __declspec(dllexport)
#else // #ifdef SLEEF_IMPORT_IS_EXPORT
#define SLEEF_IMPORT __declspec(dllimport)
#if (defined(_MSC_VER))
#pragma comment(lib,"sleef.lib")
#endif // #if (defined(_MSC_VER))
#endif // #ifdef SLEEF_IMPORT_IS_EXPORT
#else // #if (defined(__MINGW32__) || defined(__MINGW64__) || defined(__CYGWIN__) || defined(_MSC_VER)) && !defined(SLEEF_STATIC_LIBS)
#define SLEEF_IMPORT
#endif // #if (defined(__MINGW32__) || defined(__MINGW64__) || defined(__CYGWIN__) || defined(_MSC_VER)) && !defined(SLEEF_STATIC_LIBS)
#if (defined(__GNUC__) || defined(__CLANG__)) && (defined(__i386__) || defined(__x86_64__))
#include <x86intrin.h>
#endif
#if (defined(_MSC_VER))
#include <intrin.h>
#endif
#if defined(__ARM_NEON__) || defined(__ARM_NEON)
#include <arm_neon.h>
#endif
#if defined(__ARM_FEATURE_SVE)
#include <arm_sve.h>
#endif
#if defined(__VSX__) && defined(__PPC64__) && defined(__LITTLE_ENDIAN__)
#include <altivec.h>
typedef __vector double SLEEF_VECTOR_DOUBLE;
typedef __vector float SLEEF_VECTOR_FLOAT;
typedef __vector int SLEEF_VECTOR_INT;
typedef __vector unsigned int SLEEF_VECTOR_UINT;
typedef __vector long long SLEEF_VECTOR_LONGLONG;
typedef __vector unsigned long long SLEEF_VECTOR_ULONGLONG;
#endif
#if defined(__VX__) && defined(__VEC__)
#ifndef SLEEF_VECINTRIN_H_INCLUDED
#include <vecintrin.h>
#define SLEEF_VECINTRIN_H_INCLUDED
#endif
typedef __vector double SLEEF_VECTOR_DOUBLE;
typedef __vector float SLEEF_VECTOR_FLOAT;
typedef __vector int SLEEF_VECTOR_INT;
typedef __vector unsigned int SLEEF_VECTOR_UINT;
typedef __vector long long SLEEF_VECTOR_LONGLONG;
typedef __vector unsigned long long SLEEF_VECTOR_ULONGLONG;
#endif
//
#if defined(SLEEF_ENABLE_OMP_SIMD) && (defined(__GNUC__) || defined(__CLANG__)) && !defined(__INTEL_COMPILER)
#if defined(__aarch64__)
//#define SLEEF_PRAGMA_OMP_SIMD_DP _Pragma ("omp declare simd simdlen(2) notinbranch")
//#define SLEEF_PRAGMA_OMP_SIMD_SP _Pragma ("omp declare simd simdlen(4) notinbranch")
//#elif defined(__x86_64__) && defined(__AVX512F__)
//#define SLEEF_PRAGMA_OMP_SIMD_DP _Pragma ("omp declare simd simdlen(8) notinbranch")
//#define SLEEF_PRAGMA_OMP_SIMD_SP _Pragma ("omp declare simd simdlen(16) notinbranch")
#elif defined(__x86_64__) && defined(__AVX__)
#define SLEEF_PRAGMA_OMP_SIMD_DP _Pragma ("omp declare simd simdlen(4) notinbranch")
#define SLEEF_PRAGMA_OMP_SIMD_SP _Pragma ("omp declare simd simdlen(8) notinbranch")
#elif defined(__x86_64__) && defined(__SSE2__)
#define SLEEF_PRAGMA_OMP_SIMD_DP _Pragma ("omp declare simd simdlen(2) notinbranch")
#define SLEEF_PRAGMA_OMP_SIMD_SP _Pragma ("omp declare simd simdlen(4) notinbranch")
#endif
#endif
#ifndef SLEEF_PRAGMA_OMP_SIMD_DP
#define SLEEF_PRAGMA_OMP_SIMD_DP
#define SLEEF_PRAGMA_OMP_SIMD_SP
#endif
//
#ifndef SLEEF_FP_ILOGB0
#define SLEEF_FP_ILOGB0 ((int)0x80000000)
#endif
#ifndef SLEEF_FP_ILOGBNAN
#define SLEEF_FP_ILOGBNAN ((int)2147483647)
#endif
//
SLEEF_IMPORT void *Sleef_malloc(size_t z);
SLEEF_IMPORT void Sleef_free(void *ptr);
SLEEF_IMPORT uint64_t Sleef_currentTimeMicros();
#if defined(__i386__) || defined(__x86_64__) || defined(_MSC_VER)
SLEEF_IMPORT void Sleef_x86CpuID(int32_t out[4], uint32_t eax, uint32_t ecx);
#endif
//
#if defined(__riscv_v)
#include <riscv_vector.h>
typedef vfloat64m2_t Sleef_vfloat64m1_t_2;
typedef vfloat32m2_t Sleef_vfloat32m1_t_2;
typedef vfloat64m4_t Sleef_vfloat64m2_t_2;
typedef vfloat32m4_t Sleef_vfloat32m2_t_2;
#define Sleef_vfloat64m1_t_2_DEFINED
#define Sleef_vfloat32m1_t_2_DEFINED
#define Sleef_vfloat64m2_t_2_DEFINED
#define Sleef_vfloat32m2_t_2_DEFINED
#endif
#ifndef Sleef_double2_DEFINED
#define Sleef_double2_DEFINED
typedef struct {
double x, y;
} Sleef_double2;
#endif
#ifndef Sleef_float2_DEFINED
#define Sleef_float2_DEFINED
typedef struct {
float x, y;
} Sleef_float2;
#endif
#ifndef Sleef_longdouble2_DEFINED
#define Sleef_longdouble2_DEFINED
typedef struct {
long double x, y;
} Sleef_longdouble2;
#endif
#if (defined(__SIZEOF_FLOAT128__) && __SIZEOF_FLOAT128__ == 16) || (defined(__linux__) && defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__))) || (defined(__PPC64__) && defined(__GNUC__) && !defined(__clang__) && __GNUC__ >= 8)
#define SLEEF_FLOAT128_IS_IEEEQP
#endif
#if !defined(SLEEF_FLOAT128_IS_IEEEQP) && defined(__SIZEOF_LONG_DOUBLE__) && __SIZEOF_LONG_DOUBLE__ == 16 && (defined(__aarch64__) || defined(__zarch__))
#define SLEEF_LONGDOUBLE_IS_IEEEQP
#endif
#if !defined(Sleef_quad_DEFINED)
#define Sleef_quad_DEFINED
typedef struct { uint64_t x, y; } Sleef_uint64_2t;
#if defined(SLEEF_FLOAT128_IS_IEEEQP) || defined(ENABLEFLOAT128)
typedef __float128 Sleef_quad;
#define SLEEF_QUAD_C(x) (x ## Q)
#elif defined(SLEEF_LONGDOUBLE_IS_IEEEQP)
typedef long double Sleef_quad;
#define SLEEF_QUAD_C(x) (x ## L)
#else
typedef Sleef_uint64_2t Sleef_quad;
#endif
#endif
#if !defined(Sleef_quad2_DEFINED)
#define Sleef_quad2_DEFINED
typedef union {
struct {
Sleef_quad x, y;
};
Sleef_quad s[2];
} Sleef_quad2;
#endif
#ifdef __cplusplus
extern "C"
{
#endif
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sin_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_cos_u35(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double2 Sleef_sincos_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_tan_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_asin_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_acos_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_atan_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_atan2_u35(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_log_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_cbrt_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sin_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_cos_u10(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double2 Sleef_sincos_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_tan_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_asin_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_acos_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_atan_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_atan2_u10(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_log_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_cbrt_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_exp_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_pow_u10(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sinh_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_cosh_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_tanh_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sinh_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_cosh_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_tanh_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_asinh_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_acosh_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_atanh_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_exp2_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_exp10_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_exp2_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_exp10_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_expm1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_log10_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_log2_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_log2_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_log1p_u10(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double2 Sleef_sincospi_u05(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double2 Sleef_sincospi_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sinpi_u05(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_cospi_u05(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_ldexp(double, int);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST int Sleef_ilogb(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_fma(double, double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sqrt(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sqrt_u05(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sqrt_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_hypot_u05(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_hypot_u35(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_fabs(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_copysign(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_fmax(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_fmin(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_fdim(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_trunc(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_floor(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_ceil(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_round(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_rint(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_nextafter(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_frfrexp(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST int Sleef_expfrexp(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_fmod(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_remainder(double, double);
SLEEF_IMPORT SLEEF_CONST Sleef_double2 Sleef_modf(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_lgamma_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_tgamma_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_erf_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_erfc_u15(double);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sinf_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_cosf_u35(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float2 Sleef_sincosf_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_tanf_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_asinf_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_acosf_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_atanf_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_atan2f_u35(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_logf_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_cbrtf_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sinf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_cosf_u10(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float2 Sleef_sincosf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fastsinf_u3500(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fastcosf_u3500(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_tanf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_asinf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_acosf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_atanf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_atan2f_u10(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_logf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_cbrtf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_expf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_powf_u10(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fastpowf_u3500(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sinhf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_coshf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_tanhf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sinhf_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_coshf_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_tanhf_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_asinhf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_acoshf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_atanhf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_exp2f_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_exp10f_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_exp2f_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_exp10f_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_expm1f_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_log10f_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_log2f_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_log2f_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_log1pf_u10(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float2 Sleef_sincospif_u05(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float2 Sleef_sincospif_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sinpif_u05(float d);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_cospif_u05(float d);
SLEEF_IMPORT SLEEF_CONST float Sleef_ldexpf(float, int);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST int Sleef_ilogbf(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fmaf(float, float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sqrtf(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sqrtf_u05(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sqrtf_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_hypotf_u05(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_hypotf_u35(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fabsf(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_copysignf(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fmaxf(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fminf(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fdimf(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_truncf(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_floorf(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_ceilf(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_roundf(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_rintf(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_nextafterf(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_frfrexpf(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST int Sleef_expfrexpf(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fmodf(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_remainderf(float, float);
SLEEF_IMPORT SLEEF_CONST Sleef_float2 Sleef_modff(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_lgammaf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_tgammaf_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_erff_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_erfcf_u15(float);
SLEEF_IMPORT SLEEF_CONST Sleef_longdouble2 Sleef_sincospil_u05(long double);
SLEEF_IMPORT SLEEF_CONST Sleef_longdouble2 Sleef_sincospil_u35(long double);
#if defined(Sleef_quad2_DEFINED)
SLEEF_IMPORT SLEEF_CONST Sleef_quad2 Sleef_sincospiq_u05(Sleef_quad);
SLEEF_IMPORT SLEEF_CONST Sleef_quad2 Sleef_sincospiq_u35(Sleef_quad);
#endif
#ifdef __ARM_NEON
#ifndef Sleef_float64x2_t_2_DEFINED
typedef struct {
float64x2_t x, y;
} Sleef_float64x2_t_2;
#define Sleef_float64x2_t_2_DEFINED
#endif
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sind2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cosd2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_sincosd2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_tand2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_asind2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_acosd2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_atand2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_atan2d2_u35(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_logd2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cbrtd2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sind2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cosd2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_sincosd2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_tand2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_asind2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_acosd2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_atand2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_atan2d2_u10(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_logd2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cbrtd2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_expd2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_powd2_u10(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sinhd2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_coshd2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_tanhd2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sinhd2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_coshd2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_tanhd2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fastsind2_u3500(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fastcosd2_u3500(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fastpowd2_u3500(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_asinhd2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_acoshd2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_atanhd2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_exp2d2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_exp2d2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_exp10d2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_exp10d2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_expm1d2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_log10d2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_log2d2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_log2d2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_log1pd2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_sincospid2_u05(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_sincospid2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sinpid2_u05(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cospid2_u05(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_ldexpd2(float64x2_t, int32x2_t);
SLEEF_IMPORT SLEEF_CONST int32x2_t Sleef_ilogbd2(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fmad2(float64x2_t, float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sqrtd2(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sqrtd2_u05(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sqrtd2_u35(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_hypotd2_u05(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_hypotd2_u35(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fabsd2(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_copysignd2(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fmaxd2(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fmind2(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fdimd2(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_truncd2(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_floord2(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_ceild2(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_roundd2(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_rintd2(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_nextafterd2(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_frfrexpd2(float64x2_t);
SLEEF_IMPORT SLEEF_CONST int32x2_t Sleef_expfrexpd2(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fmodd2(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_remainderd2(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_modfd2(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_lgammad2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_tgammad2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_erfd2_u10(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_erfcd2_u15(float64x2_t);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntd2(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrd2(int);
#ifndef Sleef_float32x4_t_2_DEFINED
typedef struct {
float32x4_t x, y;
} Sleef_float32x4_t_2;
#define Sleef_float32x4_t_2_DEFINED
#endif
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sinf4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cosf4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_sincosf4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_tanf4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_asinf4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_acosf4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_atanf4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_atan2f4_u35(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_logf4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cbrtf4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sinf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cosf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_sincosf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_tanf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_asinf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_acosf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_atanf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_atan2f4_u10(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_logf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cbrtf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_expf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_powf4_u10(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sinhf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_coshf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_tanhf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sinhf4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_coshf4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_tanhf4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fastsinf4_u3500(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fastcosf4_u3500(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fastpowf4_u3500(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_asinhf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_acoshf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_atanhf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_exp2f4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_exp2f4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_exp10f4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_exp10f4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_expm1f4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_log10f4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_log2f4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_log2f4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_log1pf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_sincospif4_u05(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_sincospif4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sinpif4_u05(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cospif4_u05(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fmaf4(float32x4_t, float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sqrtf4(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sqrtf4_u05(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sqrtf4_u35(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_hypotf4_u05(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_hypotf4_u35(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fabsf4(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_copysignf4(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fmaxf4(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fminf4(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fdimf4(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_truncf4(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_floorf4(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_ceilf4(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_roundf4(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_rintf4(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_nextafterf4(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_frfrexpf4(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fmodf4(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_remainderf4(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_modff4(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_lgammaf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_tgammaf4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_erff4_u10(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_erfcf4_u15(float32x4_t);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntf4(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrf4(int);
#endif
#ifdef __ARM_NEON
#ifndef Sleef_float64x2_t_2_DEFINED
typedef struct {
float64x2_t x, y;
} Sleef_float64x2_t_2;
#define Sleef_float64x2_t_2_DEFINED
#endif
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sind2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_sind2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cosd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_cosd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_sincosd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_finz_sincosd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_tand2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_tand2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_asind2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_asind2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_acosd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_acosd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_atand2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_atand2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_atan2d2_u35advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_atan2d2_u35advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_logd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_logd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cbrtd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_cbrtd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sind2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_sind2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cosd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_cosd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_sincosd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_finz_sincosd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_tand2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_tand2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_asind2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_asind2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_acosd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_acosd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_atand2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_atand2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_atan2d2_u10advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_atan2d2_u10advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_logd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_logd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cbrtd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_cbrtd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_expd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_expd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_powd2_u10advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_powd2_u10advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sinhd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_sinhd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_coshd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_coshd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_tanhd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_tanhd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sinhd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_sinhd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_coshd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_coshd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_tanhd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_tanhd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fastsind2_u3500advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_fastsind2_u3500advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fastcosd2_u3500advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_fastcosd2_u3500advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fastpowd2_u3500advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_fastpowd2_u3500advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_asinhd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_asinhd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_acoshd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_acoshd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_atanhd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_atanhd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_exp2d2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_exp2d2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_exp2d2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_exp2d2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_exp10d2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_exp10d2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_exp10d2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_exp10d2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_expm1d2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_expm1d2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_log10d2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_log10d2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_log2d2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_log2d2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_log2d2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_log2d2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_log1pd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_log1pd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_sincospid2_u05advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_finz_sincospid2_u05advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_sincospid2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_finz_sincospid2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sinpid2_u05advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_sinpid2_u05advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cospid2_u05advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_cospid2_u05advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_ldexpd2_advsimd(float64x2_t, int32x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_ldexpd2_advsimd(float64x2_t, int32x2_t);
SLEEF_IMPORT SLEEF_CONST int32x2_t Sleef_ilogbd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST int32x2_t Sleef_finz_ilogbd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fmad2_advsimd(float64x2_t, float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_fmad2_advsimd(float64x2_t, float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sqrtd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_sqrtd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sqrtd2_u05advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_sqrtd2_u05advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sqrtd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_sqrtd2_u35advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_hypotd2_u05advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_hypotd2_u05advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_hypotd2_u35advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_hypotd2_u35advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fabsd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_fabsd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_copysignd2_advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_copysignd2_advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fmaxd2_advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_fmaxd2_advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fmind2_advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_fmind2_advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fdimd2_advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_fdimd2_advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_truncd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_truncd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_floord2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_floord2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_ceild2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_ceild2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_roundd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_roundd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_rintd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_rintd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_nextafterd2_advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_nextafterd2_advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_frfrexpd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_frfrexpd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST int32x2_t Sleef_expfrexpd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST int32x2_t Sleef_finz_expfrexpd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fmodd2_advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_fmodd2_advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_remainderd2_advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_remainderd2_advsimd(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_modfd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_finz_modfd2_advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_lgammad2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_lgammad2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_tgammad2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_tgammad2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_erfd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_erfd2_u10advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_erfcd2_u15advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_finz_erfcd2_u15advsimd(float64x2_t);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntd2_advsimd(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrd2_advsimd(int);
#ifndef Sleef_float32x4_t_2_DEFINED
typedef struct {
float32x4_t x, y;
} Sleef_float32x4_t_2;
#define Sleef_float32x4_t_2_DEFINED
#endif
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sinf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_sinf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cosf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_cosf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_sincosf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_finz_sincosf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_tanf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_tanf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_asinf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_asinf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_acosf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_acosf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_atanf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_atanf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_atan2f4_u35advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_atan2f4_u35advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_logf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_logf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cbrtf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_cbrtf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sinf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_sinf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cosf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_cosf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_sincosf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_finz_sincosf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_tanf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_tanf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_asinf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_asinf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_acosf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_acosf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_atanf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_atanf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_atan2f4_u10advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_atan2f4_u10advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_logf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_logf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cbrtf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_cbrtf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_expf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_expf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_powf4_u10advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_powf4_u10advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sinhf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_sinhf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_coshf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_coshf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_tanhf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_tanhf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sinhf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_sinhf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_coshf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_coshf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_tanhf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_tanhf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fastsinf4_u3500advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_fastsinf4_u3500advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fastcosf4_u3500advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_fastcosf4_u3500advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fastpowf4_u3500advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_fastpowf4_u3500advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_asinhf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_asinhf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_acoshf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_acoshf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_atanhf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_atanhf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_exp2f4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_exp2f4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_exp2f4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_exp2f4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_exp10f4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_exp10f4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_exp10f4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_exp10f4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_expm1f4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_expm1f4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_log10f4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_log10f4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_log2f4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_log2f4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_log2f4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_log2f4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_log1pf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_log1pf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_sincospif4_u05advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_finz_sincospif4_u05advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_sincospif4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_finz_sincospif4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sinpif4_u05advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_sinpif4_u05advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cospif4_u05advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_cospif4_u05advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fmaf4_advsimd(float32x4_t, float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_fmaf4_advsimd(float32x4_t, float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sqrtf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_sqrtf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sqrtf4_u05advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_sqrtf4_u05advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sqrtf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_sqrtf4_u35advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_hypotf4_u05advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_hypotf4_u05advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_hypotf4_u35advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_hypotf4_u35advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fabsf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_fabsf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_copysignf4_advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_copysignf4_advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fmaxf4_advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_fmaxf4_advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fminf4_advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_fminf4_advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fdimf4_advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_fdimf4_advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_truncf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_truncf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_floorf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_floorf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_ceilf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_ceilf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_roundf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_roundf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_rintf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_rintf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_nextafterf4_advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_nextafterf4_advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_frfrexpf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_frfrexpf4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fmodf4_advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_fmodf4_advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_remainderf4_advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_remainderf4_advsimd(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_modff4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_finz_modff4_advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_lgammaf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_lgammaf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_tgammaf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_tgammaf4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_erff4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_erff4_u10advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_erfcf4_u15advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_finz_erfcf4_u15advsimd(float32x4_t);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntf4_advsimd(int);
SLEEF_IMPORT SLEEF_CONST int Sleef_finz_getIntf4_advsimd(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrf4_advsimd(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_finz_getPtrf4_advsimd(int);
#endif
#ifdef __ARM_NEON
#ifndef Sleef_float64x2_t_2_DEFINED
typedef struct {
float64x2_t x, y;
} Sleef_float64x2_t_2;
#define Sleef_float64x2_t_2_DEFINED
#endif
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sind2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_sind2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cosd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_cosd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_sincosd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_cinz_sincosd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_tand2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_tand2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_asind2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_asind2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_acosd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_acosd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_atand2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_atand2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_atan2d2_u35advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_atan2d2_u35advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_logd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_logd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cbrtd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_cbrtd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sind2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_sind2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cosd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_cosd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_sincosd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_cinz_sincosd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_tand2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_tand2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_asind2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_asind2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_acosd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_acosd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_atand2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_atand2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_atan2d2_u10advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_atan2d2_u10advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_logd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_logd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cbrtd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_cbrtd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_expd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_expd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_powd2_u10advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_powd2_u10advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sinhd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_sinhd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_coshd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_coshd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_tanhd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_tanhd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sinhd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_sinhd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_coshd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_coshd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_tanhd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_tanhd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fastsind2_u3500advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_fastsind2_u3500advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fastcosd2_u3500advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_fastcosd2_u3500advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fastpowd2_u3500advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_fastpowd2_u3500advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_asinhd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_asinhd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_acoshd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_acoshd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_atanhd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_atanhd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_exp2d2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_exp2d2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_exp2d2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_exp2d2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_exp10d2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_exp10d2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_exp10d2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_exp10d2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_expm1d2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_expm1d2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_log10d2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_log10d2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_log2d2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_log2d2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_log2d2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_log2d2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_log1pd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_log1pd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_sincospid2_u05advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_cinz_sincospid2_u05advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_sincospid2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_cinz_sincospid2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sinpid2_u05advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_sinpid2_u05advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cospid2_u05advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_cospid2_u05advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_ldexpd2_advsimdnofma(float64x2_t, int32x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_ldexpd2_advsimdnofma(float64x2_t, int32x2_t);
SLEEF_IMPORT SLEEF_CONST int32x2_t Sleef_ilogbd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST int32x2_t Sleef_cinz_ilogbd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fmad2_advsimdnofma(float64x2_t, float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_fmad2_advsimdnofma(float64x2_t, float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sqrtd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_sqrtd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sqrtd2_u05advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_sqrtd2_u05advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_sqrtd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_sqrtd2_u35advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_hypotd2_u05advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_hypotd2_u05advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_hypotd2_u35advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_hypotd2_u35advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fabsd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_fabsd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_copysignd2_advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_copysignd2_advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fmaxd2_advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_fmaxd2_advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fmind2_advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_fmind2_advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fdimd2_advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_fdimd2_advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_truncd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_truncd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_floord2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_floord2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_ceild2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_ceild2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_roundd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_roundd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_rintd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_rintd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_nextafterd2_advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_nextafterd2_advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_frfrexpd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_frfrexpd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST int32x2_t Sleef_expfrexpd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST int32x2_t Sleef_cinz_expfrexpd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_fmodd2_advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_fmodd2_advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_remainderd2_advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_remainderd2_advsimdnofma(float64x2_t, float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_modfd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float64x2_t_2 Sleef_cinz_modfd2_advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_lgammad2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_lgammad2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_tgammad2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_tgammad2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_erfd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_erfd2_u10advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_erfcd2_u15advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST float64x2_t Sleef_cinz_erfcd2_u15advsimdnofma(float64x2_t);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntd2_advsimdnofma(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrd2_advsimdnofma(int);
#ifndef Sleef_float32x4_t_2_DEFINED
typedef struct {
float32x4_t x, y;
} Sleef_float32x4_t_2;
#define Sleef_float32x4_t_2_DEFINED
#endif
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sinf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_sinf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cosf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_cosf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_sincosf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_cinz_sincosf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_tanf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_tanf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_asinf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_asinf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_acosf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_acosf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_atanf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_atanf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_atan2f4_u35advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_atan2f4_u35advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_logf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_logf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cbrtf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_cbrtf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sinf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_sinf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cosf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_cosf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_sincosf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_cinz_sincosf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_tanf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_tanf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_asinf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_asinf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_acosf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_acosf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_atanf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_atanf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_atan2f4_u10advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_atan2f4_u10advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_logf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_logf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cbrtf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_cbrtf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_expf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_expf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_powf4_u10advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_powf4_u10advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sinhf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_sinhf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_coshf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_coshf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_tanhf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_tanhf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sinhf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_sinhf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_coshf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_coshf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_tanhf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_tanhf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fastsinf4_u3500advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_fastsinf4_u3500advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fastcosf4_u3500advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_fastcosf4_u3500advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fastpowf4_u3500advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_fastpowf4_u3500advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_asinhf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_asinhf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_acoshf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_acoshf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_atanhf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_atanhf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_exp2f4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_exp2f4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_exp2f4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_exp2f4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_exp10f4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_exp10f4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_exp10f4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_exp10f4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_expm1f4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_expm1f4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_log10f4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_log10f4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_log2f4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_log2f4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_log2f4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_log2f4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_log1pf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_log1pf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_sincospif4_u05advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_cinz_sincospif4_u05advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_sincospif4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_cinz_sincospif4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sinpif4_u05advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_sinpif4_u05advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cospif4_u05advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_cospif4_u05advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fmaf4_advsimdnofma(float32x4_t, float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_fmaf4_advsimdnofma(float32x4_t, float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sqrtf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_sqrtf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sqrtf4_u05advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_sqrtf4_u05advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_sqrtf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_sqrtf4_u35advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_hypotf4_u05advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_hypotf4_u05advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_hypotf4_u35advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_hypotf4_u35advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fabsf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_fabsf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_copysignf4_advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_copysignf4_advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fmaxf4_advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_fmaxf4_advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fminf4_advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_fminf4_advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fdimf4_advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_fdimf4_advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_truncf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_truncf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_floorf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_floorf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_ceilf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_ceilf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_roundf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_roundf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_rintf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_rintf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_nextafterf4_advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_nextafterf4_advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_frfrexpf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_frfrexpf4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_fmodf4_advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_fmodf4_advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_remainderf4_advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_remainderf4_advsimdnofma(float32x4_t, float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_modff4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST Sleef_float32x4_t_2 Sleef_cinz_modff4_advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_lgammaf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_lgammaf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_tgammaf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_tgammaf4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_erff4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_erff4_u10advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_erfcf4_u15advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST float32x4_t Sleef_cinz_erfcf4_u15advsimdnofma(float32x4_t);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntf4_advsimdnofma(int);
SLEEF_IMPORT SLEEF_CONST int Sleef_cinz_getIntf4_advsimdnofma(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrf4_advsimdnofma(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_cinz_getPtrf4_advsimdnofma(int);
#endif
#ifdef __ARM_FEATURE_SVE
#ifndef Sleef_svfloat64_t_2_DEFINED
typedef svfloat64x2_t Sleef_svfloat64_t_2;
#define Sleef_svfloat64_t_2_DEFINED
#endif
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sindx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_sindx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cosdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_cosdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_sincosdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_finz_sincosdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_tandx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_tandx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_asindx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_asindx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_acosdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_acosdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_atandx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_atandx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_atan2dx_u35sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_atan2dx_u35sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_logdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_logdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cbrtdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_cbrtdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sindx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_sindx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cosdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_cosdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_sincosdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_finz_sincosdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_tandx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_tandx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_asindx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_asindx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_acosdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_acosdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_atandx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_atandx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_atan2dx_u10sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_atan2dx_u10sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_logdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_logdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cbrtdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_cbrtdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_expdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_expdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_powdx_u10sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_powdx_u10sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sinhdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_sinhdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_coshdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_coshdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_tanhdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_tanhdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sinhdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_sinhdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_coshdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_coshdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_tanhdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_tanhdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fastsindx_u3500sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_fastsindx_u3500sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fastcosdx_u3500sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_fastcosdx_u3500sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fastpowdx_u3500sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_fastpowdx_u3500sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_asinhdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_asinhdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_acoshdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_acoshdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_atanhdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_atanhdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_exp2dx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_exp2dx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_exp2dx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_exp2dx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_exp10dx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_exp10dx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_exp10dx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_exp10dx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_expm1dx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_expm1dx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_log10dx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_log10dx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_log2dx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_log2dx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_log2dx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_log2dx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_log1pdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_log1pdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_sincospidx_u05sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_finz_sincospidx_u05sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_sincospidx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_finz_sincospidx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sinpidx_u05sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_sinpidx_u05sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cospidx_u05sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_cospidx_u05sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_ldexpdx_sve(svfloat64_t, svint32_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_ldexpdx_sve(svfloat64_t, svint32_t);
SLEEF_IMPORT SLEEF_CONST svint32_t Sleef_ilogbdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svint32_t Sleef_finz_ilogbdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fmadx_sve(svfloat64_t, svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_fmadx_sve(svfloat64_t, svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sqrtdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_sqrtdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sqrtdx_u05sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_sqrtdx_u05sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sqrtdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_sqrtdx_u35sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_hypotdx_u05sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_hypotdx_u05sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_hypotdx_u35sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_hypotdx_u35sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fabsdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_fabsdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_copysigndx_sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_copysigndx_sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fmaxdx_sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_fmaxdx_sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fmindx_sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_fmindx_sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fdimdx_sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_fdimdx_sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_truncdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_truncdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_floordx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_floordx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_ceildx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_ceildx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_rounddx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_rounddx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_rintdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_rintdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_nextafterdx_sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_nextafterdx_sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_frfrexpdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_frfrexpdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svint32_t Sleef_expfrexpdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svint32_t Sleef_finz_expfrexpdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fmoddx_sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_fmoddx_sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_remainderdx_sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_remainderdx_sve(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_modfdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_finz_modfdx_sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_lgammadx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_lgammadx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_tgammadx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_tgammadx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_erfdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_erfdx_u10sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_erfcdx_u15sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_finz_erfcdx_u15sve(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntdx_sve(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrdx_sve(int);
#ifndef Sleef_svfloat32_t_2_DEFINED
typedef svfloat32x2_t Sleef_svfloat32_t_2;
#define Sleef_svfloat32_t_2_DEFINED
#endif
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sinfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_sinfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cosfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_cosfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_sincosfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_finz_sincosfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_tanfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_tanfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_asinfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_asinfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_acosfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_acosfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_atanfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_atanfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_atan2fx_u35sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_atan2fx_u35sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_logfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_logfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cbrtfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_cbrtfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sinfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_sinfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cosfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_cosfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_sincosfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_finz_sincosfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_tanfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_tanfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_asinfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_asinfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_acosfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_acosfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_atanfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_atanfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_atan2fx_u10sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_atan2fx_u10sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_logfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_logfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cbrtfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_cbrtfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_expfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_expfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_powfx_u10sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_powfx_u10sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sinhfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_sinhfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_coshfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_coshfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_tanhfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_tanhfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sinhfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_sinhfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_coshfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_coshfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_tanhfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_tanhfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fastsinfx_u3500sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_fastsinfx_u3500sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fastcosfx_u3500sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_fastcosfx_u3500sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fastpowfx_u3500sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_fastpowfx_u3500sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_asinhfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_asinhfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_acoshfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_acoshfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_atanhfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_atanhfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_exp2fx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_exp2fx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_exp2fx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_exp2fx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_exp10fx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_exp10fx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_exp10fx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_exp10fx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_expm1fx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_expm1fx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_log10fx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_log10fx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_log2fx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_log2fx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_log2fx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_log2fx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_log1pfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_log1pfx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_sincospifx_u05sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_finz_sincospifx_u05sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_sincospifx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_finz_sincospifx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sinpifx_u05sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_sinpifx_u05sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cospifx_u05sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_cospifx_u05sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fmafx_sve(svfloat32_t, svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_fmafx_sve(svfloat32_t, svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sqrtfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_sqrtfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sqrtfx_u05sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_sqrtfx_u05sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sqrtfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_sqrtfx_u35sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_hypotfx_u05sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_hypotfx_u05sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_hypotfx_u35sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_hypotfx_u35sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fabsfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_fabsfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_copysignfx_sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_copysignfx_sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fmaxfx_sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_fmaxfx_sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fminfx_sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_fminfx_sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fdimfx_sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_fdimfx_sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_truncfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_truncfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_floorfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_floorfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_ceilfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_ceilfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_roundfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_roundfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_rintfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_rintfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_nextafterfx_sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_nextafterfx_sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_frfrexpfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_frfrexpfx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fmodfx_sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_fmodfx_sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_remainderfx_sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_remainderfx_sve(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_modffx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_finz_modffx_sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_lgammafx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_lgammafx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_tgammafx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_tgammafx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_erffx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_erffx_u10sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_erfcfx_u15sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_finz_erfcfx_u15sve(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntfx_sve(int);
SLEEF_IMPORT SLEEF_CONST int Sleef_finz_getIntfx_sve(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrfx_sve(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_finz_getPtrfx_sve(int);
#endif
#ifdef __ARM_FEATURE_SVE
#ifndef Sleef_svfloat64_t_2_DEFINED
typedef svfloat64x2_t Sleef_svfloat64_t_2;
#define Sleef_svfloat64_t_2_DEFINED
#endif
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sindx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_sindx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cosdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_cosdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_sincosdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_cinz_sincosdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_tandx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_tandx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_asindx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_asindx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_acosdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_acosdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_atandx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_atandx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_atan2dx_u35svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_atan2dx_u35svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_logdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_logdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cbrtdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_cbrtdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sindx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_sindx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cosdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_cosdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_sincosdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_cinz_sincosdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_tandx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_tandx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_asindx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_asindx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_acosdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_acosdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_atandx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_atandx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_atan2dx_u10svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_atan2dx_u10svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_logdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_logdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cbrtdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_cbrtdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_expdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_expdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_powdx_u10svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_powdx_u10svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sinhdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_sinhdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_coshdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_coshdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_tanhdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_tanhdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sinhdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_sinhdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_coshdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_coshdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_tanhdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_tanhdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fastsindx_u3500svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_fastsindx_u3500svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fastcosdx_u3500svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_fastcosdx_u3500svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fastpowdx_u3500svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_fastpowdx_u3500svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_asinhdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_asinhdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_acoshdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_acoshdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_atanhdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_atanhdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_exp2dx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_exp2dx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_exp2dx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_exp2dx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_exp10dx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_exp10dx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_exp10dx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_exp10dx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_expm1dx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_expm1dx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_log10dx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_log10dx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_log2dx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_log2dx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_log2dx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_log2dx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_log1pdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_log1pdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_sincospidx_u05svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_cinz_sincospidx_u05svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_sincospidx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_cinz_sincospidx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sinpidx_u05svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_sinpidx_u05svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cospidx_u05svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_cospidx_u05svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_ldexpdx_svenofma(svfloat64_t, svint32_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_ldexpdx_svenofma(svfloat64_t, svint32_t);
SLEEF_IMPORT SLEEF_CONST svint32_t Sleef_ilogbdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svint32_t Sleef_cinz_ilogbdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fmadx_svenofma(svfloat64_t, svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_fmadx_svenofma(svfloat64_t, svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sqrtdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_sqrtdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sqrtdx_u05svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_sqrtdx_u05svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_sqrtdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_sqrtdx_u35svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_hypotdx_u05svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_hypotdx_u05svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_hypotdx_u35svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_hypotdx_u35svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fabsdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_fabsdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_copysigndx_svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_copysigndx_svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fmaxdx_svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_fmaxdx_svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fmindx_svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_fmindx_svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fdimdx_svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_fdimdx_svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_truncdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_truncdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_floordx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_floordx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_ceildx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_ceildx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_rounddx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_rounddx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_rintdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_rintdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_nextafterdx_svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_nextafterdx_svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_frfrexpdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_frfrexpdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svint32_t Sleef_expfrexpdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svint32_t Sleef_cinz_expfrexpdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_fmoddx_svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_fmoddx_svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_remainderdx_svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_remainderdx_svenofma(svfloat64_t, svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_modfdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat64_t_2 Sleef_cinz_modfdx_svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_lgammadx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_lgammadx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_tgammadx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_tgammadx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_erfdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_erfdx_u10svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_erfcdx_u15svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST svfloat64_t Sleef_cinz_erfcdx_u15svenofma(svfloat64_t);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntdx_svenofma(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrdx_svenofma(int);
#ifndef Sleef_svfloat32_t_2_DEFINED
typedef svfloat32x2_t Sleef_svfloat32_t_2;
#define Sleef_svfloat32_t_2_DEFINED
#endif
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sinfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_sinfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cosfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_cosfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_sincosfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_cinz_sincosfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_tanfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_tanfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_asinfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_asinfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_acosfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_acosfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_atanfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_atanfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_atan2fx_u35svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_atan2fx_u35svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_logfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_logfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cbrtfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_cbrtfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sinfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_sinfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cosfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_cosfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_sincosfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_cinz_sincosfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_tanfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_tanfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_asinfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_asinfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_acosfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_acosfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_atanfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_atanfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_atan2fx_u10svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_atan2fx_u10svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_logfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_logfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cbrtfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_cbrtfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_expfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_expfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_powfx_u10svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_powfx_u10svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sinhfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_sinhfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_coshfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_coshfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_tanhfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_tanhfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sinhfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_sinhfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_coshfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_coshfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_tanhfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_tanhfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fastsinfx_u3500svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_fastsinfx_u3500svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fastcosfx_u3500svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_fastcosfx_u3500svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fastpowfx_u3500svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_fastpowfx_u3500svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_asinhfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_asinhfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_acoshfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_acoshfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_atanhfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_atanhfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_exp2fx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_exp2fx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_exp2fx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_exp2fx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_exp10fx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_exp10fx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_exp10fx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_exp10fx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_expm1fx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_expm1fx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_log10fx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_log10fx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_log2fx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_log2fx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_log2fx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_log2fx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_log1pfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_log1pfx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_sincospifx_u05svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_cinz_sincospifx_u05svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_sincospifx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_cinz_sincospifx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sinpifx_u05svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_sinpifx_u05svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cospifx_u05svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_cospifx_u05svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fmafx_svenofma(svfloat32_t, svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_fmafx_svenofma(svfloat32_t, svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sqrtfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_sqrtfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sqrtfx_u05svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_sqrtfx_u05svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_sqrtfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_sqrtfx_u35svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_hypotfx_u05svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_hypotfx_u05svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_hypotfx_u35svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_hypotfx_u35svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fabsfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_fabsfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_copysignfx_svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_copysignfx_svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fmaxfx_svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_fmaxfx_svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fminfx_svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_fminfx_svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fdimfx_svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_fdimfx_svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_truncfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_truncfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_floorfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_floorfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_ceilfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_ceilfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_roundfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_roundfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_rintfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_rintfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_nextafterfx_svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_nextafterfx_svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_frfrexpfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_frfrexpfx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_fmodfx_svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_fmodfx_svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_remainderfx_svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_remainderfx_svenofma(svfloat32_t, svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_modffx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST Sleef_svfloat32_t_2 Sleef_cinz_modffx_svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_lgammafx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_lgammafx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_tgammafx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_tgammafx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_erffx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_erffx_u10svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_erfcfx_u15svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST svfloat32_t Sleef_cinz_erfcfx_u15svenofma(svfloat32_t);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntfx_svenofma(int);
SLEEF_IMPORT SLEEF_CONST int Sleef_cinz_getIntfx_svenofma(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrfx_svenofma(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_cinz_getPtrfx_svenofma(int);
#endif
#ifdef __STDC__
#ifndef Sleef_double_2_DEFINED
typedef Sleef_double2 Sleef_double_2;
#define Sleef_double_2_DEFINED
#endif
SLEEF_IMPORT SLEEF_CONST double Sleef_sind1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_sind1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cosd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_cosd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_sincosd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_cinz_sincosd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_tand1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_tand1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_asind1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_asind1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_acosd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_acosd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_atand1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_atand1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_atan2d1_u35purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_atan2d1_u35purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_logd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_logd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cbrtd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_cbrtd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_sind1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_sind1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cosd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_cosd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_sincosd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_cinz_sincosd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_tand1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_tand1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_asind1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_asind1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_acosd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_acosd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_atand1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_atand1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_atan2d1_u10purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_atan2d1_u10purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_logd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_logd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cbrtd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_cbrtd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_expd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_expd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_powd1_u10purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_powd1_u10purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_sinhd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_sinhd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_coshd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_coshd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_tanhd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_tanhd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_sinhd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_sinhd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_coshd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_coshd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_tanhd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_tanhd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fastsind1_u3500purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_fastsind1_u3500purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fastcosd1_u3500purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_fastcosd1_u3500purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fastpowd1_u3500purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_fastpowd1_u3500purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_asinhd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_asinhd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_acoshd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_acoshd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_atanhd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_atanhd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_exp2d1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_exp2d1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_exp2d1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_exp2d1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_exp10d1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_exp10d1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_exp10d1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_exp10d1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_expm1d1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_expm1d1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_log10d1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_log10d1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_log2d1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_log2d1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_log2d1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_log2d1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_log1pd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_log1pd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_sincospid1_u05purec(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_cinz_sincospid1_u05purec(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_sincospid1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_cinz_sincospid1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_sinpid1_u05purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_sinpid1_u05purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cospid1_u05purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_cospid1_u05purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_ldexpd1_purec(double, int32_t);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_ldexpd1_purec(double, int32_t);
SLEEF_IMPORT SLEEF_CONST int32_t Sleef_ilogbd1_purec(double);
SLEEF_IMPORT SLEEF_CONST int32_t Sleef_cinz_ilogbd1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fmad1_purec(double, double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_fmad1_purec(double, double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_sqrtd1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_sqrtd1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_sqrtd1_u05purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_sqrtd1_u05purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_sqrtd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_sqrtd1_u35purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_hypotd1_u05purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_hypotd1_u05purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_hypotd1_u35purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_hypotd1_u35purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fabsd1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_fabsd1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_copysignd1_purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_copysignd1_purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fmaxd1_purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_fmaxd1_purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fmind1_purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_fmind1_purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fdimd1_purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_fdimd1_purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_truncd1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_truncd1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_floord1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_floord1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_ceild1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_ceild1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_roundd1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_roundd1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_rintd1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_rintd1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_nextafterd1_purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_nextafterd1_purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_frfrexpd1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_frfrexpd1_purec(double);
SLEEF_IMPORT SLEEF_CONST int32_t Sleef_expfrexpd1_purec(double);
SLEEF_IMPORT SLEEF_CONST int32_t Sleef_cinz_expfrexpd1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fmodd1_purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_fmodd1_purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_remainderd1_purec(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_remainderd1_purec(double, double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_modfd1_purec(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_cinz_modfd1_purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_lgammad1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_lgammad1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_tgammad1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_tgammad1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_erfd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_erfd1_u10purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_erfcd1_u15purec(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cinz_erfcd1_u15purec(double);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntd1_purec(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrd1_purec(int);
#ifndef Sleef_float_2_DEFINED
typedef Sleef_float2 Sleef_float_2;
#define Sleef_float_2_DEFINED
#endif
SLEEF_IMPORT SLEEF_CONST float Sleef_sinf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_sinf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cosf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_cosf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_sincosf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_cinz_sincosf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_tanf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_tanf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_asinf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_asinf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_acosf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_acosf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_atanf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_atanf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_atan2f1_u35purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_atan2f1_u35purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_logf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_logf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cbrtf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_cbrtf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_sinf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_sinf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cosf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_cosf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_sincosf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_cinz_sincosf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_tanf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_tanf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_asinf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_asinf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_acosf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_acosf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_atanf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_atanf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_atan2f1_u10purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_atan2f1_u10purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_logf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_logf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cbrtf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_cbrtf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_expf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_expf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_powf1_u10purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_powf1_u10purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_sinhf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_sinhf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_coshf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_coshf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_tanhf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_tanhf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_sinhf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_sinhf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_coshf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_coshf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_tanhf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_tanhf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fastsinf1_u3500purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_fastsinf1_u3500purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fastcosf1_u3500purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_fastcosf1_u3500purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fastpowf1_u3500purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_fastpowf1_u3500purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_asinhf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_asinhf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_acoshf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_acoshf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_atanhf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_atanhf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_exp2f1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_exp2f1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_exp2f1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_exp2f1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_exp10f1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_exp10f1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_exp10f1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_exp10f1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_expm1f1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_expm1f1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_log10f1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_log10f1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_log2f1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_log2f1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_log2f1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_log2f1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_log1pf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_log1pf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_sincospif1_u05purec(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_cinz_sincospif1_u05purec(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_sincospif1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_cinz_sincospif1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_sinpif1_u05purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_sinpif1_u05purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cospif1_u05purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_cospif1_u05purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fmaf1_purec(float, float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_fmaf1_purec(float, float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_sqrtf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_sqrtf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_sqrtf1_u05purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_sqrtf1_u05purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_sqrtf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_sqrtf1_u35purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_hypotf1_u05purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_hypotf1_u05purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_hypotf1_u35purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_hypotf1_u35purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fabsf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_fabsf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_copysignf1_purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_copysignf1_purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fmaxf1_purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_fmaxf1_purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fminf1_purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_fminf1_purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fdimf1_purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_fdimf1_purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_truncf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_truncf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_floorf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_floorf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_ceilf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_ceilf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_roundf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_roundf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_rintf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_rintf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_nextafterf1_purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_nextafterf1_purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_frfrexpf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_frfrexpf1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fmodf1_purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_fmodf1_purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_remainderf1_purec(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_remainderf1_purec(float, float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_modff1_purec(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_cinz_modff1_purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_lgammaf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_lgammaf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_tgammaf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_tgammaf1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_erff1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_erff1_u10purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_erfcf1_u15purec(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cinz_erfcf1_u15purec(float);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntf1_purec(int);
SLEEF_IMPORT SLEEF_CONST int Sleef_cinz_getIntf1_purec(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrf1_purec(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_cinz_getPtrf1_purec(int);
#endif
#ifdef __STDC__
#ifndef Sleef_double_2_DEFINED
typedef Sleef_double2 Sleef_double_2;
#define Sleef_double_2_DEFINED
#endif
SLEEF_IMPORT SLEEF_CONST double Sleef_sind1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_sind1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cosd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_cosd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_sincosd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_finz_sincosd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_tand1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_tand1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_asind1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_asind1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_acosd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_acosd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_atand1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_atand1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_atan2d1_u35purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_atan2d1_u35purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_logd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_logd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cbrtd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_cbrtd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_sind1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_sind1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cosd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_cosd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_sincosd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_finz_sincosd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_tand1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_tand1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_asind1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_asind1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_acosd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_acosd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_atand1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_atand1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_atan2d1_u10purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_atan2d1_u10purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_logd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_logd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cbrtd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_cbrtd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_expd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_expd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_powd1_u10purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_powd1_u10purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_sinhd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_sinhd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_coshd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_coshd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_tanhd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_tanhd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_sinhd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_sinhd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_coshd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_coshd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_tanhd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_tanhd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fastsind1_u3500purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_fastsind1_u3500purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fastcosd1_u3500purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_fastcosd1_u3500purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fastpowd1_u3500purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_fastpowd1_u3500purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_asinhd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_asinhd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_acoshd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_acoshd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_atanhd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_atanhd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_exp2d1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_exp2d1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_exp2d1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_exp2d1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_exp10d1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_exp10d1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_exp10d1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_exp10d1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_expm1d1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_expm1d1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_log10d1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_log10d1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_log2d1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_log2d1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_log2d1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_log2d1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_log1pd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_log1pd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_sincospid1_u05purecfma(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_finz_sincospid1_u05purecfma(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_sincospid1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_finz_sincospid1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_sinpid1_u05purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_sinpid1_u05purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_cospid1_u05purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_cospid1_u05purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_ldexpd1_purecfma(double, int32_t);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_ldexpd1_purecfma(double, int32_t);
SLEEF_IMPORT SLEEF_CONST int32_t Sleef_ilogbd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST int32_t Sleef_finz_ilogbd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fmad1_purecfma(double, double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_fmad1_purecfma(double, double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_sqrtd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_sqrtd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_sqrtd1_u05purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_sqrtd1_u05purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_sqrtd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_sqrtd1_u35purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_hypotd1_u05purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_hypotd1_u05purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_hypotd1_u35purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_hypotd1_u35purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fabsd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_fabsd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_copysignd1_purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_copysignd1_purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fmaxd1_purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_fmaxd1_purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fmind1_purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_fmind1_purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fdimd1_purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_fdimd1_purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_truncd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_truncd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_floord1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_floord1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_ceild1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_ceild1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_roundd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_roundd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_rintd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_rintd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_nextafterd1_purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_nextafterd1_purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_frfrexpd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_frfrexpd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST int32_t Sleef_expfrexpd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST int32_t Sleef_finz_expfrexpd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fmodd1_purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_fmodd1_purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_remainderd1_purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_remainderd1_purecfma(double, double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_modfd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_finz_modfd1_purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_lgammad1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_lgammad1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_tgammad1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_tgammad1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_erfd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_erfd1_u10purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_erfcd1_u15purecfma(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_finz_erfcd1_u15purecfma(double);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntd1_purecfma(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrd1_purecfma(int);
#ifndef Sleef_float_2_DEFINED
typedef Sleef_float2 Sleef_float_2;
#define Sleef_float_2_DEFINED
#endif
SLEEF_IMPORT SLEEF_CONST float Sleef_sinf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_sinf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cosf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_cosf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_sincosf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_finz_sincosf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_tanf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_tanf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_asinf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_asinf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_acosf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_acosf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_atanf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_atanf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_atan2f1_u35purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_atan2f1_u35purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_logf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_logf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cbrtf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_cbrtf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_sinf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_sinf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cosf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_cosf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_sincosf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_finz_sincosf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_tanf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_tanf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_asinf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_asinf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_acosf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_acosf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_atanf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_atanf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_atan2f1_u10purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_atan2f1_u10purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_logf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_logf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cbrtf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_cbrtf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_expf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_expf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_powf1_u10purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_powf1_u10purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_sinhf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_sinhf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_coshf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_coshf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_tanhf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_tanhf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_sinhf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_sinhf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_coshf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_coshf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_tanhf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_tanhf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fastsinf1_u3500purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_fastsinf1_u3500purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fastcosf1_u3500purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_fastcosf1_u3500purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fastpowf1_u3500purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_fastpowf1_u3500purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_asinhf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_asinhf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_acoshf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_acoshf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_atanhf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_atanhf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_exp2f1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_exp2f1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_exp2f1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_exp2f1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_exp10f1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_exp10f1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_exp10f1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_exp10f1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_expm1f1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_expm1f1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_log10f1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_log10f1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_log2f1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_log2f1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_log2f1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_log2f1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_log1pf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_log1pf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_sincospif1_u05purecfma(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_finz_sincospif1_u05purecfma(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_sincospif1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_finz_sincospif1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_sinpif1_u05purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_sinpif1_u05purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_cospif1_u05purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_cospif1_u05purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fmaf1_purecfma(float, float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_fmaf1_purecfma(float, float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_sqrtf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_sqrtf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_sqrtf1_u05purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_sqrtf1_u05purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_sqrtf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_sqrtf1_u35purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_hypotf1_u05purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_hypotf1_u05purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_hypotf1_u35purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_hypotf1_u35purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fabsf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_fabsf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_copysignf1_purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_copysignf1_purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fmaxf1_purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_fmaxf1_purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fminf1_purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_fminf1_purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fdimf1_purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_fdimf1_purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_truncf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_truncf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_floorf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_floorf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_ceilf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_ceilf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_roundf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_roundf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_rintf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_rintf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_nextafterf1_purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_nextafterf1_purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_frfrexpf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_frfrexpf1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_fmodf1_purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_fmodf1_purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_remainderf1_purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_remainderf1_purecfma(float, float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_modff1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_finz_modff1_purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_lgammaf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_lgammaf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_tgammaf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_tgammaf1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_erff1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_erff1_u10purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_erfcf1_u15purecfma(float);
SLEEF_IMPORT SLEEF_CONST float Sleef_finz_erfcf1_u15purecfma(float);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntf1_purecfma(int);
SLEEF_IMPORT SLEEF_CONST int Sleef_finz_getIntf1_purecfma(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrf1_purecfma(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_finz_getPtrf1_purecfma(int);
#endif
#ifdef __STDC__
#ifndef Sleef_double_2_DEFINED
typedef Sleef_double2 Sleef_double_2;
#define Sleef_double_2_DEFINED
#endif
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sind1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_cosd1_u35(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_sincosd1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_tand1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_asind1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_acosd1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_atand1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_atan2d1_u35(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_logd1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_cbrtd1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sind1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_cosd1_u10(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_sincosd1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_tand1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_asind1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_acosd1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_atand1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_atan2d1_u10(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_logd1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_cbrtd1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_expd1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_powd1_u10(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sinhd1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_coshd1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_tanhd1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sinhd1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_coshd1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_tanhd1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_fastsind1_u3500(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_fastcosd1_u3500(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_fastpowd1_u3500(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_asinhd1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_acoshd1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_atanhd1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_exp2d1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_exp2d1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_exp10d1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_exp10d1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_expm1d1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_log10d1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_log2d1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_log2d1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_log1pd1_u10(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_sincospid1_u05(double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_sincospid1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sinpid1_u05(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_cospid1_u05(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_ldexpd1(double, int32_t);
SLEEF_IMPORT SLEEF_CONST int32_t Sleef_ilogbd1(double);
SLEEF_IMPORT SLEEF_CONST double Sleef_fmad1(double, double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sqrtd1(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sqrtd1_u05(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_sqrtd1_u35(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_hypotd1_u05(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_hypotd1_u35(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_fabsd1(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_copysignd1(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_fmaxd1(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_fmind1(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_fdimd1(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_truncd1(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_floord1(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_ceild1(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_roundd1(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_rintd1(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_nextafterd1(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_frfrexpd1(double);
SLEEF_IMPORT SLEEF_CONST int32_t Sleef_expfrexpd1(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_fmodd1(double, double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_remainderd1(double, double);
SLEEF_IMPORT SLEEF_CONST Sleef_double_2 Sleef_modfd1(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_lgammad1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_tgammad1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_erfd1_u10(double);
SLEEF_PRAGMA_OMP_SIMD_DP SLEEF_IMPORT SLEEF_CONST double Sleef_erfcd1_u15(double);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntd1(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrd1(int);
#ifndef Sleef_float_2_DEFINED
typedef Sleef_float2 Sleef_float_2;
#define Sleef_float_2_DEFINED
#endif
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sinf1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_cosf1_u35(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_sincosf1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_tanf1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_asinf1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_acosf1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_atanf1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_atan2f1_u35(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_logf1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_cbrtf1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sinf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_cosf1_u10(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_sincosf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_tanf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_asinf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_acosf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_atanf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_atan2f1_u10(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_logf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_cbrtf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_expf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_powf1_u10(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sinhf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_coshf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_tanhf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sinhf1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_coshf1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_tanhf1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fastsinf1_u3500(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fastcosf1_u3500(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fastpowf1_u3500(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_asinhf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_acoshf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_atanhf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_exp2f1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_exp2f1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_exp10f1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_exp10f1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_expm1f1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_log10f1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_log2f1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_log2f1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_log1pf1_u10(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_sincospif1_u05(float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_sincospif1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sinpif1_u05(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_cospif1_u05(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fmaf1(float, float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sqrtf1(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sqrtf1_u05(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_sqrtf1_u35(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_hypotf1_u05(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_hypotf1_u35(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fabsf1(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_copysignf1(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fmaxf1(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fminf1(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fdimf1(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_truncf1(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_floorf1(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_ceilf1(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_roundf1(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_rintf1(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_nextafterf1(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_frfrexpf1(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_fmodf1(float, float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_remainderf1(float, float);
SLEEF_IMPORT SLEEF_CONST Sleef_float_2 Sleef_modff1(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_lgammaf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_tgammaf1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_erff1_u10(float);
SLEEF_PRAGMA_OMP_SIMD_SP SLEEF_IMPORT SLEEF_CONST float Sleef_erfcf1_u15(float);
SLEEF_IMPORT SLEEF_CONST int Sleef_getIntf1(int);
SLEEF_IMPORT SLEEF_CONST void *Sleef_getPtrf1(int);
#endif
//
#ifdef __cplusplus
} // extern "C"
#endif
#endif // #ifndef __SLEEF_H__
|