Home | History | Annotate | Download | only in quic

Lines Matching full:exponent

107 // with 5-bit exponent (bias 1), 11-bit mantissa (effective 12 with hidden
109 // 16 bits (little-endian byte order) are split into exponent (high 5) and
112 // if (exponent == 0) value = mantissa;
113 // else value = (mantissa | 1 << 11) << (exponent - 1)