This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH v3 0/2] Add string functions and libm tests for _Float128


I added a "Changes since v2" to each patch in this series.

Gabriel F. T. Gomes (1):
  float128: Add strfromf128, strtof128, and wcstof128 to the manual

Paul E. Murphy (1):
  float128: Add strtof128, wcstof128, and related functions.

 include/gmp.h                                  |  4 ++
 include/stdlib.h                               | 29 ++++++++++++++
 include/wchar.h                                | 13 +++++++
 manual/arith.texi                              | 45 ++++++++++++++++++---
 manual/math.texi                               | 11 ++++++
 stdlib/Makefile                                |  1 +
 stdlib/stdlib.h                                | 14 +++++++
 stdlib/tst-strtod-nan-locale-main.c            | 36 ++++++++---------
 stdlib/tst-strtod-round-skeleton.c             |  1 +
 stdlib/tst-strtod.h                            | 42 ++++++++++++++------
 sysdeps/ieee754/float128/Makefile              |  5 +++
 sysdeps/ieee754/float128/Versions              | 10 +++++
 sysdeps/ieee754/float128/mpn2float128.c        | 54 ++++++++++++++++++++++++++
 sysdeps/ieee754/float128/strtod_nan_float128.h | 33 ++++++++++++++++
 sysdeps/ieee754/float128/strtof128.c           | 34 ++++++++++++++++
 sysdeps/ieee754/float128/strtof128_l.c         | 43 ++++++++++++++++++++
 sysdeps/ieee754/float128/strtof128_nan.c       | 28 +++++++++++++
 sysdeps/ieee754/float128/wcstof128.c           | 30 ++++++++++++++
 sysdeps/ieee754/float128/wcstof128_l.c         | 30 ++++++++++++++
 sysdeps/ieee754/float128/wcstof128_nan.c       | 24 ++++++++++++
 wcsmbs/Makefile                                |  2 +
 wcsmbs/wchar.h                                 | 15 +++++++
 22 files changed, 470 insertions(+), 34 deletions(-)
 create mode 100644 sysdeps/ieee754/float128/mpn2float128.c
 create mode 100644 sysdeps/ieee754/float128/strtod_nan_float128.h
 create mode 100644 sysdeps/ieee754/float128/strtof128.c
 create mode 100644 sysdeps/ieee754/float128/strtof128_l.c
 create mode 100644 sysdeps/ieee754/float128/strtof128_nan.c
 create mode 100644 sysdeps/ieee754/float128/wcstof128.c
 create mode 100644 sysdeps/ieee754/float128/wcstof128_l.c
 create mode 100644 sysdeps/ieee754/float128/wcstof128_nan.c

-- 
2.4.11


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]