Home
last modified time | relevance | path

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

/minix3/external/bsd/llvm/dist/llvm/lib/Support/
H A DAPFloat.cpp3472 unsigned bitsRequired = (FormatPrecision * 196 + 58) / 59; in AdjustToPrecision() local
3474 if (bits <= bitsRequired) return; in AdjustToPrecision()
3476 unsigned tensRemovable = (bits - bitsRequired) * 59 / 196; in AdjustToPrecision()