| 1 | /****************************************************************
|
|---|
| 2 |
|
|---|
| 3 | The author of this software is David M. Gay.
|
|---|
| 4 |
|
|---|
| 5 | Copyright (C) 1998, 2000 by Lucent Technologies
|
|---|
| 6 | All Rights Reserved
|
|---|
| 7 |
|
|---|
| 8 | Permission to use, copy, modify, and distribute this software and
|
|---|
| 9 | its documentation for any purpose and without fee is hereby
|
|---|
| 10 | granted, provided that the above copyright notice appear in all
|
|---|
| 11 | copies and that both that the copyright notice and this
|
|---|
| 12 | permission notice and warranty disclaimer appear in supporting
|
|---|
| 13 | documentation, and that the name of Lucent or any of its entities
|
|---|
| 14 | not be used in advertising or publicity pertaining to
|
|---|
| 15 | distribution of the software without specific, written prior
|
|---|
| 16 | permission.
|
|---|
| 17 |
|
|---|
| 18 | LUCENT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|---|
| 19 | INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
|
|---|
| 20 | IN NO EVENT SHALL LUCENT OR ANY OF ITS ENTITIES BE LIABLE FOR ANY
|
|---|
| 21 | SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|---|
| 22 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER
|
|---|
| 23 | IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
|---|
| 24 | ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF
|
|---|
| 25 | THIS SOFTWARE.
|
|---|
| 26 |
|
|---|
| 27 | ****************************************************************/
|
|---|
| 28 |
|
|---|
| 29 | /* Please send bug reports to
|
|---|
| 30 | David M. Gay
|
|---|
| 31 | Bell Laboratories, Room 2C-463
|
|---|
| 32 | 600 Mountain Avenue
|
|---|
| 33 | Murray Hill, NJ 07974-0636
|
|---|
| 34 | U.S.A.
|
|---|
| 35 | dmg@bell-labs.com
|
|---|
| 36 | */
|
|---|
| 37 |
|
|---|
| 38 | #include "gdtoaimp.h"
|
|---|
| 39 |
|
|---|
| 40 | void
|
|---|
| 41 | #ifdef KR_headers
|
|---|
| 42 | ULtof(L, bits, exp, k) ULong *L; ULong *bits; Long exp; int k;
|
|---|
| 43 | #else
|
|---|
| 44 | ULtof(ULong *L, ULong *bits, Long exp, int k)
|
|---|
| 45 | #endif
|
|---|
| 46 | {
|
|---|
| 47 | switch(k & STRTOG_Retmask) {
|
|---|
| 48 | case STRTOG_NoNumber:
|
|---|
| 49 | case STRTOG_Zero:
|
|---|
| 50 | *L = 0;
|
|---|
| 51 | break;
|
|---|
| 52 |
|
|---|
| 53 | case STRTOG_Normal:
|
|---|
| 54 | case STRTOG_NaNbits:
|
|---|
| 55 | L[0] = bits[0] & 0x7fffff | exp + 0x7f + 23 << 23;
|
|---|
| 56 | break;
|
|---|
| 57 |
|
|---|
| 58 | case STRTOG_Denormal:
|
|---|
| 59 | L[0] = bits[0];
|
|---|
| 60 | break;
|
|---|
| 61 |
|
|---|
| 62 | case STRTOG_Infinite:
|
|---|
| 63 | L[0] = 0x7f800000;
|
|---|
| 64 | break;
|
|---|
| 65 |
|
|---|
| 66 | case STRTOG_NaN:
|
|---|
| 67 | L[0] = 0x7fffffff;
|
|---|
| 68 | }
|
|---|
| 69 | if (k & STRTOG_Neg)
|
|---|
| 70 | L[0] |= 0x80000000L;
|
|---|
| 71 | }
|
|---|
| 72 |
|
|---|
| 73 | int
|
|---|
| 74 | #ifdef KR_headers
|
|---|
| 75 | strtorf(s, sp, rounding, f) CONST char *s; char **sp; int rounding; float *f;
|
|---|
| 76 | #else
|
|---|
| 77 | strtorf(CONST char *s, char **sp, int rounding, float *f)
|
|---|
| 78 | #endif
|
|---|
| 79 | {
|
|---|
| 80 | static FPI fpi0 = { 24, 1-127-24+1, 254-127-24+1, 1, SI };
|
|---|
| 81 | FPI *fpi, fpi1;
|
|---|
| 82 | ULong bits[1];
|
|---|
| 83 | Long exp;
|
|---|
| 84 | int k;
|
|---|
| 85 |
|
|---|
| 86 | fpi = &fpi0;
|
|---|
| 87 | if (rounding != FPI_Round_near) {
|
|---|
| 88 | fpi1 = fpi0;
|
|---|
| 89 | fpi1.rounding = rounding;
|
|---|
| 90 | fpi = &fpi1;
|
|---|
| 91 | }
|
|---|
| 92 | k = strtodg(s, sp, fpi, &exp, bits);
|
|---|
| 93 | ULtof((ULong*)f, bits, exp, k);
|
|---|
| 94 | return k;
|
|---|
| 95 | }
|
|---|