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 2600 2601 2602 2603
|
/******************************************************************************
Copyright (c) 2007-2024, Intel Corp.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
THE POSSIBILITY OF SUCH DAMAGE.
******************************************************************************/
#ifndef DPML_NAMES_H
#define DPML_NAMES_H
/*
* If this file is used without dpml_private.h, then DPML_NULL_MACRO_TOKEN will
* be undefined. Consequently, many of the following macros will not be
* defined as intended. So check for a definintion, if one doesn't exist,
* provide one. The only requirement is that DPML_NULL_MACRO_TOKEN have a
* non-zero integer value
*/
#if !defined(DPML_NULL_MACRO_TOKEN)
# define DPML_NULL_MACRO_TOKEN 1
#endif
/*
* Set up platform specific name that over-ride default names
*/
#if (OP_SYSTEM == vms)
# define __VMS_POW_NAME(name,suf) PASTE_2(__F_SYSTEM_NAME(name),suf)
# define __VMS_B_POW_NAME(name,suf) PASTE_2(__B_SYSTEM_NAME(name),suf)
# define __VMS_INT_POW_NAME(name) PASTE_2(__USER_NAME(name),_qq)
# if !defined(LN_BASE_NAME)
# define LN_BASE_NAME ln
# endif
# if !defined(REM_BASE_NAME)
# define REM_BASE_NAME rem
# endif
# if !defined(MOD_BASE_NAME)
# define MOD_BASE_NAME mod
# endif
# if !defined(POW_E_BASE_NAME)
# define POW_E_BASE_NAME pow
# endif
# if !defined(POW_BASE_NAME)
# define POW_BASE_NAME pow_o
# endif
# if !defined(POW_Z_BASE_NAME)
# define POW_Z_BASE_NAME pow_z
# endif
# if !defined(F_POW_E_NAME)
# define F_POW_E_NAME __VMS_POW_NAME(POW_E_BASE_NAME, F_CHAR)
# endif
# if !defined(F_POW_NAME)
# define F_POW_NAME __VMS_POW_NAME(POW_BASE_NAME, F_CHAR)
# endif
# if !defined(F_POW_I_NAME)
# define F_POW_I_NAME __VMS_POW_NAME(POW_BASE_NAME, q)
# endif
# if !defined(F_POW_I_E_NAME)
# define F_POW_I_E_NAME __VMS_POW_NAME(POW_E_BASE_NAME, q)
# endif
# if !defined(F_POW_I_Z_NAME)
# define F_POW_I_Z_NAME __VMS_POW_NAME(POW_Z_BASE_NAME, q)
# endif
# if !defined(F_POW_I_II_NAME)
# define F_POW_I_II_NAME __VMS_INT_POW_NAME(POW_BASE_NAME)
# endif
# if !defined(F_POW_E_I_II_NAME)
# define F_POW_E_I_II_NAME __VMS_INT_POW_NAME(POW_E_BASE_NAME)
# endif
# if !defined(F_CPOWI_NAME)
# define F_CPOWI_NAME __VMS_POW_NAME(CPOW_BASE_NAME, q)
# endif
# if !defined(F_FAST_POW_NAME)
# define F_FAST_POW_NAME __VMS_POW_NAME(FAST_POW_BASE_NAME, F_CHAR)
# endif
# if !defined(F_FAST_POW_E_NAME)
# define F_FAST_POW_E_NAME __VMS_POW_NAME(FAST_POW_E_BASE_NAME, F_CHAR)
# endif
# if !defined(B_POW_NAME)
# define B_POW_NAME __VMS_B_POW_NAME(POW_BASE_NAME, B_CHAR)
# endif
# if !defined(B_POW_E_NAME)
# define B_POW_E_NAME __VMS_B_POW_NAME(POW_E_BASE_NAME, B_CHAR)
# endif
# if !defined(B_POW_I_NAME)
# define B_POW_I_NAME __VMS_B_POW_NAME(POW_BASE_NAME, q)
# endif
# if !defined(B_POW_I_E_NAME)
# define B_POW_I_E_NAME __VMS_B_POW_NAME(POW_E_BASE_NAME, q)
# endif
# if !defined(B_POW_I_Z_NAME)
# define B_POW_I_Z_NAME __VMS_B_POW_NAME(POW_Z_BASE_NAME, q)
# endif
# if !defined(B_CPOWI_NAME)
# define B_CPOWI_NAME __VMS_B_POW_NAME(CPOW_BASE_NAME, q)
# endif
# if !defined(B_FAST_POW_NAME)
# define B_FAST_POW_NAME __VMS_B_POW_NAME(FAST_POW_BASE_NAME, B_CHAR)
# endif
# if !defined(B_FAST_POW_E_NAME)
# define B_FAST_POW_E_NAME __VMS_B_POW_NAME(FAST_POW_E_BASE_NAME, B_CHAR)
# endif
# define __CVT_NAME(type) __INTERNAL_NAME(PASTE_3(cvt_,type,IEEE_VAX_SUFFIX))
# if !defined(F_CVT_IEEE_TO_VAX_NAME)
# define F_CVT_FLOAT_IEEE_TO_VAX_NAME __CVT_NAME(float)
# endif
# if !defined(F_CVT_CMPLX_IEEE_TO_VAX_NAME)
# define F_CVT_CMPLX_IEEE_TO_VAX_NAME __CVT_NAME(complex)
# endif
# if !defined(F_NAME_PREFIX)
# define F_NAME_PREFIX math$
# endif
# if !defined(F_CVTAS_NAME_PREFIX)
# define F_CVTAS_NAME_PREFIX cvtas$
# endif
# if !defined(F_CVTAS_SUFFIX)
# define F_CVTAS_SUFFIX __F_SUFFIX
# endif
# if !defined(F_NAME_SUFFIX)
# define F_NAME_SUFFIX __F_SUFFIX
# endif
# if !defined(B_NAME_SUFFIX)
# define B_NAME_SUFFIX __B_SUFFIX
# endif
# if !defined(INTERNAL_PREFIX)
# define INTERNAL_PREFIX math$
# endif
#else
# if !defined(USER_PREFIX)
# define USER_PREFIX __
# endif
# if !defined(INTERNAL_PREFIX)
# define INTERNAL_PREFIX __dpml_
# endif
# if !defined(F_CVTAS_NAME_PREFIX)
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM == win64))
# define F_CVTAS_NAME_PREFIX cvtas_
# else
# define F_CVTAS_NAME_PREFIX __cvtas_
# endif
# endif
#endif
/*
** Default definitions for the "base" name of each funcion.
*/
#ifndef ASIND_BASE_NAME
# define ASIND_BASE_NAME asind
#endif
#ifndef ASINH_BASE_NAME
# define ASINH_BASE_NAME asinh
#endif
#ifndef ACOSD_BASE_NAME
# define ACOSD_BASE_NAME acosd
#endif
#ifndef ACOSH_BASE_NAME
# define ACOSH_BASE_NAME acosh
#endif
#ifndef ASIN_BASE_NAME
# define ASIN_BASE_NAME asin
#endif
#ifndef ACOS_BASE_NAME
# define ACOS_BASE_NAME acos
#endif
#ifndef ATAND_BASE_NAME
# define ATAND_BASE_NAME atand
#endif
#ifndef ATAND2_BASE_NAME
# define ATAND2_BASE_NAME atand2
#endif
#ifndef ATAN2_BASE_NAME
# define ATAN2_BASE_NAME atan2
#endif
#ifndef ATAN_BASE_NAME
# define ATAN_BASE_NAME atan
#endif
#ifndef ATANH_BASE_NAME
# define ATANH_BASE_NAME atanh
#endif
#ifndef CEIL_BASE_NAME
# define CEIL_BASE_NAME ceil
#endif
#ifndef CLASS_BASE_NAME
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM == win64))
# define CLASS_BASE_NAME _fpclass
# else
# define CLASS_BASE_NAME fp_class
# endif
#endif
#ifndef COPYSIGN_BASE_NAME
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM == win64))
# define COPYSIGN_BASE_NAME _copysign
# else
# define COPYSIGN_BASE_NAME copysign
# endif
#endif
#ifndef ERF_BASE_NAME
# define ERF_BASE_NAME erf
#endif
#ifndef ERFC_BASE_NAME
# define ERFC_BASE_NAME erfc
#endif
#ifndef ERFCX_BASE_NAME
# define ERFCX_BASE_NAME erfcx
#endif
#ifndef EXP_BASE_NAME
# define EXP_BASE_NAME exp
#endif
#ifndef EXP2_BASE_NAME
# define EXP2_BASE_NAME exp2
#endif
#ifndef EXP10_BASE_NAME
# define EXP10_BASE_NAME exp10
#endif
#ifndef EXPM1_BASE_NAME
# define EXPM1_BASE_NAME expm1
#endif
#ifndef FABS_BASE_NAME
# define FABS_BASE_NAME fabs
#endif
#ifndef FINITE_BASE_NAME
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM == win64))
# define FINITE_BASE_NAME _finite
# else
# define FINITE_BASE_NAME finite
# endif
#endif
#ifndef FLOOR_BASE_NAME
# define FLOOR_BASE_NAME floor
#endif
#ifndef FREXP_BASE_NAME
# define FREXP_BASE_NAME frexp
#endif
#ifndef HYPOT_BASE_NAME
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM == win64))
# define HYPOT_BASE_NAME _hypot
# else
# define HYPOT_BASE_NAME hypot
# endif
#endif
#ifndef NT_CABS_BASE_NAME
# define NT_CABS_BASE_NAME _cabs
#endif
#ifndef CABS_BASE_NAME
# define CABS_BASE_NAME cabs
#endif
#ifndef ISNAN_BASE_NAME
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM == win64))
# define ISNAN_BASE_NAME _isnan
# else
# define ISNAN_BASE_NAME isnan
# endif
#endif
#ifndef LDEXP_BASE_NAME
# define LDEXP_BASE_NAME ldexp
#endif
#ifndef SCALB_BASE_NAME
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM == win64))
# define SCALB_BASE_NAME _scalb
# else
# define SCALB_BASE_NAME scalb
# endif
#endif
#ifndef SCALBN_BASE_NAME
# define SCALBN_BASE_NAME scalbn
#endif
#ifndef SCALBLN_BASE_NAME
# define SCALBLN_BASE_NAME scalbln
#endif
#ifndef J0_BASE_NAME
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM == win64))
# define J0_BASE_NAME _j0
# else
# define J0_BASE_NAME j0
# endif
#endif
#ifndef J1_BASE_NAME
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM == win64))
# define J1_BASE_NAME _j1
# else
# define J1_BASE_NAME j1
# endif
#endif
#ifndef JN_BASE_NAME
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM == win64))
# define JN_BASE_NAME _jn
# else
# define JN_BASE_NAME jn
# endif
#endif
#ifndef Y0_BASE_NAME
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM == win64))
# define Y0_BASE_NAME _y0
# else
# define Y0_BASE_NAME y0
# endif
#endif
#ifndef Y1_BASE_NAME
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM == win64))
# define Y1_BASE_NAME _y1
# else
# define Y1_BASE_NAME y1
# endif
#endif
#ifndef YN_BASE_NAME
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM ==win64))
# define YN_BASE_NAME _yn
# else
# define YN_BASE_NAME yn
# endif
#endif
#ifndef GAMMA_BASE_NAME
# define GAMMA_BASE_NAME gamma
#endif
#ifndef LGAMMA_BASE_NAME
# define LGAMMA_BASE_NAME lgamma
#endif
#ifndef TGAMMA_BASE_NAME
# define TGAMMA_BASE_NAME tgamma
#endif
#ifndef RT_LGAMMA_BASE_NAME
# define RT_LGAMMA_BASE_NAME __lgamma
#endif
#ifndef LOG1P_BASE_NAME
# define LOG1P_BASE_NAME log1p
#endif
#ifndef LOG2_BASE_NAME
# define LOG2_BASE_NAME log2
#endif
#ifndef LOG10_BASE_NAME
# define LOG10_BASE_NAME log10
#endif
#ifndef LN_BASE_NAME
# define LN_BASE_NAME log
#endif
#ifndef CMP_BASE_NAME
# define CMP_BASE_NAME cmp
#endif
#ifndef LOG_TABLE_BASE_NAME
# define LOG_TABLE_BASE_NAME log
#endif
#ifndef LOG2_TABLE_BASE_NAME
# define LOG2_TABLE_BASE_NAME log2
#endif
#ifndef LOG10_TABLE_BASE_NAME
# define LOG10_TABLE_BASE_NAME log10
#endif
#ifndef F_LOG_TABLE_NAME
# define F_LOG_TABLE_NAME __D_TABLE_NAME(LOG_TABLE_BASE_NAME)
#endif
#ifndef F_LOG2_TABLE_NAME
# define F_LOG2_TABLE_NAME __D_TABLE_NAME(LOG2_TABLE_BASE_NAME)
#endif
#ifndef F_LOG10_TABLE_NAME
# define F_LOG10_TABLE_NAME __D_TABLE_NAME(LOG10_TABLE_BASE_NAME)
#endif
#ifndef F_LOG_BUILD_FILE_NAME
# define F_LOG_BUILD_FILE_NAME __D_TABLE_FILE_NAME(LOG_TABLE_BASE_NAME)
#endif
#ifndef F_LOG2_BUILD_FILE_NAME
# define F_LOG2_BUILD_FILE_NAME __D_TABLE_FILE_NAME(LOG2_TABLE_BASE_NAME)
#endif
#ifndef F_LOG10_BUILD_FILE_NAME
# define F_LOG10_BUILD_FILE_NAME __D_TABLE_FILE_NAME(LOG10_TABLE_BASE_NAME)
#endif
#ifndef LOGB_BASE_NAME
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM == win64))
# define LOGB_BASE_NAME _logb
# else
# define LOGB_BASE_NAME logb
# endif
#endif
#ifndef ILOGB_BASE_NAME
# define ILOGB_BASE_NAME ilogb
#endif
#ifndef REM_BASE_NAME
# define REM_BASE_NAME drem
#endif
#ifndef REMAINDER_BASE_NAME
# define REMAINDER_BASE_NAME remainder
#endif
#ifndef REMQUO_BASE_NAME
# define REMQUO_BASE_NAME remquo
#endif
#ifndef MOD_BASE_NAME
# define MOD_BASE_NAME fmod
#endif
#ifndef MODF_BASE_NAME
# define MODF_BASE_NAME modf
#endif
#ifndef NINT_BASE_NAME
# define NINT_BASE_NAME nint
#endif
#ifndef NEXTAFTER_BASE_NAME
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM == win64))
# define NEXTAFTER_BASE_NAME _nextafter
# else
# define NEXTAFTER_BASE_NAME nextafter
# endif
#endif
#ifndef NEXTTOWARD_BASE_NAME
# define NEXTTOWARD_BASE_NAME nexttoward
#endif
#ifndef NXTAFTR_BASE_NAME
# define NXTAFTR_BASE_NAME nxtaftr
#endif
#ifndef POW_BASE_NAME
# define POW_BASE_NAME pow
#endif
#ifndef POW_E_BASE_NAME
# define POW_E_BASE_NAME pow_e
#endif
#ifndef POW_TABLE_BASE_NAME
# define POW_TABLE_BASE_NAME pow
#endif
#ifndef RANDOM_BASE_NAME
# define RANDOM_BASE_NAME random
#endif
#ifndef RINT_BASE_NAME
# define RINT_BASE_NAME rint
#endif
#ifndef LRINT_BASE_NAME
# define LRINT_BASE_NAME lrint
#endif
#ifndef LROUND_BASE_NAME
# define LROUND_BASE_NAME lround
#endif
#ifndef LLRINT_BASE_NAME
# define LLRINT_BASE_NAME llrint
#endif
#ifndef LLROUND_BASE_NAME
# define LLROUND_BASE_NAME llround
#endif
#ifndef FMAX_BASE_NAME
# define FMAX_BASE_NAME fmax
#endif
#ifndef FMIN_BASE_NAME
# define FMIN_BASE_NAME fmin
#endif
#ifndef VMS_RANDOM_BASE_NAME
# define VMS_RANDOM_BASE_NAME random_L
#endif
#ifndef SIN_BASE_NAME
# define SIN_BASE_NAME sin
#endif
#ifndef SIN_VO_BASE_NAME
# define SIN_VO_BASE_NAME sin_vo
#endif
#ifndef COS_BASE_NAME
# define COS_BASE_NAME cos
#endif
#ifndef COS_VO_BASE_NAME
# define COS_VO_BASE_NAME cos_vo
#endif
#ifndef SINCOS_BASE_NAME
# define SINCOS_BASE_NAME sincos
#endif
#ifndef SINCOS_VO_BASE_NAME
# define SINCOS_VO_BASE_NAME sincos_vo
#endif
#ifndef SIND_BASE_NAME
# define SIND_BASE_NAME sind
#endif
#ifndef COSD_BASE_NAME
# define COSD_BASE_NAME cosd
#endif
#ifndef SINCOSD_BASE_NAME
# define SINCOSD_BASE_NAME sincosd
#endif
#ifndef SINH_BASE_NAME
# define SINH_BASE_NAME sinh
#endif
#ifndef COSH_BASE_NAME
# define COSH_BASE_NAME cosh
#endif
#ifndef SQRT_BASE_NAME
# define SQRT_BASE_NAME sqrt
#endif
#ifndef RSQRT_BASE_NAME
# define RSQRT_BASE_NAME rsqrt
#endif
#ifndef CBRT_BASE_NAME
# define CBRT_BASE_NAME cbrt
#endif
#ifndef TAN_BASE_NAME
# define TAN_BASE_NAME tan
#endif
#ifndef COT_BASE_NAME
# define COT_BASE_NAME cot
#endif
#ifndef TANCOT_BASE_NAME
# define TANCOT_BASE_NAME tancot
#endif
#ifndef TAND_BASE_NAME
# define TAND_BASE_NAME tand
#endif
#ifndef COTD_BASE_NAME
# define COTD_BASE_NAME cotd
#endif
#ifndef TANCOTD_BASE_NAME
# define TANCOTD_BASE_NAME tancotd
#endif
#ifndef TANH_BASE_NAME
# define TANH_BASE_NAME tanh
#endif
#ifndef TRIG_CONS_BASE_NAME
# define TRIG_CONS_BASE_NAME trig_cons
#endif
#ifndef TRIGD_CONS_BASE_NAME
# define TRIGD_CONS_BASE_NAME trigd_cons
#endif
#ifndef TRIG_REDUCE_BASE_NAME
# define TRIG_REDUCE_BASE_NAME trig_reduce
#endif
#ifndef TRIG_REDUCE_VO_BASE_NAME
# define TRIG_REDUCE_VO_BASE_NAME trig_reduce_vo
#endif
#ifndef TRIGD_REDUCE_BASE_NAME
# define TRIGD_REDUCE_BASE_NAME trigd_reduce
#endif
#ifndef TRUNC_BASE_NAME
# define TRUNC_BASE_NAME trunc
#endif
#ifndef UNORDERED_BASE_NAME
# define UNORDERED_BASE_NAME unordered
#endif
#ifndef CCOS_BASE_NAME
# define CCOS_BASE_NAME ccos
#endif
#ifndef CDIV_BASE_NAME
# define CDIV_BASE_NAME cdiv
#endif
#ifndef CEXP_BASE_NAME
# define CEXP_BASE_NAME cexp
#endif
#ifndef CLOG_BASE_NAME
# define CLOG_BASE_NAME clog
#endif
#ifndef CMUL_BASE_NAME
# define CMUL_BASE_NAME cmul
#endif
#ifndef CPOW_BASE_NAME
# define CPOW_BASE_NAME cpow
#endif
#ifndef CPOWI_BASE_NAME
# define CPOWI_BASE_NAME cpowi
#endif
#ifndef CSIN_BASE_NAME
# define CSIN_BASE_NAME csin
#endif
#ifndef CSQRT_BASE_NAME
# define CSQRT_BASE_NAME csqrt
#endif
#ifndef CACOS_BASE_NAME
# define CACOS_BASE_NAME cacos
#endif
#ifndef CASIN_BASE_NAME
# define CASIN_BASE_NAME casin
#endif
#ifndef CATAN_BASE_NAME
# define CATAN_BASE_NAME catan
#endif
#ifndef CTAN_BASE_NAME
# define CTAN_BASE_NAME ctan
#endif
#ifndef CCOSH_BASE_NAME
# define CCOSH_BASE_NAME ccosh
#endif
#ifndef CSINH_BASE_NAME
# define CSINH_BASE_NAME csinh
#endif
#ifndef CTANH_BASE_NAME
# define CTANH_BASE_NAME ctanh
#endif
#ifndef CACOSH_BASE_NAME
# define CACOSH_BASE_NAME cacosh
#endif
#ifndef CASINH_BASE_NAME
# define CASINH_BASE_NAME casinh
#endif
#ifndef CATANH_BASE_NAME
# define CATANH_BASE_NAME catanh
#endif
#ifndef CARG_BASE_NAME
# define CARG_BASE_NAME carg
#endif
#ifndef CIMAG_BASE_NAME
# define CIMAG_BASE_NAME cimag
#endif
#ifndef CREAL_BASE_NAME
# define CREAL_BASE_NAME creal
#endif
#ifndef CPROJ_BASE_NAME
# define CPROJ_BASE_NAME cproj
#endif
#ifndef CONJ_BASE_NAME
# define CONJ_BASE_NAME conj
#endif
#ifndef NAN_BASE_NAME
# define NAN_BASE_NAME nan
#endif
#ifndef STRING_TO_NAN_BASE_NAME
# define STRING_TO_NAN_BASE_NAME string_to_nan
#endif
#ifndef FDIM_BASE_NAME
# define FDIM_BASE_NAME fdim
#endif
#ifndef FMA_BASE_NAME
# define FMA_BASE_NAME fma
#endif
#ifndef SIGNIFICAND_BASE_NAME
# define SIGNIFICAND_BASE_NAME significand
#endif
#ifndef POW_I_BASE_NAME
# define POW_I_BASE_NAME powi
#endif
#ifndef POW_I_E_BASE_NAME
# define POW_I_E_BASE_NAME powi_e
#endif
#ifndef POW_I_Z_BASE_NAME
# define POW_I_Z_BASE_NAME powi_z
#endif
#ifndef POW_I_II_BASE_NAME
# define POW_I_II_BASE_NAME powii
#endif
#ifndef POW_E_I_II_BASE_NAME
# define POW_E_I_II_BASE_NAME powii_e
#endif
#ifndef SINHCOSH_BASE_NAME
# define SINHCOSH_BASE_NAME sinhcosh
#endif
#ifndef MUL_BASE_NAME
# define MUL_BASE_NAME mul
#endif
#ifndef DIV_BASE_NAME
# define DIV_BASE_NAME div
#endif
#ifndef ADD_BASE_NAME
# define ADD_BASE_NAME add
#endif
#ifndef SUB_BASE_NAME
# define SUB_BASE_NAME sub
#endif
#ifndef NEG_BASE_NAME
# define NEG_BASE_NAME neg
#endif
#ifndef ITOF_BASE_NAME
# define ITOF_BASE_NAME itof
#endif
#ifndef CMP_BASE_NAME
# define CMP_BASE_NAME cmp
#endif
/*
** Default base names for the fast routines.
*/
#ifndef FAST_ACOS_BASE_NAME
# define FAST_ACOS_BASE_NAME __FAST_NAME(ACOS_BASE_NAME)
#endif
#ifndef FAST_ASIN_BASE_NAME
# define FAST_ASIN_BASE_NAME __FAST_NAME(ASIN_BASE_NAME)
#endif
#ifndef FAST_ATAN_BASE_NAME
# define FAST_ATAN_BASE_NAME __FAST_NAME(ATAN_BASE_NAME)
#endif
#ifndef FAST_EXP_BASE_NAME
# define FAST_EXP_BASE_NAME __FAST_NAME(EXP_BASE_NAME)
#endif
#ifndef FAST_LN_BASE_NAME
# define FAST_LN_BASE_NAME __FAST_NAME(LN_BASE_NAME)
#endif
#ifndef FAST_LOG10_BASE_NAME
# define FAST_LOG10_BASE_NAME __FAST_NAME(LOG10_BASE_NAME)
#endif
#ifndef FAST_SINCOS_BASE_NAME
# define FAST_SINCOS_BASE_NAME __FAST_NAME(SINCOS_BASE_NAME)
#endif
#ifndef FAST_SIN_BASE_NAME
# define FAST_SIN_BASE_NAME __FAST_NAME(SIN_BASE_NAME)
#endif
#ifndef FAST_COS_BASE_NAME
# define FAST_COS_BASE_NAME __FAST_NAME(COS_BASE_NAME)
#endif
#ifndef FAST_SINCOSD_BASE_NAME
# define FAST_SINCOSD_BASE_NAME __FAST_NAME(SINCOSD_BASE_NAME)
#endif
#ifndef FAST_SIND_BASE_NAME
# define FAST_SIND_BASE_NAME __FAST_NAME(SIND_BASE_NAME)
#endif
#ifndef FAST_COSD_BASE_NAME
# define FAST_COSD_BASE_NAME __FAST_NAME(COSD_BASE_NAME)
#endif
#ifndef FAST_TAN_BASE_NAME
# define FAST_TAN_BASE_NAME __FAST_NAME(TAN_BASE_NAME)
#endif
#ifndef FAST_ATAN2_BASE_NAME
# define FAST_ATAN2_BASE_NAME __FAST_NAME(ATAN2_BASE_NAME)
#endif
#ifndef FAST_HYPOT_BASE_NAME
# if ((OP_SYSTEM == wnt) || (OP_SYSTEM == win64))
# define FAST_HYPOT_BASE_NAME __FAST_NAME(hypot)
# else
# define FAST_HYPOT_BASE_NAME __FAST_NAME(HYPOT_BASE_NAME)
# endif
#endif
#ifndef FAST_POW_BASE_NAME
# define FAST_POW_BASE_NAME __FAST_NAME(POW_BASE_NAME)
#endif
#ifndef FAST_POW_E_BASE_NAME
# define FAST_POW_E_BASE_NAME __FAST_NAME(POW_E_BASE_NAME)
#endif
#ifndef FAST_SQRT_BASE_NAME
# define FAST_SQRT_BASE_NAME __FAST_NAME(SQRT_BASE_NAME)
#endif
#ifndef FAST_POW_TABLE_BASE_NAME
# define FAST_POW_TABLE_BASE_NAME F_pow
#endif
/*
** Default definitions for the entry point name of each dpml function.
*/
#ifndef F_ASIND_NAME
# define F_ASIND_NAME __F_SYSTEM_NAME(ASIND_BASE_NAME)
#endif
#ifndef F_ASINH_NAME
# define F_ASINH_NAME __F_SYSTEM_NAME(ASINH_BASE_NAME)
#endif
#ifndef F_ACOSD_NAME
# define F_ACOSD_NAME __F_SYSTEM_NAME(ACOSD_BASE_NAME)
#endif
#ifndef F_ACOSH_NAME
# define F_ACOSH_NAME __F_SYSTEM_NAME(ACOSH_BASE_NAME)
#endif
#ifndef F_ASIN_NAME
# define F_ASIN_NAME __F_SYSTEM_NAME(ASIN_BASE_NAME)
#endif
#ifndef F_ACOS_NAME
# define F_ACOS_NAME __F_SYSTEM_NAME(ACOS_BASE_NAME)
#endif
#ifndef F_ATAND_NAME
# define F_ATAND_NAME __F_SYSTEM_NAME(ATAND_BASE_NAME)
#endif
#ifndef F_ATAND2_NAME
# define F_ATAND2_NAME __F_SYSTEM_NAME(ATAND2_BASE_NAME)
#endif
#ifndef F_ATAN2_NAME
# define F_ATAN2_NAME __F_SYSTEM_NAME(ATAN2_BASE_NAME)
#endif
#ifndef F_ATAN_NAME
# define F_ATAN_NAME __F_SYSTEM_NAME(ATAN_BASE_NAME)
#endif
#ifndef F_ATANH_NAME
# define F_ATANH_NAME __F_SYSTEM_NAME(ATANH_BASE_NAME)
#endif
#ifndef F_CEIL_NAME
# define F_CEIL_NAME __F_SYSTEM_NAME(CEIL_BASE_NAME)
#endif
#ifndef F_CLASS_NAME
# define F_CLASS_NAME __F_SYSTEM_NAME(CLASS_BASE_NAME)
#endif
#ifndef F_COPYSIGN_NAME
# define F_COPYSIGN_NAME __F_SYSTEM_NAME(COPYSIGN_BASE_NAME)
#endif
#ifndef F_ERF_NAME
# define F_ERF_NAME __F_SYSTEM_NAME(ERF_BASE_NAME)
#endif
#ifndef F_ERFC_NAME
# define F_ERFC_NAME __F_SYSTEM_NAME(ERFC_BASE_NAME)
#endif
#ifndef F_ERFCX_NAME
# define F_ERFCX_NAME __F_SYSTEM_NAME(ERFCX_BASE_NAME)
#endif
#ifndef F_EXP_NAME
# define F_EXP_NAME __F_SYSTEM_NAME(EXP_BASE_NAME)
#endif
#ifndef F_EXP2_NAME
# define F_EXP2_NAME __F_SYSTEM_NAME(EXP2_BASE_NAME)
#endif
#ifndef F_EXP10_NAME
# define F_EXP10_NAME __F_SYSTEM_NAME(EXP10_BASE_NAME)
#endif
#ifndef F_EXP_TABLE_NAME
# define F_EXP_TABLE_NAME __D_TABLE_NAME(EXP_BASE_NAME)
#endif
#ifndef F_EXP_BUILD_FILE_NAME
# define F_EXP_BUILD_FILE_NAME __D_TABLE_FILE_NAME(EXP_BASE_NAME)
#endif
#ifndef F_EXP_SPECIAL_ENTRY_NAME
# define F_EXP_SPECIAL_ENTRY_NAME \
PASTE_2(__F_INTERNAL_NAME(EXP_BASE_NAME), _special_entry_point)
#endif
#ifndef F_EXPM1_NAME
# define F_EXPM1_NAME __F_SYSTEM_NAME(EXPM1_BASE_NAME)
#endif
#ifndef F_FABS_NAME
# define F_FABS_NAME __F_SYSTEM_NAME(FABS_BASE_NAME)
#endif
#ifndef F_FINITE_NAME
# define F_FINITE_NAME __F_SYSTEM_NAME(FINITE_BASE_NAME)
#endif
#ifndef F_FLOOR_NAME
# define F_FLOOR_NAME __F_SYSTEM_NAME(FLOOR_BASE_NAME)
#endif
#ifndef F_FREXP_NAME
# define F_FREXP_NAME __F_SYSTEM_NAME(FREXP_BASE_NAME)
#endif
#ifndef F_HYPOT_NAME
# define F_HYPOT_NAME __F_SYSTEM_NAME(HYPOT_BASE_NAME)
#endif
#ifndef F_NT_CABS_NAME
# define F_NT_CABS_NAME __F_SYSTEM_NAME( NT_CABS_BASE_NAME )
#endif
#ifndef F_CABS_NAME
# define F_CABS_NAME __F_SYSTEM_NAME(CABS_BASE_NAME )
#endif
#ifndef F_ISNAN_NAME
# define F_ISNAN_NAME __F_SYSTEM_NAME(ISNAN_BASE_NAME)
#endif
#ifndef F_LDEXP_NAME
# define F_LDEXP_NAME __F_SYSTEM_NAME(LDEXP_BASE_NAME)
#endif
#ifndef F_SCALB_NAME
# define F_SCALB_NAME __F_SYSTEM_NAME(SCALB_BASE_NAME)
#endif
#ifndef F_SCALBN_NAME
# define F_SCALBN_NAME __F_SYSTEM_NAME(SCALBN_BASE_NAME)
#endif
#ifndef F_SCALBLN_NAME
# define F_SCALBLN_NAME __F_SYSTEM_NAME(SCALBLN_BASE_NAME)
#endif
#ifndef F_J0_NAME
# define F_J0_NAME __F_SYSTEM_NAME(J0_BASE_NAME)
#endif
#ifndef F_J1_NAME
# define F_J1_NAME __F_SYSTEM_NAME(J1_BASE_NAME)
#endif
#ifndef F_JN_NAME
# define F_JN_NAME __F_SYSTEM_NAME(JN_BASE_NAME)
#endif
#ifndef F_Y0_NAME
# define F_Y0_NAME __F_SYSTEM_NAME(Y0_BASE_NAME)
#endif
#ifndef F_Y1_NAME
# define F_Y1_NAME __F_SYSTEM_NAME(Y1_BASE_NAME)
#endif
#ifndef F_YN_NAME
# define F_YN_NAME __F_SYSTEM_NAME(YN_BASE_NAME)
#endif
#ifndef F_GAMMA_NAME
# define F_GAMMA_NAME __F_SYSTEM_NAME(GAMMA_BASE_NAME)
#endif
#ifndef F_LGAMMA_NAME
# define F_LGAMMA_NAME __F_SYSTEM_NAME(LGAMMA_BASE_NAME)
#endif
#ifndef F_TGAMMA_NAME
# define F_TGAMMA_NAME __F_SYSTEM_NAME(TGAMMA_BASE_NAME)
#endif
#ifndef F_RT_LGAMMA_NAME
# define F_RT_LGAMMA_NAME __F_SYSTEM_NAME(RT_LGAMMA_BASE_NAME)
#endif
#ifndef F_LOG1P_NAME
# define F_LOG1P_NAME __F_SYSTEM_NAME(LOG1P_BASE_NAME)
#endif
#ifndef F_LOG2_NAME
# define F_LOG2_NAME __F_SYSTEM_NAME(LOG2_BASE_NAME)
#endif
#ifndef F_LOG10_NAME
# define F_LOG10_NAME __F_SYSTEM_NAME(LOG10_BASE_NAME)
#endif
#ifndef F_LN_NAME
# define F_LN_NAME __F_SYSTEM_NAME(LN_BASE_NAME)
#endif
#ifndef F_LOGB_NAME
# define F_LOGB_NAME __F_SYSTEM_NAME(LOGB_BASE_NAME)
#endif
#ifndef F_ILOGB_NAME
# define F_ILOGB_NAME __F_SYSTEM_NAME(ILOGB_BASE_NAME)
#endif
#ifndef F_REM_NAME
# define F_REM_NAME __F_SYSTEM_NAME(REM_BASE_NAME)
#endif
#ifndef F_REMAINDER_NAME
# define F_REMAINDER_NAME __F_SYSTEM_NAME(REMAINDER_BASE_NAME)
#endif
#ifndef F_REMQUO_NAME
# define F_REMQUO_NAME __F_SYSTEM_NAME(REMQUO_BASE_NAME)
#endif
#ifndef F_MOD_NAME
# define F_MOD_NAME __F_SYSTEM_NAME(MOD_BASE_NAME)
#endif
#ifndef F_MODF_NAME
# define F_MODF_NAME __F_SYSTEM_NAME(MODF_BASE_NAME)
#endif
#ifndef F_NINT_NAME
# define F_NINT_NAME __F_SYSTEM_NAME(NINT_BASE_NAME)
#endif
#ifndef F_NEXTAFTER_NAME
# define F_NEXTAFTER_NAME __F_SYSTEM_NAME(NEXTAFTER_BASE_NAME)
#endif
#ifndef F_NEXTTOWARD_NAME
# define F_NEXTTOWARD_NAME __F_SYSTEM_NAME(NEXTTOWARD_BASE_NAME)
#endif
#ifndef F_NXTAFTR_NAME
# define F_NXTAFTR_NAME __F_USER_NAME(NXTAFTR_BASE_NAME)
#endif
#ifndef F_POW_NAME
# define F_POW_NAME __F_SYSTEM_NAME(POW_BASE_NAME)
#endif
#ifndef F_POW_E_NAME
# define F_POW_E_NAME __F_USER_NAME(POW_E_BASE_NAME)
#endif
#ifndef F_POW_TABLE_NAME
# define F_POW_TABLE_NAME __F_TABLE_NAME(POW_TABLE_BASE_NAME)
#endif
#ifndef F_POW_BUILD_FILE_NAME
# if defined(ONE_TYPE)
# define F_POW_BUILD_FILE_NAME __F_TABLE_FILE_NAME(POW_TABLE_BASE_NAME)
# else
# define F_POW_BUILD_FILE_NAME __B_TABLE_FILE_NAME(POW_TABLE_BASE_NAME)
# endif
#endif
#if !defined(SPECIAL_EXP_HEADER)
# define SPECIAL_EXP_HEADER ADD_EXTENSION(ADD_BUILD_PREFIX(special_exp),h)
#endif
#ifndef F_RANDOM_NAME
# define F_RANDOM_NAME __F_SYSTEM_NAME(RANDOM_BASE_NAME)
#endif
#ifndef F_VMS_RANDOM_NAME
# define F_VMS_RANDOM_NAME __F_SYSTEM_NAME(VMS_RANDOM_BASE_NAME)
#endif
#ifndef F_RINT_NAME
# define F_RINT_NAME __F_SYSTEM_NAME(RINT_BASE_NAME)
#endif
#ifndef F_LRINT_NAME
# define F_LRINT_NAME __F_SYSTEM_NAME(LRINT_BASE_NAME)
#endif
#ifndef F_LROUND_NAME
# define F_LROUND_NAME __F_SYSTEM_NAME(LROUND_BASE_NAME)
#endif
#ifndef F_LLRINT_NAME
# define F_LLRINT_NAME __F_SYSTEM_NAME(LLRINT_BASE_NAME)
#endif
#ifndef F_LLROUND_NAME
# define F_LLROUND_NAME __F_SYSTEM_NAME(LLROUND_BASE_NAME)
#endif
#ifndef F_SIN_NAME
# define F_SIN_NAME __F_SYSTEM_NAME(SIN_BASE_NAME)
#endif
#ifndef F_SIN_VO_NAME
# define F_SIN_VO_NAME __F_USER_NAME(SIN_VO_BASE_NAME)
#endif
#ifndef F_COS_NAME
# define F_COS_NAME __F_SYSTEM_NAME(COS_BASE_NAME)
#endif
#ifndef F_COS_VO_NAME
# define F_COS_VO_NAME __F_USER_NAME(COS_VO_BASE_NAME)
#endif
#ifndef F_SINCOS_NAME
# define F_SINCOS_NAME __F_SYSTEM_NAME(SINCOS_BASE_NAME)
#endif
#ifndef F_SINCOS_VO_NAME
# define F_SINCOS_VO_NAME __F_USER_NAME(SINCOS_VO_BASE_NAME)
#endif
#ifndef F_SIND_NAME
# define F_SIND_NAME __F_SYSTEM_NAME(SIND_BASE_NAME)
#endif
#ifndef F_COSD_NAME
# define F_COSD_NAME __F_SYSTEM_NAME(COSD_BASE_NAME)
#endif
#ifndef F_SINCOSD_NAME
# define F_SINCOSD_NAME __F_SYSTEM_NAME(SINCOSD_BASE_NAME)
#endif
#ifndef F_SINH_NAME
# define F_SINH_NAME __F_SYSTEM_NAME(SINH_BASE_NAME)
#endif
#ifndef F_COSH_NAME
# define F_COSH_NAME __F_SYSTEM_NAME(COSH_BASE_NAME)
#endif
#ifndef F_SQRT_NAME
# define F_SQRT_NAME __F_SYSTEM_NAME(SQRT_BASE_NAME)
#endif
#ifndef F_SQRT_TABLE_NAME
# define F_SQRT_TABLE_NAME __F_TABLE_NAME(SQRT_BASE_NAME)
#endif
#ifndef F_RSQRT_NAME
# define F_RSQRT_NAME __F_USER_NAME(RSQRT_BASE_NAME)
#endif
#ifndef F_RSQRT_TABLE_NAME
# define F_RSQRT_TABLE_NAME __F_TABLE_NAME(RSQRT_BASE_NAME)
#endif
#ifndef F_CBRT_NAME
# define F_CBRT_NAME __F_SYSTEM_NAME(CBRT_BASE_NAME)
#endif
#ifndef F_CBRT_TABLE_NAME
# define F_CBRT_TABLE_NAME __F_TABLE_NAME(CBRT_BASE_NAME)
#endif
#ifndef F_TAN_NAME
# define F_TAN_NAME __F_SYSTEM_NAME(TAN_BASE_NAME)
#endif
#ifndef F_COT_NAME
# define F_COT_NAME __F_SYSTEM_NAME(COT_BASE_NAME)
#endif
#ifndef F_TANCOT_NAME
# define F_TANCOT_NAME __F_SYSTEM_NAME(TANCOT_BASE_NAME)
#endif
#ifndef F_TAND_NAME
# define F_TAND_NAME __F_SYSTEM_NAME(TAND_BASE_NAME)
#endif
#ifndef F_COTD_NAME
# define F_COTD_NAME __F_SYSTEM_NAME(COTD_BASE_NAME)
#endif
#ifndef F_TANCOTD_NAME
# define F_TANCOTD_NAME __F_SYSTEM_NAME(TANCOTD_BASE_NAME)
#endif
#ifndef F_TANH_NAME
# define F_TANH_NAME __F_SYSTEM_NAME(TANH_BASE_NAME)
#endif
#ifndef F_TRIG_CONS_NAME
# define F_TRIG_CONS_NAME __F_USER_NAME(TRIG_CONS_BASE_NAME)
#endif
#ifndef F_TRIGD_CONS_NAME
# define F_TRIGD_CONS_NAME __F_USER_NAME(TRIGD_CONS_BASE_NAME)
#endif
#ifndef F_TRIG_REDUCE_NAME
# define F_TRIG_REDUCE_NAME __F_USER_NAME(TRIG_REDUCE_BASE_NAME)
#endif
#ifndef F_TRIG_REDUCE_VO_NAME
# define F_TRIG_REDUCE_VO_NAME __F_USER_NAME(TRIG_REDUCE_VO_BASE_NAME)
#endif
#ifndef F_TRIGD_REDUCE_NAME
# define F_TRIGD_REDUCE_NAME __F_USER_NAME(TRIGD_REDUCE_BASE_NAME)
#endif
#ifndef F_TRUNC_NAME
# define F_TRUNC_NAME __F_SYSTEM_NAME(TRUNC_BASE_NAME)
#endif
#ifndef F_UNORDERED_NAME
# define F_UNORDERED_NAME __F_SYSTEM_NAME(UNORDERED_BASE_NAME)
#endif
#ifndef F_CCOS_NAME
# define F_CCOS_NAME __F_SYSTEM_NAME(CCOS_BASE_NAME)
#endif
#ifndef F_CDIV_NAME
# define F_CDIV_NAME __F_SYSTEM_NAME(CDIV_BASE_NAME)
#endif
#ifndef F_CEXP_NAME
# define F_CEXP_NAME __F_SYSTEM_NAME(CEXP_BASE_NAME)
#endif
#ifndef F_CLOG_NAME
# define F_CLOG_NAME __F_SYSTEM_NAME(CLOG_BASE_NAME)
#endif
#ifndef F_CMUL_NAME
# define F_CMUL_NAME __F_SYSTEM_NAME(CMUL_BASE_NAME)
#endif
#ifndef F_CPOW_NAME
# define F_CPOW_NAME __F_SYSTEM_NAME(CPOW_BASE_NAME)
#endif
#ifndef F_CPOWI_NAME
# define F_CPOWI_NAME __F_SYSTEM_NAME(CPOWI_BASE_NAME)
#endif
#ifndef F_CSIN_NAME
# define F_CSIN_NAME __F_SYSTEM_NAME(CSIN_BASE_NAME)
#endif
#ifndef F_CSQRT_NAME
# define F_CSQRT_NAME __F_SYSTEM_NAME(CSQRT_BASE_NAME)
#endif
#ifndef F_CACOS_NAME
# define F_CACOS_NAME __F_SYSTEM_NAME(CACOS_BASE_NAME)
#endif
#ifndef F_CASIN_NAME
# define F_CASIN_NAME __F_SYSTEM_NAME(CASIN_BASE_NAME)
#endif
#ifndef F_CATAN_NAME
# define F_CATAN_NAME __F_SYSTEM_NAME(CATAN_BASE_NAME)
#endif
#ifndef F_CTAN_NAME
# define F_CTAN_NAME __F_SYSTEM_NAME(CTAN_BASE_NAME)
#endif
#ifndef F_CCOSH_NAME
# define F_CCOSH_NAME __F_SYSTEM_NAME(CCOSH_BASE_NAME)
#endif
#ifndef F_CSINH_NAME
# define F_CSINH_NAME __F_SYSTEM_NAME(CSINH_BASE_NAME)
#endif
#ifndef F_CTANH_NAME
# define F_CTANH_NAME __F_SYSTEM_NAME(CTANH_BASE_NAME)
#endif
#ifndef F_CACOSH_NAME
# define F_CACOSH_NAME __F_SYSTEM_NAME(CACOSH_BASE_NAME)
#endif
#ifndef F_CASINH_NAME
# define F_CASINH_NAME __F_SYSTEM_NAME(CASINH_BASE_NAME)
#endif
#ifndef F_CATANH_NAME
# define F_CATANH_NAME __F_SYSTEM_NAME(CATANH_BASE_NAME)
#endif
#ifndef F_CARG_NAME
# define F_CARG_NAME __F_SYSTEM_NAME(CARG_BASE_NAME)
#endif
#ifndef F_CIMAG_NAME
# define F_CIMAG_NAME __F_SYSTEM_NAME(CIMAG_BASE_NAME)
#endif
#ifndef F_CREAL_NAME
# define F_CREAL_NAME __F_SYSTEM_NAME(CREAL_BASE_NAME)
#endif
#ifndef F_CPROJ_NAME
# define F_CPROJ_NAME __F_SYSTEM_NAME(CPROJ_BASE_NAME)
#endif
#ifndef F_CONJ_NAME
# define F_CONJ_NAME __F_SYSTEM_NAME(CONJ_BASE_NAME)
#endif
#ifndef F_NAN_NAME
# define F_NAN_NAME __F_SYSTEM_NAME(NAN_BASE_NAME)
#endif
#ifndef F_CVTAS_NAN_NAME
# define F_CVTAS_NAN_NAME \
PASTE_3(F_CVTAS_NAME_PREFIX, STRING_TO_NAN_BASE_NAME, F_CVTAS_SUFFIX)
#endif
#ifndef F_FDIM_NAME
# define F_FDIM_NAME __F_SYSTEM_NAME(FDIM_BASE_NAME)
#endif
#ifndef F_FMAX_NAME
# define F_FMAX_NAME __F_SYSTEM_NAME(FMAX_BASE_NAME)
#endif
#ifndef F_FMIN_NAME
# define F_FMIN_NAME __F_SYSTEM_NAME(FMIN_BASE_NAME)
#endif
#ifndef F_FMA_NAME
# define F_FMA_NAME __F_SYSTEM_NAME(FMA_BASE_NAME)
#endif
#ifndef F_SIGNIFICAND_NAME
# define F_SIGNIFICAND_NAME __F_SYSTEM_NAME(SIGNIFICAND_BASE_NAME)
#endif
#ifndef F_POW_I_NAME
# define F_POW_I_NAME __F_SYSTEM_NAME(POW_I_BASE_NAME)
#endif
#ifndef F_POW_I_Z_NAME
# define F_POW_I_Z_NAME __F_SYSTEM_NAME(POW_I_Z_BASE_NAME)
#endif
#ifndef F_POW_I_E_NAME
# define F_POW_I_E_NAME __F_USER_NAME(POW_I_E_BASE_NAME)
#endif
#ifndef F_POW_I_II_NAME
# define F_POW_I_II_NAME __SYSTEM_NAME(POW_I_II_BASE_NAME)
#endif
#ifndef F_POW_E_I_II_NAME
# define F_POW_E_I_II_NAME __USER_NAME(POW_E_I_II_BASE_NAME)
#endif
#ifndef F_SINHCOSH_NAME
# define F_SINHCOSH_NAME __F_SYSTEM_NAME(SINHCOSH_BASE_NAME)
#endif
#ifndef F_MUL_NAME
# define F_MUL_NAME __F_SYSTEM_NAME(MUL_BASE_NAME)
#endif
#ifndef F_DIV_NAME
# define F_DIV_NAME __F_SYSTEM_NAME(DIV_BASE_NAME)
#endif
#ifndef F_ADD_NAME
# define F_ADD_NAME __F_SYSTEM_NAME(ADD_BASE_NAME)
#endif
#ifndef F_SUB_NAME
# define F_SUB_NAME __F_SYSTEM_NAME(SUB_BASE_NAME )
#endif
#ifndef F_NEG_NAME
# define F_NEG_NAME __F_SYSTEM_NAME(NEG_BASE_NAME)
#endif
#ifndef F_ITOF_NAME
# define F_ITOF_NAME __F_SYSTEM_NAME(ITOF_BASE_NAME)
#endif
#ifndef F_CMP_NAME
# define F_CMP_NAME __F_SYSTEM_NAME(CMP_BASE_NAME)
#endif
/*
** Default definitions for the fast entry points.
*/
#ifndef F_FAST_ACOS_NAME
# define F_FAST_ACOS_NAME __F_SYSTEM_NAME(FAST_ACOS_BASE_NAME)
#endif
#ifndef F_FAST_ASIN_NAME
# define F_FAST_ASIN_NAME __F_SYSTEM_NAME(FAST_ASIN_BASE_NAME)
#endif
#ifndef F_FAST_ATAN_NAME
# define F_FAST_ATAN_NAME __F_SYSTEM_NAME(FAST_ATAN_BASE_NAME)
#endif
#ifndef F_FAST_EXP_NAME
# define F_FAST_EXP_NAME __F_SYSTEM_NAME(FAST_EXP_BASE_NAME)
#endif
#ifndef F_FAST_EXP_TABLE_NAME
# define F_FAST_EXP_TABLE_NAME __D_TABLE_NAME(FAST_EXP_BASE_NAME)
#endif
#ifndef F_FAST_EXP_BUILD_FILE_NAME
# define F_FAST_EXP_BUILD_FILE_NAME __D_TABLE_FILE_NAME(FAST_EXP_BASE_NAME)
#endif
#ifndef F_FAST_LN_NAME
# define F_FAST_LN_NAME __F_SYSTEM_NAME(FAST_LN_BASE_NAME)
#endif
#ifndef F_FAST_LOG10_NAME
# define F_FAST_LOG10_NAME __F_SYSTEM_NAME(FAST_LOG10_BASE_NAME)
#endif
#ifndef F_FAST_SINCOS_NAME
# define F_FAST_SINCOS_NAME __F_SYSTEM_NAME(FAST_SINCOS_BASE_NAME)
#endif
#ifndef F_FAST_SIN_NAME
# define F_FAST_SIN_NAME __F_SYSTEM_NAME(FAST_SIN_BASE_NAME)
#endif
#ifndef F_FAST_COS_NAME
# define F_FAST_COS_NAME __F_SYSTEM_NAME(FAST_COS_BASE_NAME)
#endif
#ifndef F_FAST_SINCOSD_NAME
# define F_FAST_SINCOSD_NAME __F_SYSTEM_NAME(FAST_SINCOSD_BASE_NAME)
#endif
#ifndef F_FAST_SIND_NAME
# define F_FAST_SIND_NAME __F_SYSTEM_NAME(FAST_SIND_BASE_NAME)
#endif
#ifndef F_FAST_COSD_NAME
# define F_FAST_COSD_NAME __F_SYSTEM_NAME(FAST_COSD_BASE_NAME)
#endif
#ifndef F_FAST_TAN_NAME
# define F_FAST_TAN_NAME __F_SYSTEM_NAME(FAST_TAN_BASE_NAME)
#endif
#ifndef F_FAST_ATAN2_NAME
# define F_FAST_ATAN2_NAME __F_SYSTEM_NAME(FAST_ATAN2_BASE_NAME)
#endif
#ifndef F_FAST_HYPOT_NAME
# define F_FAST_HYPOT_NAME __F_SYSTEM_NAME(FAST_HYPOT_BASE_NAME)
#endif
#ifndef F_FAST_POW_NAME
# define F_FAST_POW_NAME __F_SYSTEM_NAME(FAST_POW_BASE_NAME)
#endif
#ifndef F_FAST_POW_E_NAME
# define F_FAST_POW_E_NAME __F_USER_NAME(FAST_POW_E_BASE_NAME)
#endif
#ifndef F_FAST_POW_TABLE_NAME
# define F_FAST_POW_TABLE_NAME __B_TABLE_NAME(FAST_POW_TABLE_BASE_NAME)
#endif
#ifndef F_FAST_POW_BUILD_FILE_NAME
# define F_FAST_POW_BUILD_FILE_NAME F_POW_BUILD_FILE_NAME
#endif
#ifndef F_FAST_SQRT_NAME
# define F_FAST_SQRT_NAME __F_SYSTEM_NAME(FAST_SQRT_BASE_NAME)
#endif
/*
** Backup function name definitions
*/
#ifdef B_TYPE
#ifndef B_ASIND_NAME
# define B_ASIND_NAME __B_SYSTEM_NAME(ASIND_BASE_NAME)
#endif
#ifndef B_ASINH_NAME
# define B_ASINH_NAME __B_SYSTEM_NAME(ASINH_BASE_NAME)
#endif
#ifndef B_ACOSD_NAME
# define B_ACOSD_NAME __B_SYSTEM_NAME(ACOSD_BASE_NAME)
#endif
#ifndef B_ACOSH_NAME
# define B_ACOSH_NAME __B_SYSTEM_NAME(ACOSH_BASE_NAME)
#endif
#ifndef B_ASIN_NAME
# define B_ASIN_NAME __B_SYSTEM_NAME(ASIN_BASE_NAME)
#endif
#ifndef B_ACOS_NAME
# define B_ACOS_NAME __B_SYSTEM_NAME(ACOS_BASE_NAME)
#endif
#ifndef B_ATAND_NAME
# define B_ATAND_NAME __B_SYSTEM_NAME(ATAND_BASE_NAME)
#endif
#ifndef B_ATAND2_NAME
# define B_ATAND2_NAME __B_SYSTEM_NAME(ATAND2_BASE_NAME)
#endif
#ifndef B_ATAN2_NAME
# define B_ATAN2_NAME __B_SYSTEM_NAME(ATAN2_BASE_NAME)
#endif
#ifndef B_ATAN_NAME
# define B_ATAN_NAME __B_SYSTEM_NAME(ATAN_BASE_NAME)
#endif
#ifndef B_ATANH_NAME
# define B_ATANH_NAME __B_SYSTEM_NAME(ATANH_BASE_NAME)
#endif
#ifndef B_CEIL_NAME
# define B_CEIL_NAME __B_SYSTEM_NAME(CEIL_BASE_NAME)
#endif
#ifndef B_CLASS_NAME
# define B_CLASS_NAME __B_SYSTEM_NAME(CLASS_BASE_NAME)
#endif
#ifndef B_COPYSIGN_NAME
# define B_COPYSIGN_NAME __B_SYSTEM_NAME(COPYSIGN_BASE_NAME)
#endif
#ifndef B_ERF_NAME
# define B_ERF_NAME __B_SYSTEM_NAME(ERF_BASE_NAME)
#endif
#ifndef B_ERFC_NAME
# define B_ERFC_NAME __B_SYSTEM_NAME(ERFC_BASE_NAME)
#endif
#ifndef B_ERFCX_NAME
# define B_ERFCX_NAME __B_SYSTEM_NAME(ERFCX_BASE_NAME)
#endif
#ifndef B_EXP_NAME
# define B_EXP_NAME __B_SYSTEM_NAME(EXP_BASE_NAME)
#endif
#ifndef B_EXP2_NAME
# define B_EXP2_NAME __B_SYSTEM_NAME(EXP2_BASE_NAME)
#endif
#ifndef B_EXP_SPECIAL_ENTRY_NAME
# define B_EXP_SPECIAL_ENTRY_NAME \
PASTE_2(__B_INTERNAL_NAME(EXP_BASE_NAME), _special_entry_point)
#endif
#ifndef B_EXPM1_NAME
# define B_EXPM1_NAME __B_SYSTEM_NAME(EXPM1_BASE_NAME)
#endif
#ifndef B_FABS_NAME
# define B_FABS_NAME __B_SYSTEM_NAME(FABS_BASE_NAME)
#endif
#ifndef B_FINITE_NAME
# define B_FINITE_NAME __B_SYSTEM_NAME(FINITE_BASE_NAME)
#endif
#ifndef B_FLOOR_NAME
# define B_FLOOR_NAME __B_SYSTEM_NAME(FLOOR_BASE_NAME)
#endif
#ifndef B_FREXP_NAME
# define B_FREXP_NAME __B_SYSTEM_NAME(FREXP_BASE_NAME)
#endif
#ifndef B_HYPOT_NAME
# define B_HYPOT_NAME __B_SYSTEM_NAME(HYPOT_BASE_NAME)
#endif
#ifndef B_CABS_NAME
# define B_CABS_NAME __B_SYSTEM_NAME(CABS_BASE_NAME)
#endif
#ifndef B_ISNAN_NAME
# define B_ISNAN_NAME __B_SYSTEM_NAME(ISNAN_BASE_NAME)
#endif
#ifndef B_LDEXP_NAME
# define B_LDEXP_NAME __B_SYSTEM_NAME(LDEXP_BASE_NAME)
#endif
#ifndef B_SCALB_NAME
# define B_SCALB_NAME __B_SYSTEM_NAME(SCALB_BASE_NAME)
#endif
#ifndef B_SCALBN_NAME
# define B_SCALBN_NAME __B_SYSTEM_NAME(SCALBN_BASE_NAME)
#endif
#ifndef B_SCALBLN_NAME
# define B_SCALBLN_NAME __B_SYSTEM_NAME(SCALBLN_BASE_NAME)
#endif
#ifndef B_J0_NAME
# define B_J0_NAME __B_SYSTEM_NAME(J0_BASE_NAME)
#endif
#ifndef B_J1_NAME
# define B_J1_NAME __B_SYSTEM_NAME(J1_BASE_NAME)
#endif
#ifndef B_JN_NAME
# define B_JN_NAME __B_SYSTEM_NAME(JN_BASE_NAME)
#endif
#ifndef B_Y0_NAME
# define B_Y0_NAME __B_SYSTEM_NAME(Y0_BASE_NAME)
#endif
#ifndef B_Y1_NAME
# define B_Y1_NAME __B_SYSTEM_NAME(Y1_BASE_NAME)
#endif
#ifndef B_YN_NAME
# define B_YN_NAME __B_SYSTEM_NAME(YN_BASE_NAME)
#endif
#ifndef B_GAMMA_NAME
# define B_GAMMA_NAME __B_SYSTEM_NAME(GAMMA_BASE_NAME)
#endif
#ifndef B_LGAMMA_NAME
# define B_LGAMMA_NAME __B_SYSTEM_NAME(LGAMMA_BASE_NAME)
#endif
#ifndef B_TGAMMA_NAME
# define B_TGAMMA_NAME __B_SYSTEM_NAME(TGAMMA_BASE_NAME)
#endif
#ifndef B_RT_LGAMMA_NAME
# define B_RT_LGAMMA_NAME __B_SYSTEM_NAME(RT_LGAMMA_BASE_NAME)
#endif
#ifndef B_LOG1P_NAME
# define B_LOG1P_NAME __B_SYSTEM_NAME(LOG1P_BASE_NAME)
#endif
#ifndef B_LOG2_NAME
# define B_LOG2_NAME __B_SYSTEM_NAME(LOG2_BASE_NAME)
#endif
#ifndef B_LOG10_NAME
# define B_LOG10_NAME __B_SYSTEM_NAME(LOG10_BASE_NAME)
#endif
#ifndef B_LN_NAME
# define B_LN_NAME __B_SYSTEM_NAME(LN_BASE_NAME)
#endif
#ifndef B_LOGB_NAME
# define B_LOGB_NAME __B_SYSTEM_NAME(LOGB_BASE_NAME)
#endif
#ifndef B_ILOGB_NAME
# define B_ILOGB_NAME __B_SYSTEM_NAME(ILOGB_BASE_NAME)
#endif
#ifndef B_REM_NAME
# define B_REM_NAME __B_SYSTEM_NAME(REM_BASE_NAME)
#endif
#ifndef B_REMAINDER_NAME
# define B_REMAINDER_NAME __B_SYSTEM_NAME(REMAINDER_BASE_NAME)
#endif
#ifndef B_REMQUO_NAME
# define B_REMQUO_NAME __B_SYSTEM_NAME(REMQUO_BASE_NAME)
#endif
#ifndef B_MOD_NAME
# define B_MOD_NAME __B_SYSTEM_NAME(MOD_BASE_NAME)
#endif
#ifndef B_MODF_NAME
# define B_MODF_NAME __B_SYSTEM_NAME(MODF_BASE_NAME)
#endif
#ifndef B_NINT_NAME
# define B_NINT_NAME __B_SYSTEM_NAME(NINT_BASE_NAME)
#endif
#ifndef B_NEXTAFTER_NAME
# define B_NEXTAFTER_NAME __B_SYSTEM_NAME(NEXTAFTER_BASE_NAME)
#endif
#ifndef B_NEXTTOWARD_NAME
# define B_NEXTTOWARD_NAME __B_SYSTEM_NAME(NEXTTOWARD_BASE_NAME)
#endif
#ifndef B_NXTAFTR_NAME
# define B_NXTAFTR_NAME __B_USER_NAME(NXTAFTR_BASE_NAME)
#endif
#ifndef B_POW_NAME
# define B_POW_NAME __B_SYSTEM_NAME(POW_BASE_NAME)
#endif
#ifndef B_POW_E_NAME
# define B_POW_E_NAME __B_USER_NAME(POW_E_BASE_NAME)
#endif
#ifndef B_RANDOM_NAME
# define B_RANDOM_NAME __B_SYSTEM_NAME(RANDOM_BASE_NAME)
#endif
#ifndef B_VMS_RANDOM_NAME
# define B_VMS_RANDOM_NAME __B_SYSTEM_NAME(VMS_RANDOM_BASE_NAME)
#endif
#ifndef B_RINT_NAME
# define B_RINT_NAME __B_SYSTEM_NAME(RINT_BASE_NAME)
#endif
#ifndef B_LRINT_NAME
# define B_LRINT_NAME __B_SYSTEM_NAME(LRINT_BASE_NAME)
#endif
#ifndef B_LROUND_NAME
# define B_LROUND_NAME __B_SYSTEM_NAME(LROUND_BASE_NAME)
#endif
#ifndef B_LLRINT_NAME
# define B_LLRINT_NAME __B_SYSTEM_NAME(LLRINT_BASE_NAME)
#endif
#ifndef B_LLROUND_NAME
# define B_LLROUND_NAME __B_SYSTEM_NAME(LLROUND_BASE_NAME)
#endif
#ifndef B_SIN_NAME
# define B_SIN_NAME __B_SYSTEM_NAME(SIN_BASE_NAME)
#endif
#ifndef B_SIN_VO_NAME
# define B_SIN_VO_NAME __B_SYSTEM_NAME(SIN_VO_BASE_NAME)
#endif
#ifndef B_COS_NAME
# define B_COS_NAME __B_SYSTEM_NAME(COS_BASE_NAME)
#endif
#ifndef B_COS_VO_NAME
# define B_COS_VO_NAME __B_SYSTEM_NAME(COS_VO_BASE_NAME)
#endif
#ifndef B_SINCOS_NAME
# define B_SINCOS_NAME __B_SYSTEM_NAME(SINCOS_BASE_NAME)
#endif
#ifndef B_SINCOS_VO_NAME
# define B_SINCOS_VO_NAME __B_SYSTEM_NAME(SINCOS_VO_BASE_NAME)
#endif
#ifndef B_SIND_NAME
# define B_SIND_NAME __B_SYSTEM_NAME(SIND_BASE_NAME)
#endif
#ifndef B_COSD_NAME
# define B_COSD_NAME __B_SYSTEM_NAME(COSD_BASE_NAME)
#endif
#ifndef B_SINCOSD_NAME
# define B_SINCOSD_NAME __B_SYSTEM_NAME(SINCOSD_BASE_NAME)
#endif
#ifndef B_SINH_NAME
# define B_SINH_NAME __B_SYSTEM_NAME(SINH_BASE_NAME)
#endif
#ifndef B_COSH_NAME
# define B_COSH_NAME __B_SYSTEM_NAME(COSH_BASE_NAME)
#endif
#ifndef B_SQRT_NAME
# define B_SQRT_NAME __B_SYSTEM_NAME(SQRT_BASE_NAME)
#endif
#ifndef B_SQRT_TABLE_NAME
# define B_SQRT_TABLE_NAME __B_TABLE_NAME(SQRT_BASE_NAME)
#endif
#ifndef B_RSQRT_NAME
# define B_RSQRT_NAME __B_USER_NAME(RSQRT_BASE_NAME)
#endif
#ifndef B_RSQRT_TABLE_NAME
# define B_RSQRT_TABLE_NAME __B_TABLE_NAME(RSQRT_BASE_NAME)
#endif
#ifndef B_CBRT_NAME
# define B_CBRT_NAME __B_SYSTEM_NAME(CBRT_BASE_NAME)
#endif
#ifndef B_CBRT_TABLE_NAME
# define B_CBRT_TABLE_NAME __B_TABLE_NAME(CBRT_BASE_NAME)
#endif
#ifndef B_TAN_NAME
# define B_TAN_NAME __B_SYSTEM_NAME(TAN_BASE_NAME)
#endif
#ifndef B_COT_NAME
# define B_COT_NAME __B_SYSTEM_NAME(COT_BASE_NAME)
#endif
#ifndef B_TANCOT_NAME
# define B_TANCOT_NAME __B_SYSTEM_NAME(TANCOT_BASE_NAME)
#endif
#ifndef B_TAND_NAME
# define B_TAND_NAME __B_SYSTEM_NAME(TAND_BASE_NAME)
#endif
#ifndef B_COTD_NAME
# define B_COTD_NAME __B_SYSTEM_NAME(COTD_BASE_NAME)
#endif
#ifndef B_TANCOTD_NAME
# define B_TANCOTD_NAME __B_SYSTEM_NAME(TANCOTD_BASE_NAME)
#endif
#ifndef B_TANH_NAME
# define B_TANH_NAME __B_SYSTEM_NAME(TANH_BASE_NAME)
#endif
#ifndef B_TRIG_CONS_NAME
# define B_TRIG_CONS_NAME __B_USER_NAME(TRIG_CONS_BASE_NAME)
#endif
#ifndef B_TRIGD_CONS_NAME
# define B_TRIGD_CONS_NAME __B_USER_NAME(TRIGD_CONS_BASE_NAME)
#endif
#ifndef B_TRIG_REDUCE_NAME
# define B_TRIG_REDUCE_NAME __B_USER_NAME(TRIG_REDUCE_BASE_NAME)
#endif
#ifndef B_TRIG_REDUCE_VO_NAME
# define B_TRIG_REDUCE_VO_NAME __B_USER_NAME(TRIG_REDUCE_VO_BASE_NAME)
#endif
#ifndef B_TRIGD_REDUCE_NAME
# define B_TRIGD_REDUCE_NAME __B_USER_NAME(TRIGD_REDUCE_BASE_NAME)
#endif
#ifndef B_TRUNC_NAME
# define B_TRUNC_NAME __B_SYSTEM_NAME(TRUNC_BASE_NAME)
#endif
#ifndef B_UNORDERED_NAME
# define B_UNORDERED_NAME __B_SYSTEM_NAME(UNORDERED_BASE_NAME)
#endif
#ifndef B_CCOS_NAME
# define B_CCOS_NAME __B_SYSTEM_NAME(CCOS_BASE_NAME)
#endif
#ifndef B_CDIV_NAME
# define B_CDIV_NAME __B_SYSTEM_NAME(CDIV_BASE_NAME)
#endif
#ifndef B_CEXP_NAME
# define B_CEXP_NAME __B_SYSTEM_NAME(CEXP_BASE_NAME)
#endif
#ifndef B_CLOG_NAME
# define B_CLOG_NAME __B_SYSTEM_NAME(CLOG_BASE_NAME)
#endif
#ifndef B_CMUL_NAME
# define B_CMUL_NAME __B_SYSTEM_NAME(CMUL_BASE_NAME)
#endif
#ifndef B_CPOW_NAME
# define B_CPOW_NAME __B_SYSTEM_NAME(CPOW_BASE_NAME)
#endif
#ifndef B_CPOWI_NAME
# define B_CPOWI_NAME __B_SYSTEM_NAME(CPOWI_BASE_NAME)
#endif
#ifndef B_CSIN_NAME
# define B_CSIN_NAME __B_SYSTEM_NAME(CSIN_BASE_NAME)
#endif
#ifndef B_CSQRT_NAME
# define B_CSQRT_NAME __B_SYSTEM_NAME(CSQRT_BASE_NAME)
#endif
#ifndef B_CACOS_NAME
# define B_CACOS_NAME __B_SYSTEM_NAME(CACOS_BASE_NAME)
#endif
#ifndef B_CASIN_NAME
# define B_CASIN_NAME __B_SYSTEM_NAME(CASIN_BASE_NAME)
#endif
#ifndef B_CATAN_NAME
# define B_CATAN_NAME __B_SYSTEM_NAME(CATAN_BASE_NAME)
#endif
#ifndef B_CTAN_NAME
# define B_CTAN_NAME __B_SYSTEM_NAME(CTAN_BASE_NAME)
#endif
#ifndef B_CCOSH_NAME
# define B_CCOSH_NAME __B_SYSTEM_NAME(CCOSH_BASE_NAME)
#endif
#ifndef B_CSINH_NAME
# define B_CSINH_NAME __B_SYSTEM_NAME(CSINH_BASE_NAME)
#endif
#ifndef B_CTANH_NAME
# define B_CTANH_NAME __B_SYSTEM_NAME(CTANH_BASE_NAME)
#endif
#ifndef B_CACOSH_NAME
# define B_CACOSH_NAME __B_SYSTEM_NAME(CACOSH_BASE_NAME)
#endif
#ifndef B_CASINH_NAME
# define B_CASINH_NAME __B_SYSTEM_NAME(CASINH_BASE_NAME)
#endif
#ifndef B_CATANH_NAME
# define B_CATANH_NAME __B_SYSTEM_NAME(CATANH_BASE_NAME)
#endif
#ifndef B_CARG_NAME
# define B_CARG_NAME __B_SYSTEM_NAME(CARG_BASE_NAME)
#endif
#ifndef B_CIMAG_NAME
# define B_CIMAG_NAME __B_SYSTEM_NAME(CIMAG_BASE_NAME)
#endif
#ifndef B_CREAL_NAME
# define B_CREAL_NAME __B_SYSTEM_NAME(CREAL_BASE_NAME)
#endif
#ifndef B_CPROJ_NAME
# define B_CPROJ_NAME __B_SYSTEM_NAME(CPROJ_BASE_NAME)
#endif
#ifndef B_CONJ_NAME
# define B_CONJ_NAME __B_SYSTEM_NAME(CONJ_BASE_NAME)
#endif
#ifndef B_NAN_NAME
# define B_NAN_NAME __B_SYSTEM_NAME(NAN_BASE_NAME)
#endif
#ifndef B_FDIM_NAME
# define B_FDIM_NAME __B_SYSTEM_NAME(FDIM_BASE_NAME)
#endif
#ifndef B_FMAX_NAME
# define B_FMAX_NAME __B_SYSTEM_NAME(FMAX_BASE_NAME)
#endif
#ifndef B_FMIN_NAME
# define B_FMIN_NAME __B_SYSTEM_NAME(FMIN_BASE_NAME)
#endif
#ifndef B_SIGNIFICAND_NAME
# define B_SIGNIFICAND_NAME __B_SYSTEM_NAME(SIGNIFICAND_BASE_NAME)
#endif
#ifndef B_FMA_NAME
# define B_FMA_NAME __B_SYSTEM_NAME(FMA_BASE_NAME)
#endif
#ifndef B_POW_I_NAME
# define B_POW_I_NAME __B_SYSTEM_NAME(POW_I_BASE_NAME)
#endif
#ifndef B_POW_I_II_NAME
# define B_POW_I_II_NAME __B_SYSTEM_NAME(POW_I_II_BASE_NAME)
#endif
#ifndef B_SINHCOSH_NAME
# define B_SINHCOSH_NAME __B_SYSTEM_NAME(SINHCOSH_BASE_NAME)
#endif
#ifndef B_MUL_NAME
# define B_MUL_NAME __B_SYSTEM_NAME(MUL_BASE_NAME)
#endif
#ifndef B_DIV_NAME
# define B_DIV_NAME __B_SYSTEM_NAME(DIV_BASE_NAME)
#endif
#ifndef B_ADD_NAME
# define B_ADD_NAME __B_SYSTEM_NAME(ADD_BASE_NAME)
#endif
#ifndef B_SUB_NAME
# define B_SUB_NAME __B_SYSTEM_NAME(SUB_BASE_NAME )
#endif
#ifndef B_NEG_NAME
# define B_NEG_NAME __B_SYSTEM_NAME(NEG_BASE_NAME)
#endif
#ifndef B_ITOF_NAME
# define B_ITOF_NAME __B_SYSTEM_NAME(ITOF_BASE_NAME)
#endif
#ifndef B_CMP_NAME
# define B_CMP_NAME __B_SYSTEM_NAME(CMP_BASE_NAME)
#endif
/*
** Default definitions for the fast backup entry points.
*/
#ifndef B_FAST_ACOS_NAME
# define B_FAST_ACOS_NAME __B_SYSTEM_NAME(FAST_ACOS_BASE_NAME)
#endif
#ifndef B_FAST_ASIN_NAME
# define B_FAST_ASIN_NAME __B_SYSTEM_NAME(FAST_ASIN_BASE_NAME)
#endif
#ifndef B_FAST_ATAN_NAME
# define B_FAST_ATAN_NAME __B_SYSTEM_NAME(FAST_ATAN_BASE_NAME)
#endif
#ifndef B_FAST_EXP_NAME
# define B_FAST_EXP_NAME __B_SYSTEM_NAME(FAST_EXP_BASE_NAME)
#endif
#ifndef B_FAST_LN_NAME
# define B_FAST_LN_NAME __B_SYSTEM_NAME(FAST_LN_BASE_NAME)
#endif
#ifndef B_FAST_LOG10_NAME
# define B_FAST_LOG10_NAME __B_SYSTEM_NAME(FAST_LOG10_BASE_NAME)
#endif
#ifndef B_FAST_SINCOS_NAME
# define B_FAST_SINCOS_NAME __B_SYSTEM_NAME(FAST_SINCOS_BASE_NAME)
#endif
#ifndef B_FAST_SIN_NAME
# define B_FAST_SIN_NAME __B_SYSTEM_NAME(FAST_SIN_BASE_NAME)
#endif
#ifndef B_FAST_COS_NAME
# define B_FAST_COS_NAME __B_SYSTEM_NAME(FAST_COS_BASE_NAME)
#endif
#ifndef B_FAST_SINCOSD_NAME
# define B_FAST_SINCOSD_NAME __B_SYSTEM_NAME(FAST_SINCOSD_BASE_NAME)
#endif
#ifndef B_FAST_SIND_NAME
# define B_FAST_SIND_NAME __B_SYSTEM_NAME(FAST_SIND_BASE_NAME)
#endif
#ifndef B_FAST_COSD_NAME
# define B_FAST_COSD_NAME __B_SYSTEM_NAME(FAST_COSD_BASE_NAME)
#endif
#ifndef B_FAST_TAN_NAME
# define B_FAST_TAN_NAME __B_SYSTEM_NAME(FAST_TAN_BASE_NAME)
#endif
#ifndef B_FAST_ATAN2_NAME
# define B_FAST_ATAN2_NAME __B_SYSTEM_NAME(FAST_ATAN2_BASE_NAME)
#endif
#ifndef B_FAST_HYPOT_NAME
# define B_FAST_HYPOT_NAME __B_SYSTEM_NAME(FAST_HYPOT_BASE_NAME)
#endif
#ifndef B_FAST_POW_NAME
# define B_FAST_POW_NAME __B_SYSTEM_NAME(FAST_POW_BASE_NAME)
#endif
#ifndef B_FAST_POW_E_NAME
# define B_FAST_POW_E_NAME __B_USER_NAME(FAST_POW_E_BASE_NAME)
#endif
#ifndef B_FAST_SQRT_NAME
# define B_FAST_SQRT_NAME __B_SYSTEM_NAME(FAST_SQRT_BASE_NAME)
#endif
#endif /* B_TYPE */
/*
** Special names for 128 bits.
*/
#ifndef D_SQRT_TABLE_NAME
# define D_SQRT_TABLE_NAME __D_TABLE_NAME(SQRT_BASE_NAME)
#endif
#ifndef D_RSQRT_TABLE_NAME
# define D_RSQRT_TABLE_NAME __D_TABLE_NAME(RSQRT_BASE_NAME)
#endif
/*
** Default names for include files which need to be globally visible within
** the DPML.
*/
#ifndef F_TRIG_CONS_BUILD_FILE_NAME
# define F_TRIG_CONS_BUILD_FILE_NAME __BUILD_FILE_NAME_C(TRIG_CONS_BASE_NAME)
#endif
#ifndef F_TRIGD_CONS_BUILD_FILE_NAME
# define F_TRIGD_CONS_BUILD_FILE_NAME __BUILD_FILE_NAME_C(TRIGD_CONS_BASE_NAME)
#endif
#ifndef F_SINCOS_BUILD_FILE_NAME
# define F_SINCOS_BUILD_FILE_NAME __BUILD_FILE_NAME_C(SINCOS_BASE_NAME)
#endif
#ifndef F_TANCOT_BUILD_FILE_NAME
# define F_TANCOT_BUILD_FILE_NAME __F_TABLE_FILE_NAME(TANCOT_BASE_NAME)
#endif
#ifndef FOUR_OVER_PI_TABLE_NAME
# define FOUR_OVER_PI_TABLE_NAME __TABLE_NAME(four_over_pi)
#endif
#ifndef FOUR_OVER_PI_BUILD_FILE_NAME
# define FOUR_OVER_PI_BUILD_FILE_NAME \
ADD_EXTENSION(ADD_BUILD_PREFIX(four_over_pi),c)
#endif
#ifndef POW_ANSI_C_ERROR_BUILD_FILE_NAME
# define POW_ANSI_C_ERROR_BUILD_FILE_NAME \
ADD_EXTENSION(ADD_BUILD_PREFIX(pow_ansi_c_error),c)
#endif
#ifndef POW_FORTRAN_ERROR_BUILD_FILE_NAME
# define POW_FORTRAN_ERROR_BUILD_FILE_NAME \
ADD_EXTENSION(ADD_BUILD_PREFIX(pow_fortran_error),c)
#endif
#ifndef POW_ANSI_C_ERROR_TABLE_NAME
# define POW_ANSI_C_ERROR_TABLE_NAME __TABLE_NAME(pow_ansi_c_error)
#endif
#ifndef POW_FORTRAN_ERROR_TABLE_NAME
# define POW_FORTRAN_ERROR_TABLE_NAME __TABLE_NAME(pow_fortran_error)
#endif
/*
** Establish default prefixes, suffixes and file extensions.
*/
#ifndef F_NAME_PREFIX
# define F_NAME_PREFIX DPML_NULL_MACRO_TOKEN
#endif
#ifndef BUILD_PREFIX
# define BUILD_PREFIX dpml_
#endif
#ifndef USER_PREFIX
# define USER_PREFIX F_NAME_PREFIX
#endif
#ifndef TABLE_PREFIX
# define TABLE_PREFIX USER_PREFIX
#endif
#ifndef INTERNAL_PREFIX
# define INTERNAL_PREFIX dpml_
#endif
#ifndef __F_SUFFIX
# define __F_SUFFIX PASTE_2(_, F_CHAR)
#endif
#if !defined(F_CVTAS_SUFFIX)
# define F_CVTAS_SUFFIX __F_SUFFIX
#endif
#ifndef F_NAME_SUFFIX
# if SINGLE_PRECISION
# define F_NAME_SUFFIX f
# elif QUAD_PRECISION
# define F_NAME_SUFFIX l
# else
# define F_NAME_SUFFIX DPML_NULL_MACRO_TOKEN
# endif
#endif
#ifndef BUILD_SUFFIX
# define BUILD_SUFFIX __F_SUFFIX
#endif
#ifndef D_BUILD_SUFFIX
# define D_BUILD_SUFFIX __D_SUFFIX
#endif
#ifndef TABLE_SUFFIX
# if (__F_SUFFIX == DPML_NULL_MACRO_TOKEN)
# define TABLE_SUFFIX _table
# else
# define TABLE_SUFFIX PASTE_2(__F_SUFFIX, _table)
# endif
#endif
#ifndef F_TABLE_SUFFIX
# if (__F_SUFFIX == DPML_NULL_MACRO_TOKEN)
# define F_TABLE_SUFFIX _table
# else
# define F_TABLE_SUFFIX PASTE_2(__F_SUFFIX, _table)
# endif
#endif
#ifndef BUILD_FILE_EXTENSION
# if defined(MAKE_COMMON)
# define BUILD_FILE_EXTENSION c
# else
# define BUILD_FILE_EXTENSION h
# endif
#endif
#ifdef B_TYPE
#ifndef __B_SUFFIX
# define __B_SUFFIX PASTE_2(_, B_CHAR)
#endif
#ifndef B_NAME_SUFFIX
# if QUAD_PRECISION
# define B_NAME_SUFFIX Q_CHAR
# else
# define B_NAME_SUFFIX DPML_NULL_MACRO_TOKEN
# endif
#endif
#ifndef B_TABLE_SUFFIX
# if (__B_SUFFIX == DPML_NULL_MACRO_TOKEN)
# define B_TABLE_SUFFIX _table
# else
# define B_TABLE_SUFFIX PASTE_2(__B_SUFFIX, _table)
# endif
#endif
#endif /* B_TYPE */
/*
** Macros for D tables (128 bits).
*/
#ifndef __D_SUFFIX
# define __D_SUFFIX PASTE_2(_, D_CHAR)
#endif
#ifndef D_TABLE_SUFFIX
# if (__D_SUFFIX == DPML_NULL_MACRO_TOKEN)
# define D_TABLE_SUFFIX _table
# else
# define D_TABLE_SUFFIX PASTE_2(__D_SUFFIX, _table)
# endif
#endif
/*
** Macros for constructing file names.
*/
#define ADD_EXTENSION(filename,ext) filename.ext
/*
** The following code is designed to test for "null" macros before choosing
** an appropriate PASTE macro. The ANSI C standard does not define how macros
** should behave when given null arguments and some compilers signal errors
** under these conditions (e.g. at the time of this writing, HP's ANSI C
** compiler under HP/UX).
**
** First define macro for adding prefixes
*/
#if (F_NAME_PREFIX == DPML_NULL_MACRO_TOKEN)
# define __SYSTEM_NAME(base) base
#else
# define __SYSTEM_NAME(base) PASTE_2(F_NAME_PREFIX, base)
#endif
#if (USER_PREFIX == DPML_NULL_MACRO_TOKEN)
# define __USER_NAME(base) base
#else
# define __USER_NAME(base) PASTE_2(USER_PREFIX, base)
#endif
#if (TABLE_PREFIX == DPML_NULL_MACRO_TOKEN)
# define __TABLE_NAME(base) base
#else
# define __TABLE_NAME(base) PASTE_2(TABLE_PREFIX, base)
#endif
#if (INTERNAL_PREFIX == DPML_NULL_MACRO_TOKEN)
# define __INTERNAL_NAME(base) base
#else
# define __INTERNAL_NAME(base) PASTE_2(INTERNAL_PREFIX, base)
#endif
#if (BUILD_PREFIX == DPML_NULL_MACRO_TOKEN)
# define ADD_BUILD_PREFIX(base) base
#else
# define ADD_BUILD_PREFIX(base) PASTE_2(BUILD_PREFIX, base)
#endif
/*
** Define macros for adding suffixes
*/
#if (F_NAME_SUFFIX == DPML_NULL_MACRO_TOKEN)
# define ADD_F_SUFFIX(base) base
#else
# define ADD_F_SUFFIX(base) PASTE_2(base, F_NAME_SUFFIX)
#endif
#if (B_NAME_SUFFIX == DPML_NULL_MACRO_TOKEN)
# define ADD_B_SUFFIX(base) base
#else
# define ADD_B_SUFFIX(base) PASTE_2(base, B_NAME_SUFFIX)
#endif
#if (D_NAME_SUFFIX == DPML_NULL_MACRO_TOKEN)
# define ADD_D_SUFFIX(base) base
#else
# define ADD_D_SUFFIX(base) PASTE_2(base, D_NAME_SUFFIX)
#endif
#if (BUILD_SUFFIX == DPML_NULL_MACRO_TOKEN)
# define __BUILD_NAME(base) ADD_BUILD_PREFIX(base)
#else
# define __BUILD_NAME(base) PASTE_2(ADD_BUILD_PREFIX(base), BUILD_SUFFIX)
#endif
#define __F_USER_NAME(base) ADD_F_SUFFIX(__USER_NAME(base))
#define __F_INTERNAL_NAME(base) ADD_F_SUFFIX(__INTERNAL_NAME(base))
#define __F_SYSTEM_NAME(base) ADD_F_SUFFIX(__SYSTEM_NAME(base))
#define __F_TABLE_NAME(base) PASTE_2(__TABLE_NAME(base), TABLE_SUFFIX)
#define __F_TABLE_FILE_ROOT(base) PASTE_2(ADD_BUILD_PREFIX(base),F_TABLE_SUFFIX)
#define __F_TABLE_FILE_NAME(base) ADD_EXTENSION(__F_TABLE_FILE_ROOT(base),BUILD_FILE_EXTENSION)
#define __B_USER_NAME(base) ADD_B_SUFFIX(__USER_NAME(base))
#define __B_INTERNAL_NAME(base) ADD_B_SUFFIX(__INTERNAL_NAME(base))
#define __B_SYSTEM_NAME(base) ADD_B_SUFFIX(__SYSTEM_NAME(base))
#define __B_TABLE_NAME(base) PASTE_2(__TABLE_NAME(base), B_TABLE_SUFFIX)
#define __B_TABLE_FILE_ROOT(base) PASTE_2(ADD_BUILD_PREFIX(base),B_TABLE_SUFFIX)
#define __B_TABLE_FILE_NAME(base) ADD_EXTENSION(__B_TABLE_FILE_ROOT(base),BUILD_FILE_EXTENSION)
#ifndef __FAST_NAME
# define __FAST_NAME(base) PASTE_2(F_, base)
#endif
#define __D_TABLE_NAME(base) PASTE_2(__TABLE_NAME(base), D_TABLE_SUFFIX)
#define __D_BUILD_FILE_NAME(base) ADD_EXTENSION(__D_BUILD_NAME(base),BUILD_FILE_EXTENSION)
#define __D_TABLE_FILE_ROOT(base) PASTE_2(ADD_BUILD_PREFIX(base),D_TABLE_SUFFIX)
#define __D_TABLE_FILE_NAME(base) ADD_EXTENSION(__D_TABLE_FILE_ROOT(base),BUILD_FILE_EXTENSION)
#define __BUILD_FILE_NAME(base) ADD_EXTENSION(__BUILD_NAME(base),BUILD_FILE_EXTENSION)
#define __MP_FILE_NAME(base) ADD_EXTENSION(__BUILD_NAME(base),mp)
#define __BUILD_FILE_NAME_C(base) ADD_EXTENSION(__BUILD_NAME(base),c)
#define __BUILD_FILE_NAME_H(base) ADD_EXTENSION(__BUILD_NAME(base),h)
/*
** Macros defining "generic" file names.
*/
#if !defined(TABLE_NAME) && !DONT_DEFAULT_TABLE_NAME
# define TABLE_NAME __F_TABLE_NAME(BASE_NAME)
#endif
#ifndef BUILD_NAME
# define BUILD_NAME __BUILD_NAME(BASE_NAME)
#endif
#ifndef BUILD_FILE_NAME
# define BUILD_FILE_NAME __BUILD_FILE_NAME(BASE_NAME)
#endif
#ifndef TMP_FILE
# define TMP_FILE ADD_EXTENSION(BUILD_FILE_NAME,tmp)
#endif
#ifndef MP_FILE_NAME
# define MP_FILE_NAME __MP_FILE_NAME(BASE_NAME)
#endif
#endif /* DPML_NAMES_H */
|