Searched refs:RangeSize (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerRandom.h31 intptr_t RangeSize = To - From + 1;
32 return operator()(RangeSize) + From;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp623 unsigned RangeSize = computeLabelDiff(Layout, Range.first, Range.second); local
624 GapAndRangeSizes.push_back({GapSize, RangeSize});
633 unsigned RangeSize = GapAndRangeSizes[I].second; local
637 if (RangeSize + GapAndRangeSize > MaxDefRange)
639 RangeSize += GapAndRangeSize;
649 uint16_t Chunk = std::min((uint32_t)MaxDefRange, RangeSize);
680 RangeSize -= Chunk;
681 } while (RangeSize > 0);
688 unsigned GapSize, RangeSize; local
690 std::tie(GapSize, RangeSize)
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DDwarfTransformer.cpp255 const uint64_t RangeSize = EndAddress - StartAddress; local
260 if (!CUI.LineTable->lookupAddressRange(SecAddress, RangeSize, RowVector)) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2395 APInt RangeSize = Div->isExact() ? APInt(C2->getBitWidth(), 1) : *C2; local
2414 HiOverflow = addWithOverflow(HiBound, LoBound, RangeSize, false);
2419 LoBound = -(RangeSize - 1);
2420 HiBound = RangeSize;
2425 HiOverflow = addWithOverflow(HiBound, Prod, RangeSize, true);
2431 APInt DivNeg = -RangeSize;
2437 RangeSize.negate();
2440 LoBound = RangeSize + 1;
2441 HiBound = -RangeSize;
2451 LoOverflow = addWithOverflow(LoBound, HiBound, RangeSize, tru
[all...]

Completed in 259 milliseconds