| • Science | • People | • Locations | • Timeline |
| Contents | ||
Pedantic usage note: When using quad-precision as an adjective, as in quad-precision number, hyphenate it. When using it as a noun ("Double precision differs from quad precision."), do not hyphenate it.
In the IEEE 754r proposed revised floating point standard, this is the third basic binary floating point format, together with 64 bits double precision and the 32 bit single precision formats.
The format is written with an implicit integer bit with value 1 unless the written exponent is all zeros. Thus only 112 bits of the fraction appear in the memory format.
syyy yyyy yyyy yyyy xxxx xxxx xxxx xxxx … xxxx xxxx (112 xs)The true exponent = written exponent - exponent bias
0x0000 and 0x7fff are reserved exponents 0x0000 is used to represent zero and denormals 0x7fff is used to represent infinityInfinity is a word carrying a number of different meanings in mathematics, philosophy, theology and everyday life. In theology, for instance in the work of Duns Scotus, the infinity of God carries the sense not so much of quantity (leading to the question and NaNIn computing, NaN N ot a N umber) is a value or symbol that is usually produced as the result of an operation on invalid input operands, especially in floating-point calculations. For example, most floating-point units are unable to calculate the square rsAll bit patterns are valid encodings.
(1/3 rounds up like double precision, because of the odd number of bits in the significand.)
0000 0000 0000 0000 0000 0000 0000 0000 = 0 8000 0000 0000 0000 0000 0000 0000 0000 = -0 7f80 0000 0000 0000 0000 0000 0000 0000 = Infinity ff80 0000 0000 0000 0000 0000 0000 0000 = -Infinity