Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonAsmBackend.cpp613 int64_t maxValue; in fixupNeedsRelaxationAdvanced() local
617 maxValue = 1 << 8; in fixupNeedsRelaxationAdvanced()
620 maxValue = 1 << 10; in fixupNeedsRelaxationAdvanced()
623 maxValue = 1 << 16; in fixupNeedsRelaxationAdvanced()
626 maxValue = 1 << 23; in fixupNeedsRelaxationAdvanced()
629 maxValue = INT64_MAX; in fixupNeedsRelaxationAdvanced()
633 bool isFarAway = -maxValue > sValue || sValue > maxValue - 1; in fixupNeedsRelaxationAdvanced()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/lit/lit/
H A Dutil.py257 maxValue = max([v for _, v in items])
260 power = int(math.ceil(math.log(maxValue, 10)))
263 N = int(math.ceil(maxValue / barH))
271 bin = min(int(N * v / maxValue), N - 1)
282 pDigits = int(math.ceil(math.log(maxValue, 10)))
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/algorithm/
H A Dsorting.d3453 T minValue = 0, T maxValue = 255) in version()
3458 return iota(0, size).map!(_ => uniform(minValue, maxValue)).array; in version()