Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/lib/Support/
H A DAPFloat.cpp3324 unsigned bitsRequired = (FormatPrecision * 196 + 58) / 59; in AdjustToPrecision() local
3326 if (bits <= bitsRequired) return; in AdjustToPrecision()
3328 unsigned tensRemovable = (bits - bitsRequired) * 59 / 196; in AdjustToPrecision()