summaryrefslogtreecommitdiff
path: root/src/internal/floatscan.c
AgeCommit message (Expand)AuthorLines
2016-10-20fix minor problem in previous strtod non-nearest rounding bug fixRich Felker-1/+1
2016-10-20fix strtod int optimization in non-nearest rounding modeSzabolcs Nagy-1/+4
2016-10-20fix strtod and strtof rounding with many trailing zerosSzabolcs Nagy-0/+3
2015-02-09add IEEE binary128 long double support to floatscanSzabolcs Nagy-1/+9
2012-11-08clean up stdio_impl.hRich Felker-0/+1
2012-10-21accept "nan(n-char-sequence)" in strtod/scanf functionsRich Felker-1/+19
2012-08-17fix float parsing logic for long decimal expansionsRich Felker-1/+1
2012-06-08fix scanning of "-0x" pseudo-hex float (must give negative zero)Rich Felker-1/+1
2012-04-30fix off-by-one error that caused uninitialized memory read in floatscanRich Felker-1/+1
2012-04-22remove redundant (unmaintained) check in floatscanRich Felker-3/+3
2012-04-21make floatscan correctly set errno for overflow/underflowRich Felker-4/+16
2012-04-21skip leading zeros even after decimal point in floatscanRich Felker-4/+9
2012-04-21fix overread (consuming an extra byte) scanning NANRich Felker-1/+1
2012-04-19fix really bad breakage in strtol, etc.: failure to accept leading spacesRich Felker-2/+3
2012-04-18fix typo in exponent reading code or floatsRich Felker-1/+1
2012-04-17fix failure to read infinity in scanfRich Felker-3/+4
2012-04-16floatscan: fix incorrect count of leading nonzero digitsRich Felker-1/+1
2012-04-12remove magic numbers from floatscanRich Felker-5/+5
2012-04-12optimize more integer cases in floatscan; comment the whole procedureRich Felker-8/+27
2012-04-11revert invalid optimization in floatscanRich Felker-2/+2
2012-04-11fix stupid typo in floatscan that caused excess rounding of some valuesRich Felker-1/+1
2012-04-11optimize floatscan downscaler to skip results that won't be neededRich Felker-2/+3
2012-04-11simplify/debloat radix point alignment code in floatscanRich Felker-9/+4
2012-04-11optimize floatscan: avoid excessive upscalingRich Felker-27/+27
2012-04-11fix bug parsing lone zero followed by junk, and hex float over-readingRich Felker-6/+5
2012-04-10fix float scanning of certain values ending in zerosRich Felker-1/+3
2012-04-10fix potential overflow in exponent readingRich Felker-1/+1
2012-04-10set errno properly when parsing floating pointRich Felker-4/+21
2012-04-10add "scan helper getc" and rework strtod, etc. to use itRich Felker-72/+59
2012-04-10new floating point parser/converterRich Felker-0/+438