• Home
  • Raw
  • Download

Lines Matching refs:E

68 basx035 toSci '0.000000123456789'   -> '1.23456789E-7'
69 basx036 toSci '0.0000000123456789' -> '1.23456789E-8'
75 -- strings without E cannot generate E in result
90 basx054 toSci "0.0000005" -> '5E-7'
91 basx055 toSci "0.00000005" -> '5E-8'
104 basx067 toSci "5E-6" -> '0.000005'
105 basx068 toSci "50E-7" -> '0.0000050'
106 basx069 toSci "5E-7" -> '5E-7'
128 basx088 toSci 12345678901234561.23 -> 1.234567890123456E+16 Inexact Rounded
129 basx089 toSci 123456789012345612.3 -> 1.234567890123456E+17 Inexact Rounded
130 basx090 toSci 1234567890123456123. -> 1.234567890123456E+18 Inexact Rounded
132 -- Numbers with E
133 basx130 toSci "0.000E-1" -> '0.0000'
134 basx131 toSci "0.000E-2" -> '0.00000'
135 basx132 toSci "0.000E-3" -> '0.000000'
136 basx133 toSci "0.000E-4" -> '0E-7'
137 basx134 toSci "0.00E-2" -> '0.0000'
138 basx135 toSci "0.00E-3" -> '0.00000'
139 basx136 toSci "0.00E-4" -> '0.000000'
140 basx137 toSci "0.00E-5" -> '0E-7'
141 basx138 toSci "+0E+9" -> '0E+9'
142 basx139 toSci "-0E+9" -> '-0E+9'
143 basx140 toSci "1E+9" -> '1E+9'
144 basx141 toSci "1e+09" -> '1E+9'
145 basx142 toSci "1E+90" -> '1E+90'
146 basx143 toSci "+1E+009" -> '1E+9'
147 basx144 toSci "0E+9" -> '0E+9'
148 basx145 toSci "1E+9" -> '1E+9'
149 basx146 toSci "1E+09" -> '1E+9'
150 basx147 toSci "1e+90" -> '1E+90'
151 basx148 toSci "1E+009" -> '1E+9'
152 basx149 toSci "000E+9" -> '0E+9'
153 basx150 toSci "1E9" -> '1E+9'
154 basx151 toSci "1e09" -> '1E+9'
155 basx152 toSci "1E90" -> '1E+90'
156 basx153 toSci "1E009" -> '1E+9'
157 basx154 toSci "0E9" -> '0E+9'
159 basx156 toSci "0.000E-1" -> '0.0000'
160 basx157 toSci "4E+9" -> '4E+9'
161 basx158 toSci "44E+9" -> '4.4E+10'
162 basx159 toSci "0.73e-7" -> '7.3E-8'
163 basx160 toSci "00E+9" -> '0E+9'
164 basx161 toSci "00E-9" -> '0E-9'
165 basx162 toSci "10E+9" -> '1.0E+10'
166 basx163 toSci "10E+09" -> '1.0E+10'
167 basx164 toSci "10e+90" -> '1.0E+91'
168 basx165 toSci "10E+009" -> '1.0E+10'
169 basx166 toSci "100e+9" -> '1.00E+11'
170 basx167 toSci "100e+09" -> '1.00E+11'
171 basx168 toSci "100E+90" -> '1.00E+92'
172 basx169 toSci "100e+009" -> '1.00E+11'
175 basx171 toSci "1.265E-20" -> '1.265E-20'
176 basx172 toSci "1.265E-8" -> '1.265E-8'
177 basx173 toSci "1.265E-4" -> '0.0001265'
178 basx174 toSci "1.265E-3" -> '0.001265'
179 basx175 toSci "1.265E-2" -> '0.01265'
180 basx176 toSci "1.265E-1" -> '0.1265'
181 basx177 toSci "1.265E-0" -> '1.265'
182 basx178 toSci "1.265E+1" -> '12.65'
183 basx179 toSci "1.265E+2" -> '126.5'
184 basx180 toSci "1.265E+3" -> '1265'
185 basx181 toSci "1.265E+4" -> '1.265E+4'
186 basx182 toSci "1.265E+8" -> '1.265E+8'
187 basx183 toSci "1.265E+20" -> '1.265E+20'
190 basx191 toSci "12.65E-20" -> '1.265E-19'
191 basx192 toSci "12.65E-8" -> '1.265E-7'
192 basx193 toSci "12.65E-4" -> '0.001265'
193 basx194 toSci "12.65E-3" -> '0.01265'
194 basx195 toSci "12.65E-2" -> '0.1265'
195 basx196 toSci "12.65E-1" -> '1.265'
196 basx197 toSci "12.65E-0" -> '12.65'
197 basx198 toSci "12.65E+1" -> '126.5'
198 basx199 toSci "12.65E+2" -> '1265'
199 basx200 toSci "12.65E+3" -> '1.265E+4'
200 basx201 toSci "12.65E+4" -> '1.265E+5'
201 basx202 toSci "12.65E+8" -> '1.265E+9'
202 basx203 toSci "12.65E+20" -> '1.265E+21'
205 basx211 toSci "126.5E-20" -> '1.265E-18'
206 basx212 toSci "126.5E-8" -> '0.000001265'
207 basx213 toSci "126.5E-4" -> '0.01265'
208 basx214 toSci "126.5E-3" -> '0.1265'
209 basx215 toSci "126.5E-2" -> '1.265'
210 basx216 toSci "126.5E-1" -> '12.65'
211 basx217 toSci "126.5E-0" -> '126.5'
212 basx218 toSci "126.5E+1" -> '1265'
213 basx219 toSci "126.5E+2" -> '1.265E+4'
214 basx220 toSci "126.5E+3" -> '1.265E+5'
215 basx221 toSci "126.5E+4" -> '1.265E+6'
216 basx222 toSci "126.5E+8" -> '1.265E+10'
217 basx223 toSci "126.5E+20" -> '1.265E+22'
220 basx231 toSci "1265E-20" -> '1.265E-17'
221 basx232 toSci "1265E-8" -> '0.00001265'
222 basx233 toSci "1265E-4" -> '0.1265'
223 basx234 toSci "1265E-3" -> '1.265'
224 basx235 toSci "1265E-2" -> '12.65'
225 basx236 toSci "1265E-1" -> '126.5'
226 basx237 toSci "1265E-0" -> '1265'
227 basx238 toSci "1265E+1" -> '1.265E+4'
228 basx239 toSci "1265E+2" -> '1.265E+5'
229 basx240 toSci "1265E+3" -> '1.265E+6'
230 basx241 toSci "1265E+4" -> '1.265E+7'
231 basx242 toSci "1265E+8" -> '1.265E+11'
232 basx243 toSci "1265E+20" -> '1.265E+23'
235 basx251 toSci "0.1265E-20" -> '1.265E-21'
236 basx252 toSci "0.1265E-8" -> '1.265E-9'
237 basx253 toSci "0.1265E-4" -> '0.00001265'
238 basx254 toSci "0.1265E-3" -> '0.0001265'
239 basx255 toSci "0.1265E-2" -> '0.001265'
240 basx256 toSci "0.1265E-1" -> '0.01265'
241 basx257 toSci "0.1265E-0" -> '0.1265'
242 basx258 toSci "0.1265E+1" -> '1.265'
243 basx259 toSci "0.1265E+2" -> '12.65'
244 basx260 toSci "0.1265E+3" -> '126.5'
245 basx261 toSci "0.1265E+4" -> '1265'
246 basx262 toSci "0.1265E+8" -> '1.265E+7'
247 basx263 toSci "0.1265E+20" -> '1.265E+19'
250 basx290 toSci "-0.000E-1" -> '-0.0000'
251 basx291 toSci "-0.000E-2" -> '-0.00000'
252 basx292 toSci "-0.000E-3" -> '-0.000000'
253 basx293 toSci "-0.000E-4" -> '-0E-7'
254 basx294 toSci "-0.00E-2" -> '-0.0000'
255 basx295 toSci "-0.00E-3" -> '-0.00000'
256 basx296 toSci "-0.0E-2" -> '-0.000'
257 basx297 toSci "-0.0E-3" -> '-0.0000'
258 basx298 toSci "-0E-2" -> '-0.00'
259 basx299 toSci "-0E-3" -> '-0.000'
262 basx301 toSci 10e12 -> 1.0E+13
263 basx302 toEng 10e12 -> 10E+12
264 basx303 toSci 10e11 -> 1.0E+12
265 basx304 toEng 10e11 -> 1.0E+12
266 basx305 toSci 10e10 -> 1.0E+11
267 basx306 toEng 10e10 -> 100E+9
268 basx307 toSci 10e9 -> 1.0E+10
269 basx308 toEng 10e9 -> 10E+9
270 basx309 toSci 10e8 -> 1.0E+9
271 basx310 toEng 10e8 -> 1.0E+9
272 basx311 toSci 10e7 -> 1.0E+8
273 basx312 toEng 10e7 -> 100E+6
274 basx313 toSci 10e6 -> 1.0E+7
275 basx314 toEng 10e6 -> 10E+6
276 basx315 toSci 10e5 -> 1.0E+6
277 basx316 toEng 10e5 -> 1.0E+6
278 basx317 toSci 10e4 -> 1.0E+5
279 basx318 toEng 10e4 -> 100E+3
280 basx319 toSci 10e3 -> 1.0E+4
281 basx320 toEng 10e3 -> 10E+3
282 basx321 toSci 10e2 -> 1.0E+3
283 basx322 toEng 10e2 -> 1.0E+3
284 basx323 toSci 10e1 -> 1.0E+2
302 basx341 toSci 10e-8 -> 1.0E-7
303 basx342 toEng 10e-8 -> 100E-9
304 basx343 toSci 10e-9 -> 1.0E-8
305 basx344 toEng 10e-9 -> 10E-9
306 basx345 toSci 10e-10 -> 1.0E-9
307 basx346 toEng 10e-10 -> 1.0E-9
308 basx347 toSci 10e-11 -> 1.0E-10
309 basx348 toEng 10e-11 -> 100E-12
310 basx349 toSci 10e-12 -> 1.0E-11
311 basx350 toEng 10e-12 -> 10E-12
312 basx351 toSci 10e-13 -> 1.0E-12
313 basx352 toEng 10e-13 -> 1.0E-12
315 basx361 toSci 7E12 -> 7E+12
316 basx362 toEng 7E12 -> 7E+12
317 basx363 toSci 7E11 -> 7E+11
318 basx364 toEng 7E11 -> 700E+9
319 basx365 toSci 7E10 -> 7E+10
320 basx366 toEng 7E10 -> 70E+9
321 basx367 toSci 7E9 -> 7E+9
322 basx368 toEng 7E9 -> 7E+9
323 basx369 toSci 7E8 -> 7E+8
324 basx370 toEng 7E8 -> 700E+6
325 basx371 toSci 7E7 -> 7E+7
326 basx372 toEng 7E7 -> 70E+6
327 basx373 toSci 7E6 -> 7E+6
328 basx374 toEng 7E6 -> 7E+6
329 basx375 toSci 7E5 -> 7E+5
330 basx376 toEng 7E5 -> 700E+3
331 basx377 toSci 7E4 -> 7E+4
332 basx378 toEng 7E4 -> 70E+3
333 basx379 toSci 7E3 -> 7E+3
334 basx380 toEng 7E3 -> 7E+3
335 basx381 toSci 7E2 -> 7E+2
337 basx383 toSci 7E1 -> 7E+1
341 basx387 toSci 7E-1 -> 0.7
342 basx388 toEng 7E-1 -> 0.7
343 basx389 toSci 7E-2 -> 0.07
344 basx390 toEng 7E-2 -> 0.07
345 basx391 toSci 7E-3 -> 0.007
346 basx392 toEng 7E-3 -> 0.007
347 basx393 toSci 7E-4 -> 0.0007
348 basx394 toEng 7E-4 -> 0.0007
349 basx395 toSci 7E-5 -> 0.00007
350 basx396 toEng 7E-5 -> 0.00007
351 basx397 toSci 7E-6 -> 0.000007
352 basx398 toEng 7E-6 -> 0.000007
353 basx399 toSci 7E-7 -> 7E-7
354 basx400 toEng 7E-7 -> 700E-9
355 basx401 toSci 7E-8 -> 7E-8
356 basx402 toEng 7E-8 -> 70E-9
357 basx403 toSci 7E-9 -> 7E-9
358 basx404 toEng 7E-9 -> 7E-9
359 basx405 toSci 7E-10 -> 7E-10
360 basx406 toEng 7E-10 -> 700E-12
361 basx407 toSci 7E-11 -> 7E-11
362 basx408 toEng 7E-11 -> 70E-12
363 basx409 toSci 7E-12 -> 7E-12
364 basx410 toEng 7E-12 -> 7E-12
365 basx411 toSci 7E-13 -> 7E-13
366 basx412 toEng 7E-13 -> 700E-15
390 basx440 toSci 1000000000 -> 1.00000000E+9 Rounded
391 basx441 toEng 1000000000 -> 1.00000000E+9 Rounded
392 basx442 toSci 1000000000 -> 1.00000000E+9 Rounded
393 basx443 toEng 1000000000 -> 1.00000000E+9 Rounded
394 basx444 toSci 1000000003 -> 1.00000000E+9 Rounded Inexact
395 basx445 toEng 1000000003 -> 1.00000000E+9 Rounded Inexact
396 basx446 toSci 1000000005 -> 1.00000001E+9 Rounded Inexact
397 basx447 toEng 1000000005 -> 1.00000001E+9 Rounded Inexact
398 basx448 toSci 10000000050 -> 1.00000001E+10 Rounded Inexact
399 basx449 toEng 10000000050 -> 10.0000001E+9 Rounded Inexact
400 basx450 toSci 1000000009 -> 1.00000001E+9 Rounded Inexact
401 basx451 toEng 1000000009 -> 1.00000001E+9 Rounded Inexact
402 basx452 toSci 10000000000 -> 1.00000000E+10 Rounded
403 basx453 toEng 10000000000 -> 10.0000000E+9 Rounded
404 basx454 toSci 10000000003 -> 1.00000000E+10 Rounded Inexact
405 basx455 toEng 10000000003 -> 10.0000000E+9 Rounded Inexact
406 basx456 toSci 10000000005 -> 1.00000000E+10 Rounded Inexact
407 basx457 toEng 10000000005 -> 10.0000000E+9 Rounded Inexact
408 basx458 toSci 10000000009 -> 1.00000000E+10 Rounded Inexact
409 basx459 toEng 10000000009 -> 10.0000000E+9 Rounded Inexact
410 basx460 toSci 100000000000 -> 1.00000000E+11 Rounded
411 basx461 toEng 100000000000 -> 100.000000E+9 Rounded
412 basx462 toSci 100000000300 -> 1.00000000E+11 Rounded Inexact
413 basx463 toEng 100000000300 -> 100.000000E+9 Rounded Inexact
414 basx464 toSci 100000000500 -> 1.00000001E+11 Rounded Inexact
415 basx465 toEng 100000000500 -> 100.000001E+9 Rounded Inexact
416 basx466 toSci 100000000900 -> 1.00000001E+11 Rounded Inexact
417 basx467 toEng 100000000900 -> 100.000001E+9 Rounded Inexact
418 basx468 toSci 1000000000000 -> 1.00000000E+12 Rounded
419 basx469 toEng 1000000000000 -> 1.00000000E+12 Rounded
420 basx470 toSci 1000000003000 -> 1.00000000E+12 Rounded Inexact
421 basx471 toEng 1000000003000 -> 1.00000000E+12 Rounded Inexact
422 basx472 toSci 1000000005000 -> 1.00000001E+12 Rounded Inexact
423 basx473 toEng 1000000005000 -> 1.00000001E+12 Rounded Inexact
424 basx474 toSci 1000000009000 -> 1.00000001E+12 Rounded Inexact
425 basx475 toEng 1000000009000 -> 1.00000001E+12 Rounded Inexact
431 basx271 toSci 9999999990 -> 9.99999999E+9 Rounded
432 basx272 toSci 9999999991 -> 9.99999999E+9 Rounded Inexact
433 basx273 toSci 9999999992 -> 9.99999999E+9 Rounded Inexact
434 basx274 toSci 9999999993 -> 9.99999999E+9 Rounded Inexact
435 basx275 toSci 9999999994 -> 9.99999999E+9 Rounded Inexact
436 basx276 toSci 9999999995 -> 1.00000000E+10 Rounded Inexact
437 basx277 toSci 9999999996 -> 1.00000000E+10 Rounded Inexact
438 basx278 toSci 9999999997 -> 1.00000000E+10 Rounded Inexact
439 basx279 toSci 9999999998 -> 1.00000000E+10 Rounded Inexact
440 basx280 toSci 9999999999 -> 1.00000000E+10 Rounded Inexact
441 basx281 toSci 9999999999999999 -> 1.00000000E+16 Rounded Inexact
526 basx480 toSci "0.09e999" -> '9E+997'
527 basx481 toSci "0.9e999" -> '9E+998'
528 basx482 toSci "9e999" -> '9E+999'
529 basx483 toSci "9.9e999" -> '9.9E+999'
530 basx484 toSci "9.99e999" -> '9.99E+999'
531 basx485 toSci "9.99e-999" -> '9.99E-999'
532 basx486 toSci "9.9e-999" -> '9.9E-999'
533 basx487 toSci "9e-999" -> '9E-999'
534 basx489 toSci "99e-999" -> '9.9E-998'
535 basx490 toSci "999e-999" -> '9.99E-997'
536 basx491 toSci '0.9e-998' -> '9E-999'
537 basx492 toSci '0.09e-997' -> '9E-999'
538 basx493 toSci '0.1e1000' -> '1E+999'
539 basx494 toSci '10e-1000' -> '1.0E-999'
597 basx552 toSci '1E+1.2' -> NaN Conversion_syntax
598 basx553 toSci '1E+1.2.3' -> NaN Conversion_syntax
599 basx554 toSci '1E++1' -> NaN Conversion_syntax
600 basx555 toSci '1E--1' -> NaN Conversion_syntax
601 basx556 toSci '1E+-1' -> NaN Conversion_syntax
602 basx557 toSci '1E-+1' -> NaN Conversion_syntax
603 basx558 toSci '1E''1' -> NaN Conversion_syntax
604 basx559 toSci "1E""1" -> NaN Conversion_syntax
605 basx560 toSci "1E""""" -> NaN Conversion_syntax
629 basx581 toSci 'E+1' -> NaN Conversion_syntax
630 basx582 toSci '.E+1' -> NaN Conversion_syntax
631 basx583 toSci '+.E+1' -> NaN Conversion_syntax
632 basx584 toSci '-.E+' -> NaN Conversion_syntax
633 basx585 toSci '-.E' -> NaN Conversion_syntax
642 basx601 toSci 0.000000000 -> 0E-9
643 basx602 toSci 0.00000000 -> 0E-8
644 basx603 toSci 0.0000000 -> 0E-7
661 basx620 toSci -0.0000000 -> -0E-7
662 basx621 toSci -0.00000000 -> -0E-8
663 basx622 toSci -0.000000000 -> -0E-9
665 basx630 toSci 0.00E+0 -> 0.00
666 basx631 toSci 0.00E+1 -> 0.0
667 basx632 toSci 0.00E+2 -> 0
668 basx633 toSci 0.00E+3 -> 0E+1
669 basx634 toSci 0.00E+4 -> 0E+2
670 basx635 toSci 0.00E+5 -> 0E+3
671 basx636 toSci 0.00E+6 -> 0E+4
672 basx637 toSci 0.00E+7 -> 0E+5
673 basx638 toSci 0.00E+8 -> 0E+6
674 basx639 toSci 0.00E+9 -> 0E+7
676 basx640 toSci 0.0E+0 -> 0.0
677 basx641 toSci 0.0E+1 -> 0
678 basx642 toSci 0.0E+2 -> 0E+1
679 basx643 toSci 0.0E+3 -> 0E+2
680 basx644 toSci 0.0E+4 -> 0E+3
681 basx645 toSci 0.0E+5 -> 0E+4
682 basx646 toSci 0.0E+6 -> 0E+5
683 basx647 toSci 0.0E+7 -> 0E+6
684 basx648 toSci 0.0E+8 -> 0E+7
685 basx649 toSci 0.0E+9 -> 0E+8
687 basx650 toSci 0E+0 -> 0
688 basx651 toSci 0E+1 -> 0E+1
689 basx652 toSci 0E+2 -> 0E+2
690 basx653 toSci 0E+3 -> 0E+3
691 basx654 toSci 0E+4 -> 0E+4
692 basx655 toSci 0E+5 -> 0E+5
693 basx656 toSci 0E+6 -> 0E+6
694 basx657 toSci 0E+7 -> 0E+7
695 basx658 toSci 0E+8 -> 0E+8
696 basx659 toSci 0E+9 -> 0E+9
698 basx660 toSci 0.0E-0 -> 0.0
699 basx661 toSci 0.0E-1 -> 0.00
700 basx662 toSci 0.0E-2 -> 0.000
701 basx663 toSci 0.0E-3 -> 0.0000
702 basx664 toSci 0.0E-4 -> 0.00000
703 basx665 toSci 0.0E-5 -> 0.000000
704 basx666 toSci 0.0E-6 -> 0E-7
705 basx667 toSci 0.0E-7 -> 0E-8
706 basx668 toSci 0.0E-8 -> 0E-9
707 basx669 toSci 0.0E-9 -> 0E-10
709 basx670 toSci 0.00E-0 -> 0.00
710 basx671 toSci 0.00E-1 -> 0.000
711 basx672 toSci 0.00E-2 -> 0.0000
712 basx673 toSci 0.00E-3 -> 0.00000
713 basx674 toSci 0.00E-4 -> 0.000000
714 basx675 toSci 0.00E-5 -> 0E-7
715 basx676 toSci 0.00E-6 -> 0E-8
716 basx677 toSci 0.00E-7 -> 0E-9
717 basx678 toSci 0.00E-8 -> 0E-10
718 basx679 toSci 0.00E-9 -> 0E-11
833 basx800 toEng 0e+1 -> "0.00E+3" -- doc example
835 basx801 toEng 0.000000000 -> 0E-9
836 basx802 toEng 0.00000000 -> 0.00E-6
837 basx803 toEng 0.0000000 -> 0.0E-6
854 basx820 toEng -0.0000000 -> -0.0E-6
855 basx821 toEng -0.00000000 -> -0.00E-6
856 basx822 toEng -0.000000000 -> -0E-9
858 basx830 toEng 0.00E+0 -> 0.00
859 basx831 toEng 0.00E+1 -> 0.0
860 basx832 toEng 0.00E+2 -> 0
861 basx833 toEng 0.00E+3 -> 0.00E+3
862 basx834 toEng 0.00E+4 -> 0.0E+3
863 basx835 toEng 0.00E+5 -> 0E+3
864 basx836 toEng 0.00E+6 -> 0.00E+6
865 basx837 toEng 0.00E+7 -> 0.0E+6
866 basx838 toEng 0.00E+8 -> 0E+6
867 basx839 toEng 0.00E+9 -> 0.00E+9
869 basx840 toEng 0.0E+0 -> 0.0
870 basx841 toEng 0.0E+1 -> 0
871 basx842 toEng 0.0E+2 -> 0.00E+3
872 basx843 toEng 0.0E+3 -> 0.0E+3
873 basx844 toEng 0.0E+4 -> 0E+3
874 basx845 toEng 0.0E+5 -> 0.00E+6
875 basx846 toEng 0.0E+6 -> 0.0E+6
876 basx847 toEng 0.0E+7 -> 0E+6
877 basx848 toEng 0.0E+8 -> 0.00E+9
878 basx849 toEng 0.0E+9 -> 0.0E+9
880 basx850 toEng 0E+0 -> 0
881 basx851 toEng 0E+1 -> 0.00E+3
882 basx852 toEng 0E+2 -> 0.0E+3
883 basx853 toEng 0E+3 -> 0E+3
884 basx854 toEng 0E+4 -> 0.00E+6
885 basx855 toEng 0E+5 -> 0.0E+6
886 basx856 toEng 0E+6 -> 0E+6
887 basx857 toEng 0E+7 -> 0.00E+9
888 basx858 toEng 0E+8 -> 0.0E+9
889 basx859 toEng 0E+9 -> 0E+9
891 basx860 toEng 0.0E-0 -> 0.0
892 basx861 toEng 0.0E-1 -> 0.00
893 basx862 toEng 0.0E-2 -> 0.000
894 basx863 toEng 0.0E-3 -> 0.0000
895 basx864 toEng 0.0E-4 -> 0.00000
896 basx865 toEng 0.0E-5 -> 0.000000
897 basx866 toEng 0.0E-6 -> 0.0E-6
898 basx867 toEng 0.0E-7 -> 0.00E-6
899 basx868 toEng 0.0E-8 -> 0E-9
900 basx869 toEng 0.0E-9 -> 0.0E-9
902 basx870 toEng 0.00E-0 -> 0.00
903 basx871 toEng 0.00E-1 -> 0.000
904 basx872 toEng 0.00E-2 -> 0.0000
905 basx873 toEng 0.00E-3 -> 0.00000
906 basx874 toEng 0.00E-4 -> 0.000000
907 basx875 toEng 0.00E-5 -> 0.0E-6
908 basx876 toEng 0.00E-6 -> 0.00E-6
909 basx877 toEng 0.00E-7 -> 0E-9
910 basx878 toEng 0.00E-8 -> 0.0E-9
911 basx879 toEng 0.00E-9 -> 0.00E-9
919 basx908 toSci '0.9e-999999999' -> 9E-1000000000 Subnormal
920 basx909 toSci '0.09e-999999999' -> 9E-1000000001 Subnormal
921 basx910 toSci '0.1e1000000000' -> 1E+999999999
922 basx911 toSci '10e-1000000000' -> 1.0E-999999999
924 basx913 toSci '99e-9999999999' -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
926 basx915 toSci '1111e-9999999999' -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
927 basx916 toSci '1111e-99999999999' -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
932 basx920 toSci '-0.9e-999999999' -> -9E-1000000000 Subnormal
933 basx921 toSci '-0.09e-999999999' -> -9E-1000000001 Subnormal
934 basx922 toSci '-0.1e1000000000' -> -1E+999999999
935 basx923 toSci '-10e-1000000000' -> -1.0E-999999999
937 basx925 toSci '-99e-9999999999' -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
939 basx927 toSci '-1111e-9999999999' -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
940 basx928 toSci '-1111e-99999999999' -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
945 basx931 toSci '-7e1000000000' -> -9.99999999E+999999999 Overflow Inexact Rounded
950 basx934 toSci '7e1000000000' -> 9.99999999E+999999999 Overflow Inexact Rounded
951 basx935 toSci '-7e1000000000' -> -9.99999999E+999999999 Overflow Inexact Rounded
953 basx936 toSci '7e1000000000' -> 9.99999999E+999999999 Overflow Inexact Rounded
973 basx951 toSci '99e999' -> '9.9E+1000'
974 basx952 toSci '999e999' -> '9.99E+1001'
975 basx953 toSci '0.9e-999' -> '9E-1000'
976 basx954 toSci '0.09e-999' -> '9E-1001'
977 basx955 toSci '0.1e1001' -> '1E+1000'
978 basx956 toSci '10e-1001' -> '1.0E-1000'
979 basx957 toSci '0.9e9999' -> '9E+9998'
980 basx958 toSci '99e-9999' -> '9.9E-9998'
981 basx959 toSci '111e9997' -> '1.11E+9999'
982 basx960 toSci '1111e-9999' -> '1.111E-9996'
983 basx961 toSci '99e9999' -> '9.9E+10000'
984 basx962 toSci '999e9999' -> '9.99E+10001'
985 basx963 toSci '0.9e-9999' -> '9E-10000'
986 basx964 toSci '0.09e-9999' -> '9E-10001'
987 basx965 toSci '0.1e10001' -> '1E+10000'
988 basx966 toSci '10e-10001' -> '1.0E-10000'
989 basx967 toSci '0.9e99999' -> '9E+99998'
990 basx968 toSci '99e-99999' -> '9.9E-99998'
991 basx969 toSci '111e99999' -> '1.11E+100001'
992 basx970 toSci '1111e-99999' -> '1.111E-99996'
993 basx971 toSci "0.09e999999999" -> '9E+999999997'
994 basx972 toSci "0.9e999999999" -> '9E+999999998'
995 basx973 toSci "9e999999999" -> '9E+999999999'
996 basx974 toSci "9.9e999999999" -> '9.9E+999999999'
997 basx975 toSci "9.99e999999999" -> '9.99E+999999999'
998 basx976 toSci "9.99e-999999999" -> '9.99E-999999999'
999 basx977 toSci "9.9e-999999999" -> '9.9E-999999999'
1000 basx978 toSci "9e-999999999" -> '9E-999999999'
1001 basx979 toSci "99e-999999999" -> '9.9E-999999998'
1002 basx980 toSci "999e-999999999" -> '9.99E-999999997'
1008 emax001 toSci -1E+2 -> -Infinity Overflow Inexact Rounded
1020 emax013 toSci 1E+2 -> Infinity Overflow Inexact Rounded
1024 emax017 toSci 1E-1 -> 0.1 Subnormal
1025 emax018 toSci 1E-2 -> 0.01 Subnormal
1029 emax100 toSci -1E+3 -> -Infinity Overflow Inexact Rounded
1030 emax101 toSci -1E+2 -> -Infinity Overflow Inexact Rounded
1042 emax113 toSci 1E+2 -> Infinity Overflow Inexact Rounded
1043 emax114 toSci 1E+3 -> Infinity Overflow Inexact Rounded
1047 emax118 toSci 1E-1 -> 0.1
1048 emax119 toSci 1E-2 -> 0.01 Subnormal
1049 emax120 toSci 1E-3 -> 0.001 Subnormal
1050 emax121 toSci 1.1E-3 -> 0.0011 Subnormal
1051 emax122 toSci 1.11E-3 -> 0.00111 Subnormal
1052 emax123 toSci 1.111E-3 -> 0.00111 Subnormal Underflow Inexact Rounded
1053 emax124 toSci 1.1111E-3 -> 0.00111 Subnormal Underflow Inexact Rounded
1054 emax125 toSci 1.11111E-3 -> 0.00111 Subnormal Underflow Inexact Rounded
1059 emax200 toSci -1E+3 -> -Infinity Overflow Inexact Rounded
1060 emax201 toSci -1E+2 -> -1E+2
1072 emax213 toSci 1E+2 -> 1E+2
1073 emax214 toSci 1E+3 -> Infinity Overflow Inexact Rounded
1078 emax219 toSci 1E-1 -> 0.1
1079 emax220 toSci 1E-2 -> 0.01
1080 emax221 toSci 1E-3 -> 0.001 Subnormal
1081 emax222 toSci 1E-4 -> 0.0001 Subnormal
1082 emax223 toSci 1E-5 -> 0.00001 Subnormal
1083 emax224 toSci 1E-6 -> 0.000001 Subnormal
1084 emax225 toSci 1E-7 -> 1E-7 Subnormal
1085 emax226 toSci 1E-8 -> 1E-8 Subnormal
1086 emax227 toSci 1E-9 -> 1E-9 Subnormal
1087 emax228 toSci 1E-10 -> 1E-10 Subnormal
1088 emax229 toSci 1E-11 -> 0E-10 Underflow Subnormal Inexact Rounded Clamped
1089 emax230 toSci 1E-12 -> 0E-10 Underflow Subnormal Inexact Rounded Clamped
1093 emax231 toSci 1E-8 -> 1E-8 Subnormal
1094 emax232 toSci 1E-7 -> 1E-7
1095 emax233 toSci 1E-6 -> 0.000001
1096 emax234 toSci 1E-5 -> 0.00001
1097 emax235 toSci 1E+5 -> 1E+5
1098 emax236 toSci 1E+6 -> 1E+6
1099 emax237 toSci 1E+7 -> 1E+7
1100 emax238 toSci 1E+8 -> Infinity Overflow Inexact Rounded
1104 emax240 toSci 1E-21 -> 0E-17 Subnormal Underflow Inexact Rounded Clamped
1105 emax241 toSci 1E-10 -> 1E-10 Subnormal
1106 emax242 toSci 1E-9 -> 1E-9
1107 emax243 toSci 1E-8 -> 1E-8
1108 emax244 toSci 1E-7 -> 1E-7
1109 emax245 toSci 1E+7 -> 1E+7
1110 emax246 toSci 1E+8 -> 1E+8
1111 emax247 toSci 1E+9 -> 1E+9
1112 emax248 toSci 1E+10 -> Infinity Overflow Inexact Rounded
1116 emax250 toSci 1E-21 -> 0E-18 Underflow Subnormal Inexact Rounded Clamped
1117 emax251 toSci 1E-11 -> 1E-11 Subnormal
1118 emax252 toSci 1E-10 -> 1E-10
1119 emax253 toSci 1E-9 -> 1E-9
1120 emax254 toSci 1E-8 -> 1E-8
1121 emax255 toSci 1E+8 -> 1E+8
1122 emax256 toSci 1E+9 -> 1E+9
1123 emax257 toSci 1E+10 -> 1E+10
1124 emax258 toSci 1E+11 -> Infinity Overflow Inexact Rounded
1126 emax260 toSci 1.00E-21 -> 0E-18 Underflow Subnormal Inexact Rounded Clamped
1127 emax261 toSci 1.00E-11 -> 1.00E-11 Subnormal
1128 emax262 toSci 1.00E-10 -> 1.00E-10
1129 emax263 toSci 1.00E-9 -> 1.00E-9
1130 emax264 toSci 1.00E-8 -> 1.00E-8
1131 emax265 toSci 1.00E+8 -> 1.00E+8
1132 emax266 toSci 1.00E+9 -> 1.00E+9
1133 emax267 toSci 1.00E+10 -> 1.00E+10
1134 emax268 toSci 1.00E+11 -> Infinity Overflow Inexact Rounded
1135 emax270 toSci 9.99E-21 -> 0E-18 Underflow Subnormal Inexact Rounded Clamped
1136 emax271 toSci 9.99E-11 -> 9.99E-11 Subnormal
1137 emax272 toSci 9.99E-10 -> 9.99E-10
1138 emax273 toSci 9.99E-9 -> 9.99E-9
1139 emax274 toSci 9.99E-8 -> 9.99E-8
1140 emax275 toSci 9.99E+8 -> 9.99E+8
1141 emax276 toSci 9.99E+9 -> 9.99E+9
1142 emax277 toSci 9.99E+10 -> 9.99E+10
1143 emax278 toSci 9.99E+11 -> Infinity Overflow Inexact Rounded
1147 emax280 toSci 1E-120 -> 0E-107 Underflow Subnormal Inexact Rounded Clamped
1148 emax281 toSci 1E-100 -> 1E-100 Subnormal
1149 emax282 toSci 1E-99 -> 1E-99
1150 emax283 toSci 1E-98 -> 1E-98
1151 emax284 toSci 1E+98 -> 1E+98
1152 emax285 toSci 1E+99 -> 1E+99
1153 emax286 toSci 1E+100 -> Infinity Overflow Inexact Rounded
1157 emax291 toSci 1E-1000 -> 1E-1000 Subnormal
1158 emax292 toSci 1E-999 -> 1E-999
1159 emax293 toSci 1E+999 -> 1E+999
1160 emax294 toSci 1E+1000 -> Infinity Overflow Inexact Rounded
1163 emax301 toSci 1E-10000 -> 1E-10000 Subnormal
1164 emax302 toSci 1E-9999 -> 1E-9999
1165 emax303 toSci 1E+9999 -> 1E+9999
1166 emax304 toSci 1E+10000 -> Infinity Overflow Inexact Rounded
1169 emax311 toSci 1E-100000 -> 1E-100000 Subnormal
1170 emax312 toSci 1E-99999 -> 1E-99999
1171 emax313 toSci 1E+99999 -> 1E+99999
1172 emax314 toSci 1E+100000 -> Infinity Overflow Inexact Rounded
1175 emax321 toSci 1E-1000000 -> 1E-1000000 Subnormal
1176 emax322 toSci 1E-999999 -> 1E-999999
1177 emax323 toSci 1E+999999 -> 1E+999999
1178 emax324 toSci 1E+1000000 -> Infinity Overflow Inexact Rounded
1181 emax331 toSci 1E-10000000 -> 1E-10000000 Subnormal
1182 emax332 toSci 1E-9999999 -> 1E-9999999
1183 emax333 toSci 1E+9999999 -> 1E+9999999
1184 emax334 toSci 1E+10000000 -> Infinity Overflow Inexact Rounded
1187 emax341 toSci 1E-100000000 -> 1E-100000000 Subnormal
1188 emax342 toSci 1E-99999999 -> 1E-99999999
1189 emax343 toSci 1E+99999999 -> 1E+99999999
1190 emax344 toSci 1E+100000000 -> Infinity Overflow Inexact Rounded
1194 emax347 toSci 1E-1000000008 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1195 emax348 toSci 1E-1000000007 -> 1E-1000000007 Subnormal
1196 emax349 toSci 1E-1000000000 -> 1E-1000000000 Subnormal
1197 emax350 toSci 1E-999999999 -> 1E-999999999
1198 emax351 toSci 1E+999999999 -> 1E+999999999
1199 emax352 toSci 1E+1000000000 -> Infinity Overflow Inexact Rounded
1200 emax353 toSci 1.000E-1000000000 -> 1.000E-1000000000 Subnormal
1201 emax354 toSci 1.000E-999999999 -> 1.000E-999999999
1202 emax355 toSci 1.000E+999999999 -> 1.000E+999999999
1203 emax356 toSci 1.000E+1000000000 -> Infinity Overflow Inexact Rounded
1204 emax357 toSci 1.001E-1000000008 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1205 emax358 toSci 1.001E-1000000007 -> 1E-1000000007 Subnormal Inexact Rounded Underflow
1206 emax359 toSci 1.001E-1000000000 -> 1.001E-1000000000 Subnormal
1207 emax360 toSci 1.001E-999999999 -> 1.001E-999999999
1208 emax361 toSci 1.001E+999999999 -> 1.001E+999999999
1209 emax362 toSci 1.001E+1000000000 -> Infinity Overflow Inexact Rounded
1210 emax363 toSci 9.000E-1000000000 -> 9.000E-1000000000 Subnormal
1211 emax364 toSci 9.000E-999999999 -> 9.000E-999999999
1212 emax365 toSci 9.000E+999999999 -> 9.000E+999999999
1213 emax366 toSci 9.000E+1000000000 -> Infinity Overflow Inexact Rounded
1214 emax367 toSci 9.999E-1000000009 -> 0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1215 emax368 toSci 9.999E-1000000008 -> 1E-1000000007 Underflow Subnormal Inexact Rounded
1216 emax369 toSci 9.999E-1000000007 -> 1.0E-1000000006 Underflow Subnormal Inexact Rounded
1217 emax370 toSci 9.999E-1000000000 -> 9.999E-1000000000 Subnormal
1218 emax371 toSci 9.999E-999999999 -> 9.999E-999999999
1219 emax372 toSci 9.999E+999999999 -> 9.999E+999999999
1221 emax373 toSci 9.999E+1000000000 -> Infinity Overflow Inexact Rounded
1222 emax374 toSci -1E-1000000000 -> -1E-1000000000 Subnormal
1223 emax375 toSci -1E-999999999 -> -1E-999999999
1224 emax376 toSci -1E+999999999 -> -1E+999999999
1225 emax377 toSci -1E+1000000000 -> -Infinity Overflow Inexact Rounded
1226 emax378 toSci -1.000E-1000000000 -> -1.000E-1000000000 Subnormal
1227 emax379 toSci -1.000E-999999999 -> -1.000E-999999999
1228 emax380 toSci -1.000E+999999999 -> -1.000E+999999999
1229 emax381 toSci -1.000E+1000000000 -> -Infinity Overflow Inexact Rounded
1230 emax382 toSci -1.001E-1000000008 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1231 emax383 toSci -1.001E-999999999 -> -1.001E-999999999
1232 emax384 toSci -1.001E+999999999 -> -1.001E+999999999
1233 emax385 toSci -1.001E+1000000000 -> -Infinity Overflow Inexact Rounded
1234 emax386 toSci -9.000E-1000000123 -> -0E-1000000007 Underflow Subnormal Inexact Rounded Clamped
1235 emax387 toSci -9.000E-999999999 -> -9.000E-999999999
1236 emax388 toSci -9.000E+999999999 -> -9.000E+999999999
1237 emax389 toSci -9.000E+1000000000 -> -Infinity Overflow Inexact Rounded
1238 emax390 toSci -9.999E-1000000008 -> -1E-1000000007 Underflow Subnormal Inexact Rounded
1239 emax391 toSci -9.999E-999999999 -> -9.999E-999999999
1240 emax392 toSci -9.999E+999999999 -> -9.999E+999999999
1241 emax393 toSci -9.999E+1000000000 -> -Infinity Overflow Inexact Rounded
1249 emax400 toSci 1.0000E-999 -> 1.0000E-999
1250 emax401 toSci 0.1E-999 -> 1E-1000 Subnormal
1251 emax402 toSci 0.1000E-999 -> 1.000E-1000 Subnormal
1252 emax403 toSci 0.0100E-999 -> 1.00E-1001 Subnormal
1253 emax404 toSci 0.0010E-999 -> 1.0E-1002 Subnormal
1254 emax405 toSci 0.0001E-999 -> 1E-1003 Subnormal
1255 emax406 toSci 0.00010E-999 -> 1E-1003 Subnormal Rounded
1256 emax407 toSci 0.00013E-999 -> 1E-1003 Underflow Subnormal Inexact Rounded
1257 emax408 toSci 0.00015E-999 -> 2E-1003 Underflow Subnormal Inexact Rounded
1258 emax409 toSci 0.00017E-999 -> 2E-1003 Underflow Subnormal Inexact Rounded
1259 emax410 toSci 0.00023E-999 -> 2E-1003 Underflow Subnormal Inexact Rounded
1260 emax411 toSci 0.00025E-999 -> 2E-1003 Underflow Subnormal Inexact Rounded
1261 emax412 toSci 0.00027E-999 -> 3E-1003 Underflow Subnormal Inexact Rounded
1262 emax413 toSci 0.000149E-999 -> 1E-1003 Underflow Subnormal Inexact Rounded
1263 emax414 toSci 0.000150E-999 -> 2E-1003 Underflow Subnormal Inexact Rounded
1264 emax415 toSci 0.000151E-999 -> 2E-1003 Underflow Subnormal Inexact Rounded
1265 emax416 toSci 0.000249E-999 -> 2E-1003 Underflow Subnormal Inexact Rounded
1266 emax417 toSci 0.000250E-999 -> 2E-1003 Underflow Subnormal Inexact Rounded
1267 emax418 toSci 0.000251E-999 -> 3E-1003 Underflow Subnormal Inexact Rounded
1268 emax419 toSci 0.00009E-999 -> 1E-1003 Underflow Subnormal Inexact Rounded
1269 emax420 toSci 0.00005E-999 -> 0E-1003 Underflow Subnormal Inexact Rounded Clamped
1270 emax421 toSci 0.00003E-999 -> 0E-1003 Underflow Subnormal Inexact Rounded Clamped
1271 emax422 toSci 0.000009E-999 -> 0E-1003 Underflow Subnormal Inexact Rounded Clamped
1272 emax423 toSci 0.000005E-999 -> 0E-1003 Underflow Subnormal Inexact Rounded Clamped
1273 emax424 toSci 0.000003E-999 -> 0E-1003 Underflow Subnormal Inexact Rounded Clamped
1275 emax425 toSci 0.001049E-999 -> 1.0E-1002 Underflow Subnormal Inexact Rounded
1276 emax426 toSci 0.001050E-999 -> 1.0E-1002 Underflow Subnormal Inexact Rounded
1277 emax427 toSci 0.001051E-999 -> 1.1E-1002 Underflow Subnormal Inexact Rounded
1278 emax428 toSci 0.001149E-999 -> 1.1E-1002 Underflow Subnormal Inexact Rounded
1279 emax429 toSci 0.001150E-999 -> 1.2E-1002 Underflow Subnormal Inexact Rounded
1280 emax430 toSci 0.001151E-999 -> 1.2E-1002 Underflow Subnormal Inexact Rounded
1282 emax432 toSci 0.010049E-999 -> 1.00E-1001 Underflow Subnormal Inexact Rounded
1283 emax433 toSci 0.010050E-999 -> 1.00E-1001 Underflow Subnormal Inexact Rounded
1284 emax434 toSci 0.010051E-999 -> 1.01E-1001 Underflow Subnormal Inexact Rounded
1285 emax435 toSci 0.010149E-999 -> 1.01E-1001 Underflow Subnormal Inexact Rounded
1286 emax436 toSci 0.010150E-999 -> 1.02E-1001 Underflow Subnormal Inexact Rounded
1287 emax437 toSci 0.010151E-999 -> 1.02E-1001 Underflow Subnormal Inexact Rounded
1289 emax440 toSci 0.10103E-999 -> 1.010E-1000 Underflow Subnormal Inexact Rounded
1290 emax441 toSci 0.10105E-999 -> 1.010E-1000 Underflow Subnormal Inexact Rounded
1291 emax442 toSci 0.10107E-999 -> 1.011E-1000 Underflow Subnormal Inexact Rounded
1292 emax443 toSci 0.10113E-999 -> 1.011E-1000 Underflow Subnormal Inexact Rounded
1293 emax444 toSci 0.10115E-999 -> 1.012E-1000 Underflow Subnormal Inexact Rounded
1294 emax445 toSci 0.10117E-999 -> 1.012E-1000 Underflow Subnormal Inexact Rounded
1296 emax450 toSci 1.10730E-1000 -> 1.107E-1000 Underflow Subnormal Inexact Rounded
1297 emax451 toSci 1.10750E-1000 -> 1.108E-1000 Underflow Subnormal Inexact Rounded
1298 emax452 toSci 1.10770E-1000 -> 1.108E-1000 Underflow Subnormal Inexact Rounded
1299 emax453 toSci 1.10830E-1000 -> 1.108E-1000 Underflow Subnormal Inexact Rounded
1300 emax454 toSci 1.10850E-1000 -> 1.108E-1000 Underflow Subnormal Inexact Rounded
1301 emax455 toSci 1.10870E-1000 -> 1.109E-1000 Underflow Subnormal Inexact Rounded
1304 emax456 toSci -0.10103E-999 -> -1.010E-1000 Underflow Subnormal Inexact Rounded
1305 emax457 toSci -0.10105E-999 -> -1.010E-1000 Underflow Subnormal Inexact Rounded
1306 emax458 toSci -0.10107E-999 -> -1.011E-1000 Underflow Subnormal Inexact Rounded
1307 emax459 toSci -0.10113E-999 -> -1.011E-1000 Underflow Subnormal Inexact Rounded
1308 emax460 toSci -0.10115E-999 -> -1.012E-1000 Underflow Subnormal Inexact Rounded
1309 emax461 toSci -0.10117E-999 -> -1.012E-1000 Underflow Subnormal Inexact Rounded
1312 emax464 toSci 999999E-999 -> 1.0000E-993 Inexact Rounded
1313 emax465 toSci 99999.0E-999 -> 9.9999E-995 Rounded
1314 emax466 toSci 99999.E-999 -> 9.9999E-995
1315 emax467 toSci 9999.9E-999 -> 9.9999E-996
1316 emax468 toSci 999.99E-999 -> 9.9999E-997
1317 emax469 toSci 99.999E-999 -> 9.9999E-998
1318 emax470 toSci 9.9999E-999 -> 9.9999E-999
1319 emax471 toSci 0.99999E-999 -> 1.0000E-999 Underflow Subnormal Inexact Rounded
1320 emax472 toSci 0.099999E-999 -> 1.000E-1000 Underflow Subnormal Inexact Rounded
1321 emax473 toSci 0.0099999E-999 -> 1.00E-1001 Underflow Subnormal Inexact Rounded
1322 emax474 toSci 0.00099999E-999 -> 1.0E-1002 Underflow Subnormal Inexact Rounded
1323 emax475 toSci 0.000099999E-999 -> 1E-1003 Underflow Subnormal Inexact Rounded
1324 emax476 toSci 0.0000099999E-999 -> 0E-1003 Underflow Subnormal Inexact Rounded Clamped
1325 emax477 toSci 0.00000099999E-999 -> 0E-1003 Underflow Subnormal Inexact Rounded Clamped
1326 emax478 toSci 0.000000099999E-999 -> 0E-1003 Underflow Subnormal Inexact Rounded Clamped
1332 basx1001 toSci 1e999999999 -> 1E+999999999
1333 basx1002 toSci 1e0999999999 -> 1E+999999999
1334 basx1003 toSci 1e00999999999 -> 1E+999999999
1335 basx1004 toSci 1e000999999999 -> 1E+999999999
1336 basx1005 toSci 1e000000000000999999999 -> 1E+999999999
1338 basx1007 toSci 1e-999999999 -> 1E-999999999
1339 basx1008 toSci 1e-0999999999 -> 1E-999999999
1340 basx1009 toSci 1e-00999999999 -> 1E-999999999
1341 basx1010 toSci 1e-000999999999 -> 1E-999999999
1342 basx1011 toSci 1e-000000000000999999999 -> 1E-999999999
1343 basx1012 toSci 1e-000000000001000000007 -> 1E-1000000007 Subnormal
1349 basx1024 tosci 1e-2147483647 -> 0E-1000000014 Underflow Subnormal Inexact Rounded Clamped
1350 basx1025 tosci 1e-2147483648 -> 0E-1000000014 Underflow Subnormal Inexact Rounded Clamped
1351 basx1026 tosci 1e-2147483649 -> 0E-1000000014 Underflow Subnormal Inexact Rounded Clamped
1359 basx1034 tosci 1e-2147483647 -> 0E-101 Underflow Subnormal Inexact Rounded Clamped
1360 basx1035 tosci 1e-2147483648 -> 0E-101 Underflow Subnormal Inexact Rounded Clamped
1361 basx1036 tosci 1e-2147483649 -> 0E-101 Underflow Subnormal Inexact Rounded Clamped
1367 basx1041 toSci 1.52444E-80 -> 1.524E-80 Inexact Rounded Subnormal Underflow
1368 basx1042 toSci 1.52445E-80 -> 1.524E-80 Inexact Rounded Subnormal Underflow
1369 basx1043 toSci 1.52446E-80 -> 1.524E-80 Inexact Rounded Subnormal Underflow
1376 basx1061 apply 0e+10000 -> 0E+6144 Clamped
1377 basx1062 apply 0e-10000 -> 0E-6176 Clamped
1378 basx1063 apply -0e+10000 -> -0E+6144 Clamped
1379 basx1064 apply -0e-10000 -> -0E-6176 Clamped
1385 basx1065 apply 0e+10000 -> 0E+384 Clamped
1386 basx1066 apply 0e-10000 -> 0E-398 Clamped
1387 basx1067 apply -0e+10000 -> -0E+384 Clamped
1388 basx1068 apply -0e-10000 -> -0E-398 Clamped
1397 basx1071 apply 0e+10000 -> 0E+6111 Clamped
1398 basx1072 apply 0e-10000 -> 0E-6176 Clamped
1399 basx1073 apply -0e+10000 -> -0E+6111 Clamped
1400 basx1074 apply -0e-10000 -> -0E-6176 Clamped
1406 basx1075 apply 0e+10000 -> 0E+369 Clamped
1407 basx1076 apply 0e-10000 -> 0E-398 Clamped
1408 basx1077 apply -0e+10000 -> -0E+369 Clamped
1409 basx1078 apply -0e-10000 -> -0E-398 Clamped