Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DPointerUnion.h33 constexpr int bitsRequired(unsigned n) { in bitsRequired() function
34 return n > 1 ? 1 + bitsRequired((n + 1) / 2) : 0; in bitsRequired()
116 void *, pointer_union_detail::bitsRequired(sizeof...(PTs)), int,
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPFloat.cpp3950 unsigned bitsRequired = (FormatPrecision * 196 + 58) / 59; in AdjustToPrecision() local
3952 if (bits <= bitsRequired) return; in AdjustToPrecision()
3954 unsigned tensRemovable = (bits - bitsRequired) * 59 / 196; in AdjustToPrecision()