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
|
// -*- C++ -*- header wrapper.
// Copyright (C) 1997-1999 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 2, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING. If not, write to the Free
// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
// USA.
// As a special exception, you may use this file as part of a free software
// library without restriction. Specifically, if other files instantiate
// templates or use macros or inline functions from this file, or you compile
// this file and link it with other files to produce an executable, this
// file does not by itself cause the resulting executable to be covered by
// the GNU General Public License. This exception does not however
// invalidate any other reasons why the executable file might be covered by
// the GNU General Public License.
//
// ISO C++ 14882: 26.5 C library
//
#ifndef _CPP_CMATH
#define _CPP_CMATH 1
# include <bits/c++config.h>
namespace _C_legacy {
extern "C" {
# define _IN_C_LEGACY_
# pragma system_header
# include_next <math.h>
}
inline double _CPP_HUGE_VAL_capture() { return HUGE_VAL; }
#if _GLIBCPP_HAVE_BUILTIN_ACOSF
inline float _CPP_acos_capture(float __x)
{ return __builtin_acosf(__x); }
#elif _GLIBCPP_HAVE_ACOSF
inline float _CPP_acos_capture(float __x)
{ return acosf(__x); }
#else
inline float _CPP_acos_capture(float __x)
{ return acos(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_ASINF
inline float _CPP_asin_capture(float __x)
{ return __builtin_asinf(__x); }
#elif _GLIBCPP_HAVE_ASINF
inline float _CPP_asin_capture(float __x)
{ return asinf(__x); }
#else
inline float _CPP_asin_capture(float __x)
{ return asin(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_ATANF
inline float _CPP_atan_capture(float __x)
{ return __builtin_atanf(__x); }
#elif _GLIBCPP_HAVE_ATANF
inline float _CPP_atan_capture(float __x)
{ return atanf(__x); }
#else
inline float _CPP_atan_capture(float __x)
{ return atan(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_ATAN2F
inline float _CPP_atan2_capture(float __y, float __x)
{ return __builtin_atan2f(__y, __x); }
#elif _GLIBCPP_HAVE_ATAN2F
inline float _CPP_atan2_capture(float __y, float __x)
{ return atan2f(__y, __x); }
#else
inline float _CPP_atan2_capture(float __y, float __x)
{ return atan2(static_cast<double>(__y), static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_CEILF
inline float _CPP_ceil_capture(float __x)
{ return __builtin_ceilf(__x); }
#elif _GLIBCPP_HAVE_CEILF
inline float _CPP_ceil_capture(float __x)
{ return ceilf(__x); }
#else
inline float _CPP_ceil_capture(float __x)
{ return ceil(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_COSF
inline float _CPP_cos_capture(float __x)
{ return __builtin_cosf(__x); }
#elif _GLIBCPP_HAVE_COSF
inline float _CPP_cos_capture(float __x)
{ return cosf(__x); }
#else
inline float _CPP_cos_capture(float __x)
{ return cos(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_COSHF
inline float _CPP_cosh_capture(float __x)
{ return __builtin_coshf(__x); }
#elif _GLIBCPP_HAVE_COSHF
inline float _CPP_cosh_capture(float __x)
{ return coshf(__x); }
#else
inline float _CPP_cosh_capture(float __x)
{ return cosh(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_EXPF
inline float _CPP_exp_capture(float __x)
{ return __builtin_expf(__x); }
#elif _GLIBCPP_HAVE_EXPF
inline float _CPP_exp_capture(float __x)
{ return expf(__x); }
#else
inline float _CPP_exp_capture(float __x)
{ return exp(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_FABSF
inline float _CPP_fabs_capture(float __x)
{ return __builtin_fabsf(__x); }
#elif _GLIBCPP_HAVE_FABSF
inline float _CPP_fabs_capture(float __x)
{ return fabsf(__x); }
#else
inline float _CPP_fabs_capture(float __x)
{ return fabs(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_FLOORF
inline float _CPP_floor_capture(float __x)
{ return __builtin_floorf(__x); }
#elif _GLIBCPP_HAVE_FLOORF
inline float _CPP_floor_capture(float __x)
{ return floorf(__x); }
#else
inline float _CPP_floor_capture(float __x)
{ return floor(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_FMODFF
inline float _CPP_fmod_capture(float __x, float __y)
{ return __builtin_fmodf(__x, __y); }
#elif _GLIBCPP_HAVE_FMODFF
inline float _CPP_fmod_capture(float __x, float __y)
{ return fmodf(__x, __y); }
#else
inline float _CPP_fmod_capture(float __x, float __y)
{ return fmod(static_cast<double>(__x), static_cast<double>(__y)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_FREXPF
inline float _CPP_frexp_capture(float __x, int* __exp)
{ return __builtin_frexpf(__x, __exp); }
#elif _GLIBCPP_HAVE_FREXPF
inline float _CPP_frexp_capture(float __x, int* __exp)
{ return frexpf(__x, __exp); }
#else
inline float _CPP_frexp_capture(float __x, int* __exp)
{ return frexp(__x, __exp); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_LDEXPF
inline float _CPP_ldexp_capture(float __x, int __exp)
{ return __builtin_ldexpf(__x, __exp); }
#elif _GLIBCPP_HAVE_LDEXPF
inline float _CPP_ldexp_capture(float __x, int __exp)
{ return ldexpf(__x, __exp); }
#else
inline float _CPP_ldexp_capture(float __x, int __exp)
{ return ldexp(static_cast<double>(__x), __exp); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_LOGF
inline float _CPP_log_capture(float __x)
{ return __builtin_logf(__x); }
#elif _GLIBCPP_HAVE_LOGF
inline float _CPP_log_capture(float __x)
{ return logf(__x); }
#else
inline float _CPP_log_capture(float __x)
{ return log(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_LOG10F
inline float _CPP_log10_capture(float __x)
{ return __builtin_log10f(__x); }
#elif _GLIBCPP_HAVE_LOG10F
inline float _CPP_log10_capture(float __x)
{ return log10f(__x); }
#else
inline float _CPP_log10_capture(float __x)
{ return log10(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_MODFF
inline float _CPP_modf_capture(float __x, float* __iptr)
{ return __builtin_modff(__x, __iptr); }
#elif _GLIBCPP_HAVE_MODFF
inline float _CPP_modf_capture(float __x, float* __iptr)
{ return modff(__x, __iptr); }
#else
inline float _CPP_modf_capture(float __x, float* __iptr)
{
double __tmp;
double __res = _C_legacy::modf(static_cast<double>(__x), &__tmp);
*__iptr = static_cast<float> (__tmp);
return __res;
}
#endif
#if _GLIBCPP_HAVE_BUILTIN_POWF
inline float _CPP_pow_capture(float __x, float __y)
{ return __builtin_powf(__x, __y); }
#elif _GLIBCPP_HAVE_POWF
inline float _CPP_pow_capture(float __x, float __y)
{ return powf(__x, __y); }
#else
inline float _CPP_pow_capture(float __x, float __y)
{ return pow(static_cast<double>(__x), static_cast<double>(__y)); }
#endif
float pow(float, int);
#if _GLIBCPP_HAVE_BUILTIN_SINF
inline float _CPP_sin_capture(float __x)
{ return __builtin_sinf(__x); }
#elif _GLIBCPP_HAVE_SINF
inline float _CPP_sin_capture(float __x)
{ return sinf(__x); }
#else
inline float _CPP_sin_capture(float __x)
{ return sin(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_SINHF
inline float _CPP_sinh_capture(float __x)
{ return __builtin_sinhf(__x); }
#elif _GLIBCPP_HAVE_SINHF
inline float _CPP_sinh_capture(float __x)
{ return sinhf(__x); }
#else
inline float _CPP_sinh_capture(float __x)
{ return sinh(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_SQRTF
inline float _CPP_sqrt_capture(float __x)
{ return __builtin_sqrtf(__x); }
#elif _GLIBCPP_HAVE_SQRTF
inline float _CPP_sqrt_capture(float __x)
{ return sqrtf(__x); }
#else
inline float _CPP_sqrt_capture(float __x)
{ return sqrt(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_TANF
inline float _CPP_tan_capture(float __x)
{ return __builtin_tanf(__x); }
#elif _GLIBCPP_HAVE_TANF
inline float _CPP_tan_capture(float __x)
{ return tanf(__x); }
#else
inline float _CPP_tan_capture(float __x)
{ return tan(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_TANHF
inline float _CPP_tanh_capture(float __x)
{ return __builtin_tanhf(__x); }
#elif _GLIBCPP_HAVE_TANHF
inline float _CPP_tanh_capture(float __x)
{ return tanhf(__x); }
#else
inline float _CPP_tanh_capture(float __x)
{ return tanh(static_cast<double>(__x)); }
#endif
//
// double
//
#if _GLIBCPP_HAVE_BUILTIN_ACOS
inline double _CPP_acos_capture(double __x)
{ return __builtin_acos(__x); }
#else
inline double _CPP_acos_capture(double __x)
{ return acos(__x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_ASIN
inline double _CPP_asin_capture(double __x)
{ return __builtin_asin(__x); }
#else
inline double _CPP_asin_capture(double __x)
{ return asin(__x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_ATAN
inline double _CPP_atan_capture(double __x)
{ return __builtin_atan(__x); }
#else
inline double _CPP_atan_capture(double __x)
{ return atan(__x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_ATAN2
inline double _CPP_atan2_capture(double __y, double __x)
{ return __builtin_atan2(__y, __x); }
#else
inline double _CPP_atan2_capture(double __y, double __x)
{ return atan2(__y, __x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_CEIL
inline double _CPP_ceil_capture(double __x)
{ return __builtin_fceil(__x); }
#else
inline double _CPP_ceil_capture(double __x)
{ return ceil(__x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_COS
inline double _CPP_cos_capture(double __x)
{ return __builtin_cos(__x); }
#else
inline double _CPP_cos_capture(double __x)
{ return cos(__x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_COSH
inline double _CPP_cosh_capture(double __x)
{ return __builtin_cosh(__x); }
#else
inline double _CPP_cosh_capture(double __x)
{ return cosh(__x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_EXP
inline double _CPP_exp_capture(double __x)
{ return __builtin_exp(__x); }
#else
inline double _CPP_exp_capture(double __x)
{ return exp(__x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_FABS
inline double _CPP_fabs_capture(double __x)
{ return __builtin_fabs(__x); }
#else
inline double _CPP_fabs_capture(double __x)
{ return fabs(__x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_FLOOR
inline double _CPP_floor_capture(double __x)
{ return __builtin_ffloor(__x); }
#else
inline double _CPP_floor_capture(double __x)
{ return floor(__x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_FMOD
inline double _CPP_fmod_capture(double __x, double __y)
{ return __builtin_fmod(__x, __y); }
#else
inline double _CPP_fmod_capture(double __x, double __y)
{ return fmod(__x, __y); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_FREXP
inline double _CPP_frexp_capture(double __x, int* __exp)
{ return __builtin_frexp(__x, __exp); }
#else
inline double _CPP_frexp_capture(double __x, int* __exp)
{ return frexp(__x, __exp); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_LDEXP
inline double _CPP_ldexp_capture(double __x, int __exp)
{ return __builtin_ldexp(__x, __exp); }
#else
inline double _CPP_ldexp_capture(double __x, int __exp)
{ return ldexp(__x, __exp); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_LOG
inline double _CPP_log_capture(double __x)
{ return __builtin_log(__x); }
#else
inline double _CPP_log_capture(double __x)
{ return log(__x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_LOG10
inline double _CPP_log10_capture(double __x)
{ return __builtin_log10(__x); }
#else
inline double _CPP_log10_capture(double __x)
{ return log10(__x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_MODF
inline double _CPP_modf_capture(double __x, double* __iptr)
{ return __builtin_modf(__x, __iptr); }
#else
inline double _CPP_modf_capture(double __x, double* __iptr)
{ return modf(__x, __iptr); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_POW
inline double _CPP_pow_capture(double __x, double __y)
{ return __builtin_pow(__x, static_cast<double>(__y)); }
#else
inline double _CPP_pow_capture(double __x, double __y)
{ return pow(__x, __y); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_SIN
inline double _CPP_sin_capture(double __x)
{ return __builtin_sin(__x); }
#else
inline double _CPP_sin_capture(double __x)
{ return sin(__x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_SINH
inline double _CPP_sinh_capture(double __x)
{ return __builtin_sinh(__x); }
#else
inline double _CPP_sinh_capture(double __x)
{ return sinh(__x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_SQRT
inline double _CPP_sqrt_capture(double __x)
{ return __builtin_fsqrt(__x); }
#else
inline double _CPP_sqrt_capture(double __x)
{ return sqrt(__x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_TAN
inline double _CPP_tan_capture(double __x)
{ return __builtin_tan(__x); }
#else
inline double _CPP_tan_capture(double __x)
{ return tan(__x); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_TANH
inline double _CPP_tanh_capture(double __x)
{ return __builtin_tanh(__x); }
#else
inline double _CPP_tanh_capture(double __x)
{ return tanh(__x); }
#endif
//
// long double
//
#if _GLIBCPP_HAVE_BUILTIN_ACOSL
inline long double _CPP_acos_capture(long double __x)
{ return __builtin_acosl(__x); }
#elif _GLIBCPP_HAVE_ACOSL
inline long double _CPP_acos_capture(long double __x)
{ return acosl(__x); }
#else
inline long double _CPP_acos_capture(long double __x)
{ return acos(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_ASINL
inline long double _CPP_asin_capture(long double __x)
{ return __builtin_asinl(__x); }
#elif _GLIBCPP_HAVE_ASINL
inline long double _CPP_asin_capture(long double __x)
{ return asinl(__x); }
#else
inline long double _CPP_asin_capture(long double __x)
{ return asin(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_ATANL
inline long double _CPP_atan_capture(long double __x)
{ return __builtin_atanl(__x); }
#elif _GLIBCPP_HAVE_ATANL
inline long double _CPP_atan_capture(long double __x)
{ return atanl(__x); }
#else
inline long double _CPP_atan_capture(long double __x)
{ return atan(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_ATAN2L
inline long double _CPP_atan2_capture(long double __y, long double __x)
{ return __builtin_atan2l(__y, __x); }
#elif _GLIBCPP_HAVE_ATAN2L
inline long double _CPP_atan2_capture(long double __y, long double __x)
{ return atan2l(__y, __x); }
#else
inline long double _CPP_atan2_capture(long double __y, long double __x)
{ return atan2(static_cast<double>(__y), static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_CEILL
inline long double _CPP_ceil_capture(long double __x)
{ return __builtin_ceill(__x); }
#elif _GLIBCPP_HAVE_CEILL
inline long double _CPP_ceil_capture(long double __x)
{ return ceill(__x); }
#else
inline long double _CPP_ceil_capture(long double __x)
{ return ceil(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_COSL
inline long double _CPP_cos_capture(long double __x)
{ return __builtin_cosl(__x); }
#elif _GLIBCPP_HAVE_COSL
inline long double _CPP_cos_capture(long double __x)
{ return cosl(__x); }
#else
inline long double _CPP_cos_capture(long double __x)
{ return cos(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_COSHL
inline long double _CPP_cosh_capture(long double __x)
{ return __builtin_coshl(__x); }
#elif _GLIBCPP_HAVE_COSHL
inline long double _CPP_cosh_capture(long double __x)
{ return coshl(__x); }
#else
inline long double _CPP_cosh_capture(long double __x)
{ return cosh(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_EXPL
inline long double _CPP_exp_capture(long double __x)
{ return __builtin_expl(__x); }
#elif _GLIBCPP_HAVE_EXPL
inline long double _CPP_exp_capture(long double __x)
{ return expl(__x); }
#else
inline long double _CPP_exp_capture(long double __x)
{ return exp(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_FABSL
inline long double _CPP_fabs_capture(long double __x)
{ return __builtin_fabsl(__x); }
#elif _GLIBCPP_HAVE_FABSL
inline long double _CPP_fabs_capture(long double __x)
{ return fabsl(__x); }
#else
inline long double _CPP_fabs_capture(long double __x)
{ return fabs(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_FLOORL
inline long double _CPP_floor_capture(long double __x)
{ return __builtin_floorl(__x); }
#elif _GLIBCPP_HAVE_FLOORL
inline long double _CPP_floor_capture(long double __x)
{ return floorl(__x); }
#else
inline long double _CPP_floor_capture(long double __x)
{ return floor(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_FMODL
inline long double _CPP_fmod_capture(long double __x, long double __y)
{ return __builtin_fmodl(__x, __y); }
#elif _GLIBCPP_HAVE_FMODL
inline long double _CPP_fmod_capture(long double __x, long double __y)
{ return fmodl(__x, __y); }
#else
inline long double _CPP_fmod_capture(long double __x, long double __y)
{ return fmod(static_cast<double>(__x), static_cast<double>(__y)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_FREXPL
inline long double _CPP_frexp_capture(long double __x, int* __exp)
{ return __builtin_frexpl(__x, __exp); }
#elif _GLIBCPP_HAVE_FREXPL
inline long double _CPP_frexp_capture(long double __x, int* __exp)
{ return frexpl(__x, __exp); }
#else
inline long double _CPP_frexp_capture(long double __x, int* __exp)
{ return frexp(static_cast<double>(__x), __exp); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_LDEXPL
inline long double _CPP_ldexp_capture(long double __x, int __exp)
{ return __builtin_ldexpl(__x, __exp); }
#elif _GLIBCPP_HAVE_LDEXPL
inline long double _CPP_ldexp_capture(long double __x, int __exp)
{ return ldexpl(__x, __exp); }
#else
inline long double _CPP_ldexp_capture(long double __x, int __exp)
{ return ldexp(static_cast<double>(__x), __exp); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_LOGL
inline long double _CPP_log_capture(long double __x)
{ return __builtin_logl(__x); }
#elif _GLIBCPP_HAVE_LOGL
inline long double _CPP_log_capture(long double __x)
{ return logl(__x); }
#else
inline long double _CPP_log_capture(long double __x)
{ return log(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_LOG10L
inline long double _CPP_log10_capture(long double __x)
{ return __builtin_log10l(__x); }
#elif _GLIBCPP_HAVE_LOG10L
inline long double _CPP_log10_capture(long double __x)
{ return log10l(__x); }
#else
inline long double _CPP_log10_capture(long double __x)
{ return log10(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_MODFL
inline long double _CPP_mod_capture(long double __x, long double* __iptr)
{ return __builtin_modfl(__x, __iptr); }
#elif _GLIBCPP_HAVE_MODFL
inline long double _CPP_modf_capture(long double __x, long double* __iptr)
{ return modfl(__x, __iptr); }
#else
inline long double _CPP_modf_capture(long double __x, long double* __iptr)
{
double __tmp;
double __res = _C_legacy::modf(static_cast<double>(__x), &__tmp);
*__iptr = static_cast<long double> (__tmp);
return __res;
}
#endif
#if _GLIBCPP_HAVE_BUILTIN_POWL
inline long double _CPP_pow_capture(long double __x, long double __y)
{ return __builtin_powl(__x, __y); }
#elif _GLIBCPP_HAVE_POWL
inline long double _CPP_pow_capture(long double __x, long double __y)
{ return powl(__x, __y); }
#else
inline long double _CPP_pow_capture(long double __x, long double __y)
{ return pow(static_cast<double>(__x), static_cast<double>(__y)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_SINL
inline long double _CPP_sin_capture(long double __x)
{ return __builtin_sinl(__x); }
#elif _GLIBCPP_HAVE_SINL
inline long double _CPP_sin_capture(long double __x)
{ return sinl(__x); }
#else
inline long double _CPP_sin_capture(long double __x)
{ return sin(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_SINHL
inline long double _CPP_sinh_capture(long double __x)
{ return __builtin_sinhl(__x); }
#elif _GLIBCPP_HAVE_SINHL
inline long double _CPP_sinh_capture(long double __x)
{ return sinhl(__x); }
#else
inline long double _CPP_sinh_capture(long double __x)
{ return sinh(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_SQRTL
inline long double _CPP_sqrt_capture(long double __x)
{ return __builtin_sqrtl(__x); }
#elif _GLIBCPP_HAVE_SQRTL
inline long double _CPP_sqrt_capture(long double __x)
{ return sqrtl(__x); }
#else
inline long double _CPP_sqrt_capture(long double __x)
{ return sqrt(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_TANL
inline long double _CPP_tan_capture(long double __x)
{ return __builtin_tanl(__x); }
#elif _GLIBCPP_HAVE_TANL
inline long double _CPP_tan_capture(long double __x)
{ return tanl(__x); }
#else
inline long double _CPP_tan_capture(long double __x)
{ return tan(static_cast<double>(__x)); }
#endif
#if _GLIBCPP_HAVE_BUILTIN_TANHL
inline long double _CPP_tanh_capture(long double __x)
{ return __builtin_tanhl(__x); }
#elif _GLIBCPP_HAVE_TANHL
inline long double _CPP_tanh_capture(long double __x)
{ return tanhl(__x); }
#else
inline long double _CPP_tanh_capture(long double __x)
{ return tanh(static_cast<double>(__x)); }
#endif
namespace _C_shadow { }
} // close namespace ::_C_legacy::
# undef HUGE_VAL
# define HUGE_VAL ::_C_legacy::_CPP_HUGE_VAL_capture()
# undef abs
# undef acos
# undef asin
# undef atan
# undef atan2
# undef ceil
# undef cos
# undef cosh
# undef exp
# undef fabs
# undef floor
# undef fmod
# undef frexp
# undef ldexp
# undef log
# undef log10
# undef modf
# undef pow
# undef sin
# undef sinh
# undef sqrt
# undef tan
# undef tanh
namespace _C_legacy {
namespace _C_shadow {
}
}
namespace std {
//
// float
//
inline float abs(float __x)
{ return ::_C_legacy::_CPP_fabs_capture(__x); }
inline float acos(float __x)
{ return ::_C_legacy::_CPP_acos_capture(__x); }
inline float asin(float __x)
{ return ::_C_legacy::_CPP_asin_capture(__x); }
inline float atan(float __x)
{ return ::_C_legacy::_CPP_atan_capture(__x); }
inline float atan2(float __y, float __x)
{ return ::_C_legacy::_CPP_atan2_capture(__y, __x); }
inline float ceil(float __x)
{ return ::_C_legacy::_CPP_ceil_capture(__x); }
inline float cos(float __x)
{ return ::_C_legacy::_CPP_cos_capture(__x); }
inline float cosh(float __x)
{ return ::_C_legacy::_CPP_cosh_capture(__x); }
inline float exp(float __x)
{ return ::_C_legacy::_CPP_exp_capture(__x); }
inline float fabs(float __x)
{ return ::_C_legacy::_CPP_fabs_capture(__x); }
inline float floor(float __x)
{ return ::_C_legacy::_CPP_floor_capture(__x); }
inline float fmod(float __x, float __y)
{ return ::_C_legacy::_CPP_fmod_capture(__x, __y); }
inline float frexp(float __x, int* __exp)
{ return ::_C_legacy::_CPP_frexp_capture(__x, __exp); }
inline float ldexp(float __x, int __exp)
{ return ::_C_legacy::_CPP_ldexp_capture(__x, __exp); }
inline float log(float __x)
{ return ::_C_legacy::_CPP_log_capture(__x); }
inline float log10(float __x)
{ return ::_C_legacy::_CPP_log10_capture(__x); }
inline float modf(float __x, float* __iptr)
{ return ::_C_legacy::_CPP_modf_capture(__x, __iptr); }
inline float pow(float __x, float __y)
{ return ::_C_legacy::_CPP_pow_capture(__x, __y); }
float pow(float, int);
inline float sin(float __x)
{ return ::_C_legacy::_CPP_sin_capture(__x); }
inline float sinh(float __x)
{ return ::_C_legacy::_CPP_sinh_capture(__x); }
inline float sqrt(float __x)
{ return ::_C_legacy::_CPP_sqrt_capture(__x); }
inline float tan(float __x)
{ return ::_C_legacy::_CPP_tan_capture(__x); }
inline float tanh(float __x)
{ return ::_C_legacy::_CPP_tanh_capture(__x); }
//
// double
//
inline double abs(double __x)
{ return ::_C_legacy::_CPP_fabs_capture(__x); }
inline double acos(double __x)
{ return ::_C_legacy::_CPP_acos_capture(__x); }
inline double asin(double __x)
{ return ::_C_legacy::_CPP_asin_capture(__x); }
inline double atan(double __x)
{ return ::_C_legacy::_CPP_atan_capture(__x); }
inline double atan2(double __y, double __x)
{ return ::_C_legacy::_CPP_atan2_capture(__y, __x); }
inline double ceil(double __x)
{ return ::_C_legacy::_CPP_ceil_capture(__x); }
inline double cos(double __x)
{ return ::_C_legacy::_CPP_cos_capture(__x); }
inline double cosh(double __x)
{ return ::_C_legacy::_CPP_cosh_capture(__x); }
inline double exp(double __x)
{ return ::_C_legacy::_CPP_exp_capture(__x); }
inline double fabs(double __x)
{ return ::_C_legacy::_CPP_fabs_capture(__x); }
inline double floor(double __x)
{ return ::_C_legacy::_CPP_floor_capture(__x); }
inline double fmod(double __x, double __y)
{ return ::_C_legacy::_CPP_fmod_capture(__x, __y); }
inline double frexp(double __x, int* __exp)
{ return ::_C_legacy::_CPP_frexp_capture(__x, __exp); }
inline double ldexp(double __x, int __exp)
{ return ::_C_legacy::_CPP_ldexp_capture(__x, __exp); }
inline double log(double __x)
{ return ::_C_legacy::_CPP_log_capture(__x); }
inline double log10(double __x)
{ return ::_C_legacy::_CPP_log10_capture(__x); }
inline double modf(double __x, double* __iptr)
{ return ::_C_legacy::_CPP_modf_capture(__x, __iptr); }
inline double pow(double __x, double __y)
{ return ::_C_legacy::_CPP_pow_capture(__x, __y); }
double pow (double, int);
inline double sin(double __x)
{ return ::_C_legacy::_CPP_sin_capture(__x); }
inline double sinh(double __x)
{ return ::_C_legacy::_CPP_sinh_capture(__x); }
inline double sqrt(double __x)
{ return ::_C_legacy::_CPP_sqrt_capture(__x); }
inline double tan(double __x)
{ return ::_C_legacy::_CPP_tan_capture(__x); }
inline double tanh(double __x)
{ return ::_C_legacy::_CPP_tanh_capture(__x); }
//
// long double
//
inline long double abs(long double __x)
{ return ::_C_legacy::_CPP_fabs_capture(__x); }
inline long double acos(long double __x)
{ return ::_C_legacy::_CPP_acos_capture(__x); }
inline long double asin(long double __x)
{ return ::_C_legacy::_CPP_asin_capture(__x); }
inline long double atan(long double __x)
{ return ::_C_legacy::_CPP_atan_capture(__x); }
inline long double atan2(long double __y, long double __x)
{ return ::_C_legacy::_CPP_atan2_capture(__y, __x); }
inline long double ceil(long double __x)
{ return ::_C_legacy::_CPP_ceil_capture(__x); }
inline long double cos(long double __x)
{ return ::_C_legacy::_CPP_cos_capture(__x); }
inline long double cosh(long double __x)
{ return ::_C_legacy::_CPP_cosh_capture(__x); }
inline long double exp(long double __x)
{ return ::_C_legacy::_CPP_exp_capture(__x); }
inline long double fabs(long double __x)
{ return ::_C_legacy::_CPP_fabs_capture(__x); }
inline long double floor(long double __x)
{ return ::_C_legacy::_CPP_floor_capture(__x); }
inline long double fmod(long double __x, long double __y)
{ return ::_C_legacy::_CPP_fmod_capture(__x, __y); }
inline long double frexp(long double __x, int* __exp)
{ return ::_C_legacy::_CPP_frexp_capture(__x, __exp); }
inline long double ldexp(long double __x, int __exp)
{ return ::_C_legacy::_CPP_ldexp_capture(__x, __exp); }
inline long double log(long double __x)
{ return ::_C_legacy::_CPP_log_capture(__x); }
inline long double log10(long double __x)
{ return ::_C_legacy::_CPP_log10_capture(__x); }
inline long double modf(long double __x, long double* __iptr)
{ return ::_C_legacy::_CPP_modf_capture(__x, __iptr); }
inline long double pow(long double __x, long double __y)
{ return ::_C_legacy::_CPP_pow_capture(__x, __y); }
long double pow (long double, int);
inline long double sin(long double __x)
{ return ::_C_legacy::_CPP_sin_capture(__x); }
inline long double sinh(long double __x)
{ return ::_C_legacy::_CPP_sinh_capture(__x); }
inline long double sqrt(long double __x)
{ return ::_C_legacy::_CPP_sqrt_capture(__x); }
inline long double tan(long double __x)
{ return ::_C_legacy::_CPP_tan_capture(__x); }
inline long double tanh(long double __x)
{ return ::_C_legacy::_CPP_tanh_capture(__x); }
} // close namespace std::
namespace _C_legacy {
namespace _C_shadow {
}
}
# undef _IN_C_LEGACY_
#endif
|