Home
last modified time | relevance | path

Searched refs:gdtoa (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/gdtoa/
H A Dchanges216 gdtoa.tgz: gdtoa.c: analogous change:
344 gdtoa.tgz: add gdtoa/test/strtodt.c and gdtoa/test/testnos3 to test
395 gdtoa.tgz:
426 gdtoa.tgz:
442 gdtoa.tgz:
476 gdtoa/test/getround.c in gdtoa.tgz: simply report the current
489 Bring gdtoa/xsum0.out and gdtoa/test/xsum0.out up to date.
501 gdtoa/*fmt.c and gdtoa/gdtoa.h: bufsize changed from unsigned to size_t.
578 gdtoa/strtopx.c, gdtoa/strtopxL.c, gdtoa/strtorx.c, gdtoa/strtorxL.c:
645 dtoa.c, gdtoa/dtoa.c, gdtoa/gdtoa.c: fix bugs with -DROUND_BIASED
[all …]
H A Dmakefile37 all: arith.h gd_qnan.h gdtoa.a
49 gdtoa.a: dmisc.c dtoa.c g_Qfmt.c g__fmt.c g_ddfmt.c g_dfmt.c\
50 g_ffmt.c g_xLfmt.c g_xfmt.c gdtoa.c gethex.c gmisc.c hd_init.c\
57 x=`echo $? | sed 's/\.c/.o/g'` && $(AR) $(ARFLAGS) gdtoa.a $$x && rm $$x
58 ranlib gdtoa.a || true
62 $(AR) $(ARFLAGS) gdtoa.a printf.o
69 g_dfmt.c g_ffmt.c g_xLfmt.c g_xfmt.c gdtoa.c gdtoa.h\
H A DREADME32 and gdtoa for binary -> decimal conversions. These routines operate
35 struct FPI; FPI, Long, and ULong are defined in gdtoa.h. File arith.h
36 is supposed to provide #defines that cause gdtoa.h to define its
111 on strtodg; see the enum of possible return values in gdtoa.h.
193 conversion are easily done with the help of gdtoa(), such as %e or %f
208 The makefile creates a library, gdtoa.a. To use the helper
209 routines, a program only needs to include gdtoa.h. All the
210 source files for gdtoa.a include a more extensive gdtoaimp.h;
271 gdtoa
328 given in gdtoa.h.
[all …]
H A Dprintf.c040 #include "gdtoa.h"
43 #include "gdtoa.h"
65 #include "gdtoa.h"
124 pgdtoa gdtoa;
173 b->gdtoa = gdtoa;
203 #include "gdtoa.h"
234 b->gdtoa = gdtoa;
489 b->gdtoa = gdtoa;
997 s = s0 = fpb.gdtoa(fpb.fpi, fpb.ex, fpb.bits,
1101 s = s0 = fpb.gdtoa(fpb.fpi, fpb.ex, fpb.bits,
[all …]
H A Dg_ffmt.c91 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
H A Dg_dfmt.c93 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
H A Dg_xLfmt.c111 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
H A Dg_xfmt.c117 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
H A Dg_Qfmt.c117 s = gdtoa(fpi, ex, bits, &i, mode, ndig, &decpt, &se);
H A Dgdtoa.h108 extern char* gdtoa ANSI((FPI *fpi, int be, ULong *bits, int *kindp,
H A Dgdtoaimp.h514 #define gdtoa __gdtoa macro
615 extern char *gdtoa ANSI((FPI *fpi, int be, ULong *bits, int *kindp,
H A Dg_ddfmt.c166 s = gdtoa(&fpi, ex, bits, &i, mode, ndig, &decpt, &se);
H A Dgdtoa.c112 gdtoa in gdtoa() function
/freebsd/lib/libc/gdtoa/
H A DMakefile.inc3 .PATH: ${LIBC_SRCTOP}/gdtoa
6 GDTOASRCS+=dmisc.c dtoa.c gdtoa.c gethex.c gmisc.c \
10 SYM_MAPS+=${LIBC_SRCTOP}/gdtoa/Symbol.map
12 CFLAGS+=-I${SRCTOP}/contrib/gdtoa
17 gdtoa_${src}: ${SRCTOP}/contrib/gdtoa/${src} .NOMETA
H A DSymbol.map3 * Standard functions from contrib/gdtoa
H A D_ldtoa.c103 ret = gdtoa(&fpi, be, vbits, &kind, mode, ndigits, decpt, rve); in __ldtoa()