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
|
/*
File: fp.h
Contains: FPCE Floating-Point Definitions and Declarations.
Version: QuickTime 7.3
Copyright: (c) 2007 (c) 1987-2001 by Apple Computer, Inc., all rights reserved.
Bugs?: For bug reports, consult the following page on
the World Wide Web:
http://developer.apple.com/bugreporter/
*/
#ifndef __FP__
#define __FP__
#ifndef __CONDITIONALMACROS__
#include <ConditionalMacros.h>
#endif
#ifndef __MACTYPES__
#include <MacTypes.h>
#endif
/********************************************************************************
* *
* A collection of numerical functions designed to facilitate a wide *
* range of numerical programming as required by C9X. *
* *
* The <fp.h> declares many functions in support of numerical programming. *
* It provides a superset of <math.h> and <SANE.h> functions. Some *
* functionality previously found in <SANE.h> and not in the FPCE <fp.h> *
* can be found in this <fp.h> under the heading "__NOEXTENSIONS__". *
* *
* All of these functions are IEEE 754 aware and treat exceptions, NaNs, *
* positive and negative zero and infinity consistent with the floating- *
* point standard. *
* *
********************************************************************************/
#if PRAGMA_ONCE
#pragma once
#endif
#ifdef __cplusplus
extern "C" {
#endif
#if PRAGMA_IMPORT
#pragma import on
#endif
#if PRAGMA_STRUCT_ALIGN
#pragma options align=mac68k
#elif PRAGMA_STRUCT_PACKPUSH
#pragma pack(push, 2)
#elif PRAGMA_STRUCT_PACK
#pragma pack(2)
#endif
/********************************************************************************
* *
* Efficient types *
* *
* float_t Most efficient type at least as wide as float *
* double_t Most efficient type at least as wide as double *
* *
* CPU float_t(bits) double_t(bits) *
* -------- ----------------- ----------------- *
* PowerPC float(32) double(64) *
* 68K long double(80/96) long double(80/96) *
* x86 double(64) double(64) *
* *
********************************************************************************/
#if (defined(__MWERKS__) && defined(__cmath__)) || (TARGET_RT_MAC_MACHO && defined(__MATH__))
/* these types were already defined in math.h */
#else
#if TARGET_CPU_PPC
typedef float float_t;
typedef double double_t;
#elif TARGET_CPU_68K
typedef long double float_t;
typedef long double double_t;
#elif TARGET_CPU_X86
//typedef double float_t;
typedef double double_t;
#elif TARGET_CPU_MIPS
typedef double float_t;
typedef double double_t;
#elif TARGET_CPU_ALPHA
typedef double float_t;
typedef double double_t;
#elif TARGET_CPU_SPARC
typedef double float_t;
typedef double double_t;
#else
#error unsupported CPU
#endif /* */
/********************************************************************************
* *
* Define some constants. *
* *
* HUGE_VAL IEEE 754 value of infinity. *
* INFINITY IEEE 754 value of infinity. *
* NAN A generic NaN (Not A Number). *
* DECIMAL_DIG Satisfies the constraint that the conversion from *
* double to decimal and back is the identity function. *
* *
********************************************************************************/
#if TARGET_OS_MAC
#if !TARGET_RT_MAC_MACHO
#define HUGE_VAL __inf()
#define INFINITY __inf()
#define NAN nan("255")
#endif
#else
//#define NAN sqrt(-1)
#endif
#if TARGET_CPU_PPC
#define DECIMAL_DIG 17 /* does not exist for double-double */
#elif TARGET_CPU_68K
#define DECIMAL_DIG 21
#endif
#endif /* (defined(__MWERKS__) && defined(__cmath__)) || (TARGET_RT_MAC_MACHO && defined(__MATH__)) */
#if TARGET_OS_MAC
/* MSL or math.h already defines these */
#if (!defined(__MWERKS__) || !defined(__cmath__)) && (!TARGET_RT_MAC_MACHO || !defined(__MATH__))
/********************************************************************************
* *
* Trigonometric functions *
* *
* acos result is in [0,pi]. *
* asin result is in [-pi/2,pi/2]. *
* atan result is in [-pi/2,pi/2]. *
* atan2 Computes the arc tangent of y/x in [-pi,pi] using the sign of *
* both arguments to determine the quadrant of the computed value. *
* *
********************************************************************************/
/*
* cos()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) cos(double_t x);
/*
* sin()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) sin(double_t x);
/*
* tan()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) tan(double_t x);
/*
* acos()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) acos(double_t x);
/*
* asin()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) asin(double_t x);
/*
* atan()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) atan(double_t x);
/*
* atan2()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) atan2(double_t y, double_t x);
/********************************************************************************
* *
* Hyperbolic functions *
* *
********************************************************************************/
/*
* cosh()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) cosh(double_t x);
/*
* sinh()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) sinh(double_t x);
/*
* tanh()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) tanh(double_t x);
/*
* acosh()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) acosh(double_t x);
/*
* asinh()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) asinh(double_t x);
/*
* atanh()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) atanh(double_t x);
/********************************************************************************
* *
* Exponential functions *
* *
* expm1 expm1(x) = exp(x) - 1. But, for small enough arguments, *
* expm1(x) is expected to be more accurate than exp(x) - 1. *
* frexp Breaks a floating-point number into a normalized fraction *
* and an integral power of 2. It stores the integer in the *
* object pointed by *exponent. *
* ldexp Multiplies a floating-point number by an integer power of 2. *
* log1p log1p = log(1 + x). But, for small enough arguments, *
* log1p is expected to be more accurate than log(1 + x). *
* logb Extracts the exponent of its argument, as a signed integral *
* value. A subnormal argument is treated as though it were first *
* normalized. Thus: *
* 1 <= x * 2^(-logb(x)) < 2 *
* modf Returns fractional part of x as function result and returns *
* integral part of x via iptr. Note C9X uses double not double_t. *
* scalb Computes x * 2^n efficently. This is not normally done by *
* computing 2^n explicitly. *
* *
********************************************************************************/
/*
* exp()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) exp(double_t x);
/*
* expm1()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) expm1(double_t x);
/*
* exp2()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) exp2(double_t x);
/*
* frexp()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) frexp(double_t x, int *exponent);
/*
* ldexp()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) ldexp(double_t x, int n);
/*
* log()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) log(double_t x);
/*
* log2()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) log2(double_t x);
/*
* log1p()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) log1p(double_t x);
/*
* log10()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) log10(double_t x);
/*
* logb()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) logb(double_t x);
#if !TYPE_LONGDOUBLE_IS_DOUBLE
/*
* modfl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) modfl(long double x, long double *iptrl);
#endif /* !TYPE_LONGDOUBLE_IS_DOUBLE */
/*
* modf()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) modf(double_t x, double_t *iptr);
/*
* modff()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( float ) modff(float x, float *iptrf);
/*
Note: For compatiblity scalb(x,n) has n of type
int on Mac OS X
long on Mac OS
*/
typedef long _scalb_n_type;
/*
* scalb()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) scalb(double_t x, _scalb_n_type n);
/********************************************************************************
* *
* Power and absolute value functions *
* *
* hypot Computes the square root of the sum of the squares of its *
* arguments, without undue overflow or underflow. *
* pow Returns x raised to the power of y. Result is more accurate *
* than using exp(log(x)*y). *
* *
********************************************************************************/
/*
* fabs()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) fabs(double_t x);
/*
* hypot()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) hypot(double_t x, double_t y);
/*
* pow()
*
* Availability:
* Non-Carbon CFM: in MathLib 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) pow(double_t x, double_t y);
/*
* sqrt()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) sqrt(double_t x);
/********************************************************************************
* *
* Gamma and Error functions *
* *
* erf The error function. *
* erfc Complementary error function. *
* gamma The gamma function. *
* lgamma Computes the base-e logarithm of the absolute value of *
* gamma of its argument x, for x > 0. *
* *
********************************************************************************/
/*
* erf()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) erf(double_t x);
/*
* erfc()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) erfc(double_t x);
/*
* gamma()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) gamma(double_t x);
/*
* lgamma()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) lgamma(double_t x);
/********************************************************************************
* *
* Nearest integer functions *
* *
* rint Rounds its argument to an integral value in floating point *
* format, honoring the current rounding direction. *
* *
* nearbyint Differs from rint only in that it does not raise the inexact *
* exception. It is the nearbyint function recommended by the *
* IEEE floating-point standard 854. *
* *
* rinttol Rounds its argument to the nearest long int using the current *
* rounding direction. NOTE: if the rounded value is outside *
* the range of long int, then the result is undefined. *
* *
* round Rounds the argument to the nearest integral value in floating *
* point format similar to the Fortran "anint" function. That is: *
* add half to the magnitude and chop. *
* *
* roundtol Similar to the Fortran function nint or to the Pascal round. *
* NOTE: if the rounded value is outside the range of long int, *
* then the result is undefined. *
* *
* trunc Computes the integral value, in floating format, nearest to *
* but no larger in magnitude than its argument. NOTE: on 68K *
* compilers when using -elems881, trunc must return an int *
* *
********************************************************************************/
/*
* ceil()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) ceil(double_t x);
/*
* floor()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) floor(double_t x);
/*
* rint()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) rint(double_t x);
/*
* nearbyint()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) nearbyint(double_t x);
/*
* rinttol()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( long ) rinttol(double_t x);
/*
* round()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) round(double_t x);
/*
* roundtol()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( long ) roundtol(double_t round);
/*
Note: For compatiblity trunc(x) has a return type of
int for classic 68K with FPU enabled
double_t everywhere else
*/
#if TARGET_RT_MAC_68881
typedef int _trunc_return_type;
#else
typedef double_t _trunc_return_type;
#endif /* TARGET_RT_MAC_68881 */
/*
* trunc()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( _trunc_return_type ) trunc(double_t x);
/********************************************************************************
* *
* Remainder functions *
* *
* remainder IEEE 754 floating point standard for remainder. *
* remquo SANE remainder. It stores into 'quotient' the 7 low-order *
* bits of the integer quotient x/y, such that: *
* -127 <= quotient <= 127. *
* *
********************************************************************************/
/*
* fmod()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) fmod(double_t x, double_t y);
/*
* remainder()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) remainder(double_t x, double_t y);
/*
* remquo()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) remquo(double_t x, double_t y, int *quo);
/********************************************************************************
* *
* Auxiliary functions *
* *
* copysign Produces a value with the magnitude of its first argument *
* and sign of its second argument. NOTE: the order of the *
* arguments matches the recommendation of the IEEE 754 *
* floating point standard, which is opposite from the SANE *
* copysign function. *
* *
* nan The call 'nan("n-char-sequence")' returns a quiet NaN *
* with content indicated through tagp in the selected *
* data type format. *
* *
* nextafter Computes the next representable value after 'x' in the *
* direction of 'y'. if x == y, then y is returned. *
* *
********************************************************************************/
/*
* copysign()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) copysign(double_t x, double_t y);
/*
* nan()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double ) nan(const char * tagp);
/*
* nanf()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( float ) nanf(const char * tagp);
/*
* nanl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) nanl(const char * tagp);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) nanl(const char *tagp) { return (long double) nan(tagp); }
#else
#define nanl(tagp) ((long double) nan(tagp))
#endif
#endif
/*
* nextafterd()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double ) nextafterd(double x, double y);
/*
* nextafterf()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( float ) nextafterf(float x, float y);
/*
* nextafterl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) nextafterl(long double x, long double y);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) nextafterl(long double x, long double y) { return (long double) nextafterd((double)(x),(double)(y)); }
#else
#define nextafterl(x, y) ((long double) nextafterd((double)(x),(double)(y)))
#endif
#endif
/*
* __fpclassifyd()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( long ) __fpclassifyd(double x);
/*
* __fpclassifyf()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( long ) __fpclassifyf(float x);
/*
* __fpclassify()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long ) __fpclassify(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long ) __fpclassify(long double x) { return __fpclassifyd((double)(x)); }
#else
#define __fpclassify(x) (__fpclassifyd((double)(x)))
#endif
#endif
/*
* __isnormald()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( long ) __isnormald(double x);
/*
* __isnormalf()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( long ) __isnormalf(float x);
/*
* __isnormal()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long ) __isnormal(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long ) __isnormal(long double x) { return __isnormald((double)(x)); }
#else
#define __isnormal(x) (__isnormald((double)(x)))
#endif
#endif
/*
* __isfinited()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( long ) __isfinited(double x);
/*
* __isfinitef()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( long ) __isfinitef(float x);
/*
* __isfinite()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long ) __isfinite(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long ) __isfinite(long double x) { return __isfinited((double)(x)); }
#else
#define __isfinite(x) (__isfinited((double)(x)))
#endif
#endif
/*
* __isnand()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( long ) __isnand(double x);
/*
* __isnanf()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( long ) __isnanf(float x);
/*
* __isnan()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long ) __isnan(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long ) __isnan(long double x) { return __isnand((double)(x)); }
#else
#define __isnan(x) (__isnand((double)(x)))
#endif
#endif
/*
* __signbitd()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( long ) __signbitd(double x);
/*
* __signbitf()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( long ) __signbitf(float x);
/*
* __signbit()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long ) __signbit(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long ) __signbit(long double x) { return __signbitd((double)(x)); }
#else
#define __signbit(x) (__signbitd((double)(x)))
#endif
#endif
/*
* __inf()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) __inf(void);
/********************************************************************************
* *
* Inquiry macros *
* *
* fpclassify Returns one of the FP_* values. *
* isnormal Non-zero if and only if the argument x is normalized. *
* isfinite Non-zero if and only if the argument x is finite. *
* isnan Non-zero if and only if the argument x is a NaN. *
* signbit Non-zero if and only if the sign of the argument x is *
* negative. This includes, NaNs, infinities and zeros. *
* *
********************************************************************************/
enum {
FP_SNAN = 0, /* signaling NaN */
FP_QNAN = 1, /* quiet NaN */
FP_INFINITE = 2, /* + or - infinity */
FP_ZERO = 3, /* + or - zero */
FP_NORMAL = 4, /* all normal numbers */
FP_SUBNORMAL = 5 /* denormal numbers */
};
#define fpclassify(x) ( ( sizeof ( x ) == sizeof(double) ) ? \
__fpclassifyd ( x ) : \
( sizeof ( x ) == sizeof(float) ) ? \
__fpclassifyf ( x ) : \
__fpclassify ( x ) )
#define isnormal(x) ( ( sizeof ( x ) == sizeof(double) ) ? \
__isnormald ( x ) : \
( sizeof ( x ) == sizeof(float) ) ? \
__isnormalf ( x ) : \
__isnormal ( x ) )
#define isfinite(x) ( ( sizeof ( x ) == sizeof(double) ) ? \
__isfinited ( x ) : \
( sizeof ( x ) == sizeof(float) ) ? \
__isfinitef ( x ) : \
__isfinite ( x ) )
#define isnan(x) ( ( sizeof ( x ) == sizeof(double) ) ? \
__isnand ( x ) : \
( sizeof ( x ) == sizeof(float) ) ? \
__isnanf ( x ) : \
__isnan ( x ) )
#define signbit(x) ( ( sizeof ( x ) == sizeof(double) ) ? \
__signbitd ( x ) : \
( sizeof ( x ) == sizeof(float) ) ? \
__signbitf ( x ) : \
__signbit ( x ) )
/********************************************************************************
* *
* Max, Min and Positive Difference *
* *
* fdim Determines the 'positive difference' between its arguments: *
* { x - y, if x > y }, { +0, if x <= y }. If one argument is *
* NaN, then fdim returns that NaN. if both arguments are NaNs, *
* then fdim returns the first argument. *
* *
* fmax Returns the maximum of the two arguments. Corresponds to the *
* max function in FORTRAN. NaN arguments are treated as missing *
* data. If one argument is NaN and the other is a number, then *
* the number is returned. If both are NaNs then the first *
* argument is returned. *
* *
* fmin Returns the minimum of the two arguments. Corresponds to the *
* min function in FORTRAN. NaN arguments are treated as missing *
* data. If one argument is NaN and the other is a number, then *
* the number is returned. If both are NaNs then the first *
* argument is returned. *
* *
********************************************************************************/
/*
* fdim()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) fdim(double_t x, double_t y);
/*
* fmax()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) fmax(double_t x, double_t y);
/*
* fmin()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) fmin(double_t x, double_t y);
#endif /* (defined(__MWERKS__) && defined(__cmath__)) || (TARGET_RT_MAC_MACHO && defined(__MATH__)) */
/*******************************************************************************
* Constants *
*******************************************************************************/
/*
* pi
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
extern const double_t pi;
/********************************************************************************
* *
* Non NCEG extensions *
* *
********************************************************************************/
#ifndef __NOEXTENSIONS__
/********************************************************************************
* *
* Financial functions *
* *
* compound Computes the compound interest factor "(1 + rate)^periods" *
* more accurately than the straightforward computation with *
* the Power function. This is SANE's compound function. *
* *
* annuity Computes the present value factor for an annuity *
* "(1 - (1 + rate)^(-periods)) /rate" more accurately than *
* the straightforward computation with the Power function. *
* This is SANE's annuity function. *
* *
********************************************************************************/
/*
* compound()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) compound(double_t rate, double_t periods);
/*
* annuity()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) annuity(double_t rate, double_t periods);
/********************************************************************************
* *
* Random function *
* *
* randomx A pseudorandom number generator. It uses the iteration: *
* (7^5*x)mod(2^31-1) *
* *
********************************************************************************/
/*
* randomx()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) randomx(double_t * x);
/*******************************************************************************
* Relational operator *
*******************************************************************************/
/* relational operator */
typedef short relop;
enum {
GREATERTHAN = 0,
LESSTHAN = 1,
EQUALTO = 2,
UNORDERED = 3
};
#if !defined(__MWERKS__) || !defined(__cmath__)
/*
* relation()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( relop ) relation(double_t x, double_t y);
#endif /* !defined(__MWERKS__) || !defined(__cmath__) */
/********************************************************************************
* *
* Binary to decimal conversions *
* *
* SIGDIGLEN Significant decimal digits. *
* *
* decimal A record which provides an intermediate unpacked form for *
* programmers who wish to do their own parsing of numeric input *
* or formatting of numeric output. *
* *
* decform Controls each conversion to a decimal string. The style field *
* is either FLOATDECIMAL or FIXEDDECIMAL. If FLOATDECIMAL, the *
* value of the field digits is the number of significant digits. *
* If FIXEDDECIMAL value of the field digits is the number of *
* digits to the right of the decimal point. *
* *
* num2dec Converts a double_t to a decimal record using a decform. *
* dec2num Converts a decimal record d to a double_t value. *
* dec2str Converts a decform and decimal to a string using a decform. *
* str2dec Converts a string to a decimal struct. *
* dec2d Similar to dec2num except a double is returned (68k only). *
* dec2f Similar to dec2num except a float is returned. *
* dec2s Similar to dec2num except a short is returned. *
* dec2l Similar to dec2num except a long is returned. *
* *
********************************************************************************/
#if TARGET_CPU_PPC
#define SIGDIGLEN 36
#elif TARGET_CPU_68K
#define SIGDIGLEN 20
#elif TARGET_CPU_X86
#define SIGDIGLEN 20
#endif
#define DECSTROUTLEN 80 /* max length for dec2str output */
#define FLOATDECIMAL ((char)(0))
#define FIXEDDECIMAL ((char)(1))
struct decimal {
char sgn; /* sign 0 for +, 1 for - */
char unused;
short exp; /* decimal exponent */
struct {
unsigned char length;
unsigned char text[SIGDIGLEN]; /* significant digits */
unsigned char unused;
} sig;
};
typedef struct decimal decimal;
struct decform {
char style; /* FLOATDECIMAL or FIXEDDECIMAL */
char unused;
short digits;
};
typedef struct decform decform;
/*
* num2dec()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void ) num2dec(const decform *f, double_t x, decimal *d);
/*
* dec2num()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double_t ) dec2num(const decimal * d);
/*
* dec2str()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void ) dec2str(const decform *f, const decimal *d, char *s);
/*
* str2dec()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void ) str2dec(const char *s, short *ix, decimal *d, short *vp);
#if TARGET_CPU_68K
#if CALL_NOT_IN_CARBON
/*
* dec2d()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: not available
*/
EXTERN_API_C( double ) dec2d(const decimal * d);
#endif /* CALL_NOT_IN_CARBON */
#endif /* TARGET_CPU_68K */
/*
* dec2f()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( float ) dec2f(const decimal * d);
/*
* dec2s()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( short ) dec2s(const decimal * d);
/*
* dec2l()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( long ) dec2l(const decimal * d);
/********************************************************************************
* *
* 68k-only Transfer Function Prototypes *
* *
********************************************************************************/
#if TARGET_CPU_68K
#if CALL_NOT_IN_CARBON
/*
* x96tox80()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: not available
*/
EXTERN_API_C( void ) x96tox80(const extended96 *x, extended80 *x80);
/*
* x80tox96()
*
* Availability:
* Non-Carbon CFM: not available
* CarbonLib: not available
* Mac OS X: not available
*/
EXTERN_API_C( void ) x80tox96(const extended80 *x80, extended96 *x);
#endif /* CALL_NOT_IN_CARBON */
#endif /* TARGET_CPU_68K */
#endif /* !defined(__NOEXTENSIONS__) */
/********************************************************************************
* *
* PowerPC-only Function Prototypes *
* *
********************************************************************************/
#if TARGET_CPU_PPC
#ifndef __MWERKS__ /* Metrowerks does not support double double */
/*
* cosl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) cosl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) cosl(long double x) { return (long double) cos((double)(x)); }
#else
#define cosl(x) ((long double) cos((double)(x)))
#endif
#endif
/*
* sinl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) sinl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) sinl(long double x) { return (long double) sin((double)(x)); }
#else
#define sinl(x) ((long double) sin((double)(x)))
#endif
#endif
/*
* tanl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) tanl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) tanl(long double x) { return (long double) tan((double)(x)); }
#else
#define tanl(x) ((long double) tan((double)(x)))
#endif
#endif
/*
* acosl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) acosl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) acosl(long double x) { return (long double) acos((double)(x)); }
#else
#define acosl(x) ((long double) acos((double)(x)))
#endif
#endif
/*
* asinl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) asinl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) asinl(long double x) { return (long double) asin((double)(x)); }
#else
#define asinl(x) ((long double) asin((double)(x)))
#endif
#endif
/*
* atanl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) atanl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) atanl(long double x) { return (long double) atan((double)(x)); }
#else
#define atanl(x) ((long double) atan((double)(x)))
#endif
#endif
/*
* atan2l()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) atan2l(long double y, long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) atan2l(long double y, long double x) { return (long double) atan2((double)(y), (double)(x)); }
#else
#define atan2l(y, x) ((long double) atan2((double)(y), (double)(x)))
#endif
#endif
/*
* coshl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) coshl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) coshl(long double x) { return (long double) cosh((double)(x)); }
#else
#define coshl(x) ((long double) cosh((double)(x)))
#endif
#endif
/*
* sinhl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) sinhl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) sinhl(long double x) { return (long double) sinh((double)(x)); }
#else
#define sinhl(x) ((long double) sinh((double)(x)))
#endif
#endif
/*
* tanhl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) tanhl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) tanhl(long double x) { return (long double) tanh((double)(x)); }
#else
#define tanhl(x) ((long double) tanh((double)(x)))
#endif
#endif
/*
* acoshl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) acoshl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) acoshl(long double x) { return (long double) acosh((double)(x)); }
#else
#define acoshl(x) ((long double) acosh((double)(x)))
#endif
#endif
/*
* asinhl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) asinhl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) asinhl(long double x) { return (long double) asinh((double)(x)); }
#else
#define asinhl(x) ((long double) asinh((double)(x)))
#endif
#endif
/*
* atanhl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) atanhl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) atanhl(long double x) { return (long double) atanh((double)(x)); }
#else
#define atanhl(x) ((long double) atanh((double)(x)))
#endif
#endif
/*
* expl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) expl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) expl(long double x) { return (long double) exp((double)(x)); }
#else
#define expl(x) ((long double) exp((double)(x)))
#endif
#endif
/*
* expm1l()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) expm1l(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) expm1l(long double x) { return (long double) expm1((double)(x)); }
#else
#define expm1l(x) ((long double) expm1((double)(x)))
#endif
#endif
/*
* exp2l()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) exp2l(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) exp2l(long double x) { return (long double) exp2((double)(x)); }
#else
#define exp2l(x) ((long double) exp2((double)(x)))
#endif
#endif
/*
* frexpl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) frexpl(long double x, int *exponent);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) frexpl(long double x, int *exponent) { return (long double) frexp((double)(x), (exponent)); }
#else
#define frexpl(x, exponent) ((long double) frexp((double)(x), (exponent)))
#endif
#endif
/*
* ldexpl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) ldexpl(long double x, int n);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) ldexpl(long double x, int n) { return (long double) ldexp((double)(x), (n)); }
#else
#define ldexpl(x, n) ((long double) ldexp((double)(x), (n)))
#endif
#endif
/*
* logl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) logl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) logl(long double x) { return (long double) log((double)(x)); }
#else
#define logl(x) ((long double) log((double)(x)))
#endif
#endif
/*
* log1pl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) log1pl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) log1pl(long double x) { return (long double) log1p((double)(x)); }
#else
#define log1pl(x) ((long double) log1p((double)(x)))
#endif
#endif
/*
* log10l()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) log10l(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) log10l(long double x) { return (long double) log10((double)(x)); }
#else
#define log10l(x) ((long double) log10((double)(x)))
#endif
#endif
/*
* log2l()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) log2l(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) log2l(long double x) { return (long double) log2((double)(x)); }
#else
#define log2l(x) ((long double) log2((double)(x)))
#endif
#endif
/*
* logbl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) logbl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) logbl(long double x) { return (long double) logb((double)(x)); }
#else
#define logbl(x) ((long double) logb((double)(x)))
#endif
#endif
/*
* scalbl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) scalbl(long double x, long n);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) scalbl(long double x, long n) { return (long double) scalb((double)(x), (n)); }
#else
#define scalbl(x, n) ((long double) scalb((double)(x), (n)))
#endif
#endif
/*
* fabsl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) fabsl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) fabsl(long double x) { return (long double) fabs((double)(x)); }
#else
#define fabsl(x) ((long double) fabs((double)(x)))
#endif
#endif
/*
* hypotl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) hypotl(long double x, long double y);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) hypotl(long double x, long double y) { return (long double) hypot((double)(x), (double)(y)); }
#else
#define hypotl(x, y) ((long double) hypot((double)(x), (double)(y)))
#endif
#endif
/*
* powl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) powl(long double x, long double y);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) powl(long double x, long double y) { return (long double) pow((double)(x), (double)(y)); }
#else
#define powl(x, y) ((long double) pow((double)(x), (double)(y)))
#endif
#endif
/*
* sqrtl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) sqrtl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) sqrtl(long double x) { return (long double) sqrt((double)(x)); }
#else
#define sqrtl(x) ((long double) sqrt((double)(x)))
#endif
#endif
/*
* erfl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) erfl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) erfl(long double x) { return (long double) erf((double)(x)); }
#else
#define erfl(x) ((long double) erf((double)(x)))
#endif
#endif
/*
* erfcl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) erfcl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) erfcl(long double x) { return (long double) erfc((double)(x)); }
#else
#define erfcl(x) ((long double) erfc((double)(x)))
#endif
#endif
/*
* gammal()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) gammal(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) gammal(long double x) { return (long double) gamma((double)(x)); }
#else
#define gammal(x) ((long double) gamma((double)(x)))
#endif
#endif
/*
* lgammal()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) lgammal(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) lgammal(long double x) { return (long double) lgamma((double)(x)); }
#else
#define lgammal(x) ((long double) lgamma((double)(x)))
#endif
#endif
/*
* ceill()
*
* Availability:
* Non-Carbon CFM: in MathLib 2.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) ceill(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) ceill(long double x) { return (long double) ceil((double)(x)); }
#else
#define ceill(x) ((long double) ceil((double)(x)))
#endif
#endif
/*
* floorl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) floorl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) floorl(long double x) { return (long double) floor((double)(x)); }
#else
#define floorl(x) ((long double) floor((double)(x)))
#endif
#endif
/*
* rintl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) rintl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) rintl(long double x) { return (long double) rint((double)(x)); }
#else
#define rintl(x) ((long double) rint((double)(x)))
#endif
#endif
/*
* nearbyintl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) nearbyintl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) nearbyintl(long double x) { return (long double) nearbyint((double)(x)); }
#else
#define nearbyintl(x) ((long double) nearbyint((double)(x)))
#endif
#endif
/*
* rinttoll()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long ) rinttoll(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long ) rinttoll(long double x) { return rinttol((double)(x)); }
#else
#define rinttoll(x) (rinttol((double)(x)))
#endif
#endif
/*
* roundl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) roundl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) roundl(long double x) { return (long double) round((double)(x)); }
#else
#define roundl(x) ((long double) round((double)(x)))
#endif
#endif
/*
* roundtoll()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long ) roundtoll(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long ) roundtoll(long double x) { return roundtol((double)(x)); }
#else
#define roundtoll(x) (roundtol((double)(x)))
#endif
#endif
/*
* truncl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) truncl(long double x);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) truncl(long double x) { return (long double) trunc((double)(x)); }
#else
#define truncl(x) ((long double) trunc((double)(x)))
#endif
#endif
/*
* remainderl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) remainderl(long double x, long double y);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) remainderl(long double x, long double y) { return (long double) remainder((double)(x), (double)(y)); }
#else
#define remainderl(x, y) ((long double) remainder((double)(x), (double)(y)))
#endif
#endif
/*
* remquol()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) remquol(long double x, long double y, int *quo);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) remquol(long double x, long double y, int *quo) { return (long double) remquo((double)(x), (double)(y), (quo)); }
#else
#define remquol(x, y, quo) ((long double) remquo((double)(x), (double)(y), (quo)))
#endif
#endif
/*
* copysignl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) copysignl(long double x, long double y);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) copysignl(long double x, long double y) { return (long double) copysign((double)(x), (double)(y)); }
#else
#define copysignl(x, y) ((long double) copysign((double)(x), (double)(y)))
#endif
#endif
/*
* fdiml()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) fdiml(long double x, long double y);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) fdiml(long double x, long double y) { return (long double) fdim((double)(x), (double)(y)); }
#else
#define fdiml(x, y) ((long double) fdim((double)(x), (double)(y)))
#endif
#endif
/*
* fmaxl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) fmaxl(long double x, long double y);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) fmaxl(long double x, long double y) { return (long double) fmax((double)(x), (double)(y)); }
#else
#define fmaxl(x, y) ((long double) fmax((double)(x), (double)(y)))
#endif
#endif
/*
* fminl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) fminl(long double x, long double y);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) fminl(long double x, long double y) { return (long double) fmin((double)(x), (double)(y)); }
#else
#define fminl(x, y) ((long double) fmin((double)(x), (double)(y)))
#endif
#endif
#endif /* __MWERKS__ */
#ifndef __NOEXTENSIONS__
/*
* relationl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( relop ) relationl(long double x, long double y);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(relop ) relationl(long double x, long double y) { return relation((double)(x), (double)(y)); }
#else
#define relationl(x, y) (relation((double)(x), (double)(y)))
#endif
#endif
/*
* num2decl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( void ) num2decl(const decform *f, long double x, decimal *d);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(void) num2decl(const decform *f, long double x, decimal *d) { num2dec((f), (double)(x), (d)); }
#else
#define num2decl(f, x, d) (num2dec((f), (double)(x), (d)))
#endif
#endif
/*
* dec2numl()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( long double ) dec2numl(const decimal * d);
#if TYPE_LONGDOUBLE_IS_DOUBLE
#ifdef __cplusplus
inline DEFINE_API_C(long double ) dec2numl(const decimal *d) { return (long double) dec2num(d); }
#else
#define dec2numl(d) ((long double) dec2num(d))
#endif
#endif
#endif /* !defined(__NOEXTENSIONS__) */
#endif /* TARGET_CPU_PPC */
#endif /* TARGET_OS_MAC */
#ifndef __NOEXTENSIONS__
/*
MathLib v2 has two new transfer functions: x80tod and dtox80. They can
be used to directly transform 68k 80-bit extended data types to double
and back for PowerPC based machines without using the functions
x80told or ldtox80. Double rounding may occur.
*/
/*
* x80tod()
*
* Availability:
* Non-Carbon CFM: in MathLib 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( double ) x80tod(const extended80 * x80);
/*
* dtox80()
*
* Availability:
* Non-Carbon CFM: in MathLib 2.0 and later
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: in version 10.0 and later
*/
EXTERN_API_C( void ) dtox80(const double *x, extended80 *x80);
/*
* x80told()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( void ) x80told(const extended80 *x80, long double *x);
#if TYPE_LONGDOUBLE_IS_DOUBLE && !TARGET_OS_WIN32
#ifdef __cplusplus
inline DEFINE_API_C(void) x80told(const extended80 *x80, long double *x) { *(x) = (long double) x80tod(x80); }
#else
#define x80told(x80, x) (*(x) = (long double) x80tod(x80))
#endif
#endif
/*
* ldtox80()
*
* Availability:
* Non-Carbon CFM: in MathLib 1.0 and later or as macro/inline
* CarbonLib: in CarbonLib 1.0 and later
* Mac OS X: not available
*/
EXTERN_API_C( void ) ldtox80(const long double *x, extended80 *x80);
#if TYPE_LONGDOUBLE_IS_DOUBLE && !TARGET_OS_WIN32
#ifdef __cplusplus
inline DEFINE_API_C(void) ldtox80(const long double *x, extended80 *x80) { double d = (double) *(x); dtox80(&d, (x80)); }
#else
#define ldtox80(x, x80) do { double d = (double) *(x); dtox80(&d, (x80)); } while (false)
#endif
#endif
#endif /* !defined(__NOEXTENSIONS__) */
#if PRAGMA_STRUCT_ALIGN
#pragma options align=reset
#elif PRAGMA_STRUCT_PACKPUSH
#pragma pack(pop)
#elif PRAGMA_STRUCT_PACK
#pragma pack()
#endif
#ifdef PRAGMA_IMPORT_OFF
#pragma import off
#elif PRAGMA_IMPORT
#pragma import reset
#endif
#ifdef __cplusplus
}
#endif
#endif /* __FP__ */
|