Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp4249 unsigned tensRemovable = (bits - bitsRequired) * 59 / 196; in AdjustToPrecision() local
4250 if (!tensRemovable) return; in AdjustToPrecision()
4252 exp += tensRemovable; in AdjustToPrecision()
4257 if (tensRemovable & 1) in AdjustToPrecision()
4259 tensRemovable >>= 1; in AdjustToPrecision()
4260 if (!tensRemovable) break; in AdjustToPrecision()