summaryrefslogtreecommitdiffstats
path: root/contrib/gdtoa/test/d.out
blob: a0ac991c48e90891a16821064879abdea1cb062a (plain)
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

Input: 1.23
strtod consumes 4 bytes and returns 17 with f = 1.23 = #3ff3ae14 7ae147ae
g_dfmt(0) gives 4 bytes: "1.23"

strtoId returns 17, consuming 4 bytes.
fI[0] = #3ff3ae14 7ae147ae = 1.23
fI[1] = #3ff3ae14 7ae147af = 1.2300000000000002
fI[0] == strtod


Input: 1.23e+20
strtod consumes 8 bytes and returns 1 with f = 1.23e+20 = #441aabdf 2145b430
g_dfmt(0) gives 8 bytes: "1.23e+20"

strtoId returns 1, consuming 8 bytes.
fI[0] == fI[1] == strtod


Input: 1.23e-20
strtod consumes 8 bytes and returns 33 with f = 1.2300000000000001e-20 = #3bcd0ae4 cf767531
g_dfmt(0) gives 8 bytes: "1.23e-20"

strtoId returns 33, consuming 8 bytes.
fI[0] = #3bcd0ae4 cf767530 = 1.2299999999999999e-20
fI[1] = #3bcd0ae4 cf767531 = 1.2300000000000001e-20
fI[1] == strtod


Input: 1.23456789
strtod consumes 10 bytes and returns 17 with f = 1.2345678899999999 = #3ff3c0ca 4283de1b
g_dfmt(0) gives 10 bytes: "1.23456789"

strtoId returns 17, consuming 10 bytes.
fI[0] = #3ff3c0ca 4283de1b = 1.2345678899999999
fI[1] = #3ff3c0ca 4283de1c = 1.2345678900000001
fI[0] == strtod


Input: 1.23456589e+20
strtod consumes 14 bytes and returns 17 with f = 1.23456589e+20 = #441ac537 a660b997
g_dfmt(0) gives 14 bytes: "1.23456589e+20"

strtoId returns 17, consuming 14 bytes.
fI[0] = #441ac537 a660b997 = 1.23456589e+20
fI[1] = #441ac537 a660b998 = 1.2345658900000001e+20
fI[0] == strtod


Input: 1.23e+30
strtod consumes 8 bytes and returns 17 with f = 1.23e+30 = #462f0cb0 4e8fb790
g_dfmt(0) gives 8 bytes: "1.23e+30"

strtoId returns 17, consuming 8 bytes.
fI[0] = #462f0cb0 4e8fb790 = 1.23e+30
fI[1] = #462f0cb0 4e8fb791 = 1.2300000000000001e+30
fI[0] == strtod


Input: 1.23e-30
strtod consumes 8 bytes and returns 33 with f = 1.2300000000000001e-30 = #39b8f286 6f5010ab
g_dfmt(0) gives 8 bytes: "1.23e-30"

strtoId returns 33, consuming 8 bytes.
fI[0] = #39b8f286 6f5010aa = 1.2299999999999999e-30
fI[1] = #39b8f286 6f5010ab = 1.2300000000000001e-30
fI[1] == strtod


Input: 1.23456789e-20
strtod consumes 14 bytes and returns 17 with f = 1.2345678899999999e-20 = #3bcd2681 471e7ada
g_dfmt(0) gives 14 bytes: "1.23456789e-20"

strtoId returns 17, consuming 14 bytes.
fI[0] = #3bcd2681 471e7ada = 1.2345678899999999e-20
fI[1] = #3bcd2681 471e7adb = 1.2345678900000001e-20
fI[0] == strtod


Input: 1.23456789e-30
strtod consumes 14 bytes and returns 17 with f = 1.23456789e-30 = #39b90a3e 33bbd995
g_dfmt(0) gives 14 bytes: "1.23456789e-30"

strtoId returns 17, consuming 14 bytes.
fI[0] = #39b90a3e 33bbd995 = 1.23456789e-30
fI[1] = #39b90a3e 33bbd996 = 1.2345678900000002e-30
fI[0] == strtod


Input: 1.234567890123456789
strtod consumes 20 bytes and returns 17 with f = 1.2345678901234567 = #3ff3c0ca 428c59fb
g_dfmt(0) gives 18 bytes: "1.2345678901234567"

strtoId returns 17, consuming 20 bytes.
fI[0] = #3ff3c0ca 428c59fb = 1.2345678901234567
fI[1] = #3ff3c0ca 428c59fc = 1.2345678901234569
fI[0] == strtod


Input: 1.23456789012345678901234567890123456789
strtod consumes 40 bytes and returns 17 with f = 1.2345678901234567 = #3ff3c0ca 428c59fb
g_dfmt(0) gives 18 bytes: "1.2345678901234567"

strtoId returns 17, consuming 40 bytes.
fI[0] = #3ff3c0ca 428c59fb = 1.2345678901234567
fI[1] = #3ff3c0ca 428c59fc = 1.2345678901234569
fI[0] == strtod


Input: 1.23e306
strtod consumes 8 bytes and returns 33 with f = 1.23e+306 = #7f7c0676 cd1c61f5
g_dfmt(0) gives 9 bytes: "1.23e+306"

strtoId returns 33, consuming 8 bytes.
fI[0] = #7f7c0676 cd1c61f4 = 1.2299999999999999e+306
fI[1] = #7f7c0676 cd1c61f5 = 1.23e+306
fI[1] == strtod


Input: 1.23e-306
strtod consumes 9 bytes and returns 33 with f = 1.23e-306 = #6ba3b8 5da396e8
g_dfmt(0) gives 9 bytes: "1.23e-306"

strtoId returns 33, consuming 9 bytes.
fI[0] = #6ba3b8 5da396e7 = 1.2299999999999999e-306
fI[1] = #6ba3b8 5da396e8 = 1.23e-306
fI[1] == strtod


Input: 1.23e-320
strtod consumes 9 bytes and returns 98 with f = 1.2302234581447039e-320 = #0 9ba
g_dfmt(0) gives 9 bytes: "1.23e-320"

strtoId returns 98, consuming 9 bytes.
fI[0] = #0 9b9 = 1.2297293924988626e-320
fI[1] = #0 9ba = 1.2302234581447039e-320
fI[1] == strtod


Input: 1.23e-20
strtod consumes 8 bytes and returns 33 with f = 1.2300000000000001e-20 = #3bcd0ae4 cf767531
g_dfmt(0) gives 8 bytes: "1.23e-20"

strtoId returns 33, consuming 8 bytes.
fI[0] = #3bcd0ae4 cf767530 = 1.2299999999999999e-20
fI[1] = #3bcd0ae4 cf767531 = 1.2300000000000001e-20
fI[1] == strtod


Input: 1.23456789e307
strtod consumes 14 bytes and returns 33 with f = 1.23456789e+307 = #7fb194b1 4bdaecdc
g_dfmt(0) gives 15 bytes: "1.23456789e+307"

strtoId returns 33, consuming 14 bytes.
fI[0] = #7fb194b1 4bdaecdb = 1.2345678899999998e+307
fI[1] = #7fb194b1 4bdaecdc = 1.23456789e+307
fI[1] == strtod


Input: 1.23456589e-307
strtod consumes 15 bytes and returns 17 with f = 1.2345658899999999e-307 = #363196 bb9845fa
g_dfmt(0) gives 15 bytes: "1.23456589e-307"

strtoId returns 17, consuming 15 bytes.
fI[0] = #363196 bb9845fa = 1.2345658899999999e-307
fI[1] = #363196 bb9845fb = 1.2345658900000001e-307
fI[0] == strtod


Input: 1.234567890123456789
strtod consumes 20 bytes and returns 17 with f = 1.2345678901234567 = #3ff3c0ca 428c59fb
g_dfmt(0) gives 18 bytes: "1.2345678901234567"

strtoId returns 17, consuming 20 bytes.
fI[0] = #3ff3c0ca 428c59fb = 1.2345678901234567
fI[1] = #3ff3c0ca 428c59fc = 1.2345678901234569
fI[0] == strtod


Input: 1.234567890123456789e301
strtod consumes 24 bytes and returns 17 with f = 1.2345678901234568e+301 = #7e726f51 75f56413
g_dfmt(0) gives 23 bytes: "1.2345678901234568e+301"

strtoId returns 17, consuming 24 bytes.
fI[0] = #7e726f51 75f56413 = 1.2345678901234568e+301
fI[1] = #7e726f51 75f56414 = 1.234567890123457e+301
fI[0] == strtod


Input: 1.234567890123456789e-301
strtod consumes 25 bytes and returns 17 with f = 1.2345678901234567e-301 = #1752a64 e34ba0d3
g_dfmt(0) gives 23 bytes: "1.2345678901234567e-301"

strtoId returns 17, consuming 25 bytes.
fI[0] = #1752a64 e34ba0d3 = 1.2345678901234567e-301
fI[1] = #1752a64 e34ba0d4 = 1.2345678901234569e-301
fI[0] == strtod


Input: 1.234567890123456789e-321
strtod consumes 25 bytes and returns 98 with f = 1.2351641146031164e-321 = #0 fa
g_dfmt(0) gives 10 bytes: "1.235e-321"

strtoId returns 98, consuming 25 bytes.
fI[0] = #0 f9 = 1.2302234581447039e-321
fI[1] = #0 fa = 1.2351641146031164e-321
fI[1] == strtod


Input: 1e23
strtod consumes 4 bytes and returns 17 with f = 9.9999999999999992e+22 = #44b52d02 c7e14af6
g_dfmt(0) gives 5 bytes: "1e+23"

strtoId returns 17, consuming 4 bytes.
fI[0] = #44b52d02 c7e14af6 = 9.9999999999999992e+22
fI[1] = #44b52d02 c7e14af7 = 1.0000000000000001e+23
fI[0] == strtod


Input: 1e310
strtod consumes 5 bytes and returns 163 with f = Infinity = #7ff00000 0
g_dfmt(0) gives 8 bytes: "Infinity"

strtoId returns 163, consuming 5 bytes.
fI[0] = #7fefffff ffffffff = 1.7976931348623157e+308
fI[1] = #7ff00000 0 = Infinity
fI[1] == strtod


Input: 9.0259718793241475e-277
strtod consumes 23 bytes and returns 33 with f = 9.0259718793241479e-277 = #6a00000 0
g_dfmt(0) gives 22 bytes: "9.025971879324148e-277"

strtoId returns 33, consuming 23 bytes.
fI[0] = #69fffff ffffffff = 9.0259718793241469e-277
fI[1] = #6a00000 0 = 9.0259718793241479e-277
fI[1] == strtod


Input: 9.025971879324147880346310405869e-277
strtod consumes 37 bytes and returns 17 with f = 9.0259718793241479e-277 = #6a00000 0
g_dfmt(0) gives 22 bytes: "9.025971879324148e-277"

strtoId returns 17, consuming 37 bytes.
fI[0] = #6a00000 0 = 9.0259718793241479e-277
fI[1] = #6a00000 1 = 9.0259718793241499e-277
fI[0] == strtod


Input: 9.025971879324147880346310405868e-277
strtod consumes 37 bytes and returns 33 with f = 9.0259718793241479e-277 = #6a00000 0
g_dfmt(0) gives 22 bytes: "9.025971879324148e-277"

strtoId returns 33, consuming 37 bytes.
fI[0] = #69fffff ffffffff = 9.0259718793241469e-277
fI[1] = #6a00000 0 = 9.0259718793241479e-277
fI[1] == strtod


Input: 2.2250738585072014e-308
strtod consumes 23 bytes and returns 17 with f = 2.2250738585072014e-308 = #100000 0
g_dfmt(0) gives 23 bytes: "2.2250738585072014e-308"

strtoId returns 17, consuming 23 bytes.
fI[0] = #100000 0 = 2.2250738585072014e-308
fI[1] = #100000 1 = 2.2250738585072019e-308
fI[0] == strtod


Input: 2.2250738585072013e-308
strtod consumes 23 bytes and returns 33 with f = 2.2250738585072014e-308 = #100000 0
g_dfmt(0) gives 23 bytes: "2.2250738585072014e-308"

strtoId returns 33, consuming 23 bytes.
fI[0] = #fffff ffffffff = 2.2250738585072009e-308
fI[1] = #100000 0 = 2.2250738585072014e-308
fI[1] == strtod

Rounding mode for strtor... changed from 1 (nearest) to 0 (toward zero)

Input: 1.1
strtod consumes 3 bytes and returns 17 with f = 1.0999999999999999 = #3ff19999 99999999
g_dfmt(0) gives 18 bytes: "1.0999999999999999"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ff19999 99999999 = 1.0999999999999999
fI[1] = #3ff19999 9999999a = 1.1000000000000001
fI[0] == strtod


Input: -1.1
strtod consumes 4 bytes and returns 25 with f = -1.0999999999999999 = #bff19999 99999999
g_dfmt(0) gives 19 bytes: "-1.0999999999999999"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bff19999 9999999a = -1.1000000000000001
fI[1] = #bff19999 99999999 = -1.0999999999999999
fI[1] == strtod


Input: 1.2
strtod consumes 3 bytes and returns 17 with f = 1.2 = #3ff33333 33333333
g_dfmt(0) gives 3 bytes: "1.2"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ff33333 33333333 = 1.2
fI[1] = #3ff33333 33333334 = 1.2000000000000002
fI[0] == strtod


Input: -1.2
strtod consumes 4 bytes and returns 25 with f = -1.2 = #bff33333 33333333
g_dfmt(0) gives 4 bytes: "-1.2"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bff33333 33333334 = -1.2000000000000002
fI[1] = #bff33333 33333333 = -1.2
fI[1] == strtod


Input: 1.3
strtod consumes 3 bytes and returns 17 with f = 1.2999999999999998 = #3ff4cccc cccccccc
g_dfmt(0) gives 18 bytes: "1.2999999999999998"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ff4cccc cccccccc = 1.2999999999999998
fI[1] = #3ff4cccc cccccccd = 1.3
fI[0] == strtod


Input: -1.3
strtod consumes 4 bytes and returns 25 with f = -1.2999999999999998 = #bff4cccc cccccccc
g_dfmt(0) gives 19 bytes: "-1.2999999999999998"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bff4cccc cccccccd = -1.3
fI[1] = #bff4cccc cccccccc = -1.2999999999999998
fI[1] == strtod


Input: 1.4
strtod consumes 3 bytes and returns 17 with f = 1.3999999999999999 = #3ff66666 66666666
g_dfmt(0) gives 3 bytes: "1.4"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ff66666 66666666 = 1.3999999999999999
fI[1] = #3ff66666 66666667 = 1.4000000000000001
fI[0] == strtod


Input: -1.4
strtod consumes 4 bytes and returns 25 with f = -1.3999999999999999 = #bff66666 66666666
g_dfmt(0) gives 4 bytes: "-1.4"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bff66666 66666667 = -1.4000000000000001
fI[1] = #bff66666 66666666 = -1.3999999999999999
fI[1] == strtod


Input: 1.5
strtod consumes 3 bytes and returns 1 with f = 1.5 = #3ff80000 0
g_dfmt(0) gives 3 bytes: "1.5"

strtoId returns 1, consuming 3 bytes.
fI[0] == fI[1] == strtod


Input: -1.5
strtod consumes 4 bytes and returns 9 with f = -1.5 = #bff80000 0
g_dfmt(0) gives 4 bytes: "-1.5"

strtoId returns 9, consuming 4 bytes.
fI[0] == fI[1] == strtod


Input: 1.6
strtod consumes 3 bytes and returns 17 with f = 1.5999999999999999 = #3ff99999 99999999
g_dfmt(0) gives 18 bytes: "1.5999999999999999"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ff99999 99999999 = 1.5999999999999999
fI[1] = #3ff99999 9999999a = 1.6000000000000001
fI[0] == strtod


Input: -1.6
strtod consumes 4 bytes and returns 25 with f = -1.5999999999999999 = #bff99999 99999999
g_dfmt(0) gives 19 bytes: "-1.5999999999999999"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bff99999 9999999a = -1.6000000000000001
fI[1] = #bff99999 99999999 = -1.5999999999999999
fI[1] == strtod


Input: 1.7
strtod consumes 3 bytes and returns 17 with f = 1.7 = #3ffb3333 33333333
g_dfmt(0) gives 3 bytes: "1.7"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ffb3333 33333333 = 1.7
fI[1] = #3ffb3333 33333334 = 1.7000000000000002
fI[0] == strtod


Input: -1.7
strtod consumes 4 bytes and returns 25 with f = -1.7 = #bffb3333 33333333
g_dfmt(0) gives 4 bytes: "-1.7"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bffb3333 33333334 = -1.7000000000000002
fI[1] = #bffb3333 33333333 = -1.7
fI[1] == strtod


Input: 1.8
strtod consumes 3 bytes and returns 17 with f = 1.7999999999999998 = #3ffccccc cccccccc
g_dfmt(0) gives 18 bytes: "1.7999999999999998"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ffccccc cccccccc = 1.7999999999999998
fI[1] = #3ffccccc cccccccd = 1.8
fI[0] == strtod


Input: -1.8
strtod consumes 4 bytes and returns 25 with f = -1.7999999999999998 = #bffccccc cccccccc
g_dfmt(0) gives 19 bytes: "-1.7999999999999998"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bffccccc cccccccd = -1.8
fI[1] = #bffccccc cccccccc = -1.7999999999999998
fI[1] == strtod


Input: 1.9
strtod consumes 3 bytes and returns 17 with f = 1.8999999999999999 = #3ffe6666 66666666
g_dfmt(0) gives 3 bytes: "1.9"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ffe6666 66666666 = 1.8999999999999999
fI[1] = #3ffe6666 66666667 = 1.9000000000000001
fI[0] == strtod


Input: -1.9
strtod consumes 4 bytes and returns 25 with f = -1.8999999999999999 = #bffe6666 66666666
g_dfmt(0) gives 4 bytes: "-1.9"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bffe6666 66666667 = -1.9000000000000001
fI[1] = #bffe6666 66666666 = -1.8999999999999999
fI[1] == strtod

Rounding mode for strtor... changed from 0 (toward zero) to 1 (nearest)

Input: 1.1
strtod consumes 3 bytes and returns 33 with f = 1.1000000000000001 = #3ff19999 9999999a
g_dfmt(0) gives 3 bytes: "1.1"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ff19999 99999999 = 1.0999999999999999
fI[1] = #3ff19999 9999999a = 1.1000000000000001
fI[1] == strtod


Input: -1.1
strtod consumes 4 bytes and returns 41 with f = -1.1000000000000001 = #bff19999 9999999a
g_dfmt(0) gives 4 bytes: "-1.1"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bff19999 9999999a = -1.1000000000000001
fI[1] = #bff19999 99999999 = -1.0999999999999999
fI[0] == strtod


Input: 1.2
strtod consumes 3 bytes and returns 17 with f = 1.2 = #3ff33333 33333333
g_dfmt(0) gives 3 bytes: "1.2"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ff33333 33333333 = 1.2
fI[1] = #3ff33333 33333334 = 1.2000000000000002
fI[0] == strtod


Input: -1.2
strtod consumes 4 bytes and returns 25 with f = -1.2 = #bff33333 33333333
g_dfmt(0) gives 4 bytes: "-1.2"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bff33333 33333334 = -1.2000000000000002
fI[1] = #bff33333 33333333 = -1.2
fI[1] == strtod


Input: 1.3
strtod consumes 3 bytes and returns 33 with f = 1.3 = #3ff4cccc cccccccd
g_dfmt(0) gives 3 bytes: "1.3"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ff4cccc cccccccc = 1.2999999999999998
fI[1] = #3ff4cccc cccccccd = 1.3
fI[1] == strtod


Input: -1.3
strtod consumes 4 bytes and returns 41 with f = -1.3 = #bff4cccc cccccccd
g_dfmt(0) gives 4 bytes: "-1.3"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bff4cccc cccccccd = -1.3
fI[1] = #bff4cccc cccccccc = -1.2999999999999998
fI[0] == strtod


Input: 1.4
strtod consumes 3 bytes and returns 17 with f = 1.3999999999999999 = #3ff66666 66666666
g_dfmt(0) gives 3 bytes: "1.4"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ff66666 66666666 = 1.3999999999999999
fI[1] = #3ff66666 66666667 = 1.4000000000000001
fI[0] == strtod


Input: -1.4
strtod consumes 4 bytes and returns 25 with f = -1.3999999999999999 = #bff66666 66666666
g_dfmt(0) gives 4 bytes: "-1.4"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bff66666 66666667 = -1.4000000000000001
fI[1] = #bff66666 66666666 = -1.3999999999999999
fI[1] == strtod


Input: 1.5
strtod consumes 3 bytes and returns 1 with f = 1.5 = #3ff80000 0
g_dfmt(0) gives 3 bytes: "1.5"

strtoId returns 1, consuming 3 bytes.
fI[0] == fI[1] == strtod


Input: -1.5
strtod consumes 4 bytes and returns 9 with f = -1.5 = #bff80000 0
g_dfmt(0) gives 4 bytes: "-1.5"

strtoId returns 9, consuming 4 bytes.
fI[0] == fI[1] == strtod


Input: 1.6
strtod consumes 3 bytes and returns 33 with f = 1.6000000000000001 = #3ff99999 9999999a
g_dfmt(0) gives 3 bytes: "1.6"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ff99999 99999999 = 1.5999999999999999
fI[1] = #3ff99999 9999999a = 1.6000000000000001
fI[1] == strtod


Input: -1.6
strtod consumes 4 bytes and returns 41 with f = -1.6000000000000001 = #bff99999 9999999a
g_dfmt(0) gives 4 bytes: "-1.6"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bff99999 9999999a = -1.6000000000000001
fI[1] = #bff99999 99999999 = -1.5999999999999999
fI[0] == strtod


Input: 1.7
strtod consumes 3 bytes and returns 17 with f = 1.7 = #3ffb3333 33333333
g_dfmt(0) gives 3 bytes: "1.7"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ffb3333 33333333 = 1.7
fI[1] = #3ffb3333 33333334 = 1.7000000000000002
fI[0] == strtod


Input: -1.7
strtod consumes 4 bytes and returns 25 with f = -1.7 = #bffb3333 33333333
g_dfmt(0) gives 4 bytes: "-1.7"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bffb3333 33333334 = -1.7000000000000002
fI[1] = #bffb3333 33333333 = -1.7
fI[1] == strtod


Input: 1.8
strtod consumes 3 bytes and returns 33 with f = 1.8 = #3ffccccc cccccccd
g_dfmt(0) gives 3 bytes: "1.8"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ffccccc cccccccc = 1.7999999999999998
fI[1] = #3ffccccc cccccccd = 1.8
fI[1] == strtod


Input: -1.8
strtod consumes 4 bytes and returns 41 with f = -1.8 = #bffccccc cccccccd
g_dfmt(0) gives 4 bytes: "-1.8"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bffccccc cccccccd = -1.8
fI[1] = #bffccccc cccccccc = -1.7999999999999998
fI[0] == strtod


Input: 1.9
strtod consumes 3 bytes and returns 17 with f = 1.8999999999999999 = #3ffe6666 66666666
g_dfmt(0) gives 3 bytes: "1.9"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ffe6666 66666666 = 1.8999999999999999
fI[1] = #3ffe6666 66666667 = 1.9000000000000001
fI[0] == strtod


Input: -1.9
strtod consumes 4 bytes and returns 25 with f = -1.8999999999999999 = #bffe6666 66666666
g_dfmt(0) gives 4 bytes: "-1.9"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bffe6666 66666667 = -1.9000000000000001
fI[1] = #bffe6666 66666666 = -1.8999999999999999
fI[1] == strtod

Rounding mode for strtor... changed from 1 (nearest) to 2 (toward +Infinity)

Input: 1.1
strtod consumes 3 bytes and returns 33 with f = 1.1000000000000001 = #3ff19999 9999999a
g_dfmt(0) gives 3 bytes: "1.1"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ff19999 99999999 = 1.0999999999999999
fI[1] = #3ff19999 9999999a = 1.1000000000000001
fI[1] == strtod


Input: -1.1
strtod consumes 4 bytes and returns 25 with f = -1.0999999999999999 = #bff19999 99999999
g_dfmt(0) gives 19 bytes: "-1.0999999999999999"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bff19999 9999999a = -1.1000000000000001
fI[1] = #bff19999 99999999 = -1.0999999999999999
fI[1] == strtod


Input: 1.2
strtod consumes 3 bytes and returns 33 with f = 1.2000000000000002 = #3ff33333 33333334
g_dfmt(0) gives 18 bytes: "1.2000000000000002"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ff33333 33333333 = 1.2
fI[1] = #3ff33333 33333334 = 1.2000000000000002
fI[1] == strtod


Input: -1.2
strtod consumes 4 bytes and returns 25 with f = -1.2 = #bff33333 33333333
g_dfmt(0) gives 4 bytes: "-1.2"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bff33333 33333334 = -1.2000000000000002
fI[1] = #bff33333 33333333 = -1.2
fI[1] == strtod


Input: 1.3
strtod consumes 3 bytes and returns 33 with f = 1.3 = #3ff4cccc cccccccd
g_dfmt(0) gives 3 bytes: "1.3"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ff4cccc cccccccc = 1.2999999999999998
fI[1] = #3ff4cccc cccccccd = 1.3
fI[1] == strtod


Input: -1.3
strtod consumes 4 bytes and returns 25 with f = -1.2999999999999998 = #bff4cccc cccccccc
g_dfmt(0) gives 19 bytes: "-1.2999999999999998"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bff4cccc cccccccd = -1.3
fI[1] = #bff4cccc cccccccc = -1.2999999999999998
fI[1] == strtod


Input: 1.4
strtod consumes 3 bytes and returns 33 with f = 1.4000000000000001 = #3ff66666 66666667
g_dfmt(0) gives 18 bytes: "1.4000000000000001"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ff66666 66666666 = 1.3999999999999999
fI[1] = #3ff66666 66666667 = 1.4000000000000001
fI[1] == strtod


Input: -1.4
strtod consumes 4 bytes and returns 25 with f = -1.3999999999999999 = #bff66666 66666666
g_dfmt(0) gives 4 bytes: "-1.4"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bff66666 66666667 = -1.4000000000000001
fI[1] = #bff66666 66666666 = -1.3999999999999999
fI[1] == strtod


Input: 1.5
strtod consumes 3 bytes and returns 1 with f = 1.5 = #3ff80000 0
g_dfmt(0) gives 3 bytes: "1.5"

strtoId returns 1, consuming 3 bytes.
fI[0] == fI[1] == strtod


Input: -1.5
strtod consumes 4 bytes and returns 9 with f = -1.5 = #bff80000 0
g_dfmt(0) gives 4 bytes: "-1.5"

strtoId returns 9, consuming 4 bytes.
fI[0] == fI[1] == strtod


Input: 1.6
strtod consumes 3 bytes and returns 33 with f = 1.6000000000000001 = #3ff99999 9999999a
g_dfmt(0) gives 3 bytes: "1.6"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ff99999 99999999 = 1.5999999999999999
fI[1] = #3ff99999 9999999a = 1.6000000000000001
fI[1] == strtod


Input: -1.6
strtod consumes 4 bytes and returns 25 with f = -1.5999999999999999 = #bff99999 99999999
g_dfmt(0) gives 19 bytes: "-1.5999999999999999"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bff99999 9999999a = -1.6000000000000001
fI[1] = #bff99999 99999999 = -1.5999999999999999
fI[1] == strtod


Input: 1.7
strtod consumes 3 bytes and returns 33 with f = 1.7000000000000002 = #3ffb3333 33333334
g_dfmt(0) gives 18 bytes: "1.7000000000000002"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ffb3333 33333333 = 1.7
fI[1] = #3ffb3333 33333334 = 1.7000000000000002
fI[1] == strtod


Input: -1.7
strtod consumes 4 bytes and returns 25 with f = -1.7 = #bffb3333 33333333
g_dfmt(0) gives 4 bytes: "-1.7"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bffb3333 33333334 = -1.7000000000000002
fI[1] = #bffb3333 33333333 = -1.7
fI[1] == strtod


Input: 1.8
strtod consumes 3 bytes and returns 33 with f = 1.8 = #3ffccccc cccccccd
g_dfmt(0) gives 3 bytes: "1.8"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ffccccc cccccccc = 1.7999999999999998
fI[1] = #3ffccccc cccccccd = 1.8
fI[1] == strtod


Input: -1.8
strtod consumes 4 bytes and returns 25 with f = -1.7999999999999998 = #bffccccc cccccccc
g_dfmt(0) gives 19 bytes: "-1.7999999999999998"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bffccccc cccccccd = -1.8
fI[1] = #bffccccc cccccccc = -1.7999999999999998
fI[1] == strtod


Input: 1.9
strtod consumes 3 bytes and returns 33 with f = 1.9000000000000001 = #3ffe6666 66666667
g_dfmt(0) gives 18 bytes: "1.9000000000000001"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ffe6666 66666666 = 1.8999999999999999
fI[1] = #3ffe6666 66666667 = 1.9000000000000001
fI[1] == strtod


Input: -1.9
strtod consumes 4 bytes and returns 25 with f = -1.8999999999999999 = #bffe6666 66666666
g_dfmt(0) gives 4 bytes: "-1.9"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bffe6666 66666667 = -1.9000000000000001
fI[1] = #bffe6666 66666666 = -1.8999999999999999
fI[1] == strtod

Rounding mode for strtor... changed from 2 (toward +Infinity) to 3 (toward -Infinity)

Input: 1.1
strtod consumes 3 bytes and returns 17 with f = 1.0999999999999999 = #3ff19999 99999999
g_dfmt(0) gives 18 bytes: "1.0999999999999999"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ff19999 99999999 = 1.0999999999999999
fI[1] = #3ff19999 9999999a = 1.1000000000000001
fI[0] == strtod


Input: -1.1
strtod consumes 4 bytes and returns 41 with f = -1.1000000000000001 = #bff19999 9999999a
g_dfmt(0) gives 4 bytes: "-1.1"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bff19999 9999999a = -1.1000000000000001
fI[1] = #bff19999 99999999 = -1.0999999999999999
fI[0] == strtod


Input: 1.2
strtod consumes 3 bytes and returns 17 with f = 1.2 = #3ff33333 33333333
g_dfmt(0) gives 3 bytes: "1.2"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ff33333 33333333 = 1.2
fI[1] = #3ff33333 33333334 = 1.2000000000000002
fI[0] == strtod


Input: -1.2
strtod consumes 4 bytes and returns 41 with f = -1.2000000000000002 = #bff33333 33333334
g_dfmt(0) gives 19 bytes: "-1.2000000000000002"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bff33333 33333334 = -1.2000000000000002
fI[1] = #bff33333 33333333 = -1.2
fI[0] == strtod


Input: 1.3
strtod consumes 3 bytes and returns 17 with f = 1.2999999999999998 = #3ff4cccc cccccccc
g_dfmt(0) gives 18 bytes: "1.2999999999999998"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ff4cccc cccccccc = 1.2999999999999998
fI[1] = #3ff4cccc cccccccd = 1.3
fI[0] == strtod


Input: -1.3
strtod consumes 4 bytes and returns 41 with f = -1.3 = #bff4cccc cccccccd
g_dfmt(0) gives 4 bytes: "-1.3"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bff4cccc cccccccd = -1.3
fI[1] = #bff4cccc cccccccc = -1.2999999999999998
fI[0] == strtod


Input: 1.4
strtod consumes 3 bytes and returns 17 with f = 1.3999999999999999 = #3ff66666 66666666
g_dfmt(0) gives 3 bytes: "1.4"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ff66666 66666666 = 1.3999999999999999
fI[1] = #3ff66666 66666667 = 1.4000000000000001
fI[0] == strtod


Input: -1.4
strtod consumes 4 bytes and returns 41 with f = -1.4000000000000001 = #bff66666 66666667
g_dfmt(0) gives 19 bytes: "-1.4000000000000001"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bff66666 66666667 = -1.4000000000000001
fI[1] = #bff66666 66666666 = -1.3999999999999999
fI[0] == strtod


Input: 1.5
strtod consumes 3 bytes and returns 1 with f = 1.5 = #3ff80000 0
g_dfmt(0) gives 3 bytes: "1.5"

strtoId returns 1, consuming 3 bytes.
fI[0] == fI[1] == strtod


Input: -1.5
strtod consumes 4 bytes and returns 9 with f = -1.5 = #bff80000 0
g_dfmt(0) gives 4 bytes: "-1.5"

strtoId returns 9, consuming 4 bytes.
fI[0] == fI[1] == strtod


Input: 1.6
strtod consumes 3 bytes and returns 17 with f = 1.5999999999999999 = #3ff99999 99999999
g_dfmt(0) gives 18 bytes: "1.5999999999999999"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ff99999 99999999 = 1.5999999999999999
fI[1] = #3ff99999 9999999a = 1.6000000000000001
fI[0] == strtod


Input: -1.6
strtod consumes 4 bytes and returns 41 with f = -1.6000000000000001 = #bff99999 9999999a
g_dfmt(0) gives 4 bytes: "-1.6"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bff99999 9999999a = -1.6000000000000001
fI[1] = #bff99999 99999999 = -1.5999999999999999
fI[0] == strtod


Input: 1.7
strtod consumes 3 bytes and returns 17 with f = 1.7 = #3ffb3333 33333333
g_dfmt(0) gives 3 bytes: "1.7"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ffb3333 33333333 = 1.7
fI[1] = #3ffb3333 33333334 = 1.7000000000000002
fI[0] == strtod


Input: -1.7
strtod consumes 4 bytes and returns 41 with f = -1.7000000000000002 = #bffb3333 33333334
g_dfmt(0) gives 19 bytes: "-1.7000000000000002"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bffb3333 33333334 = -1.7000000000000002
fI[1] = #bffb3333 33333333 = -1.7
fI[0] == strtod


Input: 1.8
strtod consumes 3 bytes and returns 17 with f = 1.7999999999999998 = #3ffccccc cccccccc
g_dfmt(0) gives 18 bytes: "1.7999999999999998"

strtoId returns 33, consuming 3 bytes.
fI[0] = #3ffccccc cccccccc = 1.7999999999999998
fI[1] = #3ffccccc cccccccd = 1.8
fI[0] == strtod


Input: -1.8
strtod consumes 4 bytes and returns 41 with f = -1.8 = #bffccccc cccccccd
g_dfmt(0) gives 4 bytes: "-1.8"

strtoId returns 41, consuming 4 bytes.
fI[0] = #bffccccc cccccccd = -1.8
fI[1] = #bffccccc cccccccc = -1.7999999999999998
fI[0] == strtod


Input: 1.9
strtod consumes 3 bytes and returns 17 with f = 1.8999999999999999 = #3ffe6666 66666666
g_dfmt(0) gives 3 bytes: "1.9"

strtoId returns 17, consuming 3 bytes.
fI[0] = #3ffe6666 66666666 = 1.8999999999999999
fI[1] = #3ffe6666 66666667 = 1.9000000000000001
fI[0] == strtod


Input: -1.9
strtod consumes 4 bytes and returns 41 with f = -1.9000000000000001 = #bffe6666 66666667
g_dfmt(0) gives 19 bytes: "-1.9000000000000001"

strtoId returns 25, consuming 4 bytes.
fI[0] = #bffe6666 66666667 = -1.9000000000000001
fI[1] = #bffe6666 66666666 = -1.8999999999999999
fI[0] == strtod

OpenPOWER on IntegriCloud