Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCCodeView.cpp620 unsigned RangeSize = computeLabelDiff(Layout, Range.first, Range.second); in encodeDefRange() local
621 GapAndRangeSizes.push_back({GapSize, RangeSize}); in encodeDefRange()
630 unsigned RangeSize = GapAndRangeSizes[I].second; in encodeDefRange() local
634 if (RangeSize + GapAndRangeSize > MaxDefRange) in encodeDefRange()
636 RangeSize += GapAndRangeSize; in encodeDefRange()
646 uint16_t Chunk = std::min((uint32_t)MaxDefRange, RangeSize); in encodeDefRange()
677 RangeSize -= Chunk; in encodeDefRange()
678 } while (RangeSize > 0); in encodeDefRange()
685 unsigned GapSize, RangeSize; in encodeDefRange() local
687 std::tie(GapSize, RangeSize) = GapAndRangeSizes[I]; in encodeDefRange()
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerRandom.h27 intptr_t RangeSize = To - From + 1; in operator() local
28 return operator()(RangeSize) + From; in operator()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
H A DDwarfTransformer.cpp255 const uint64_t RangeSize = EndAddress - StartAddress; in convertFunctionLineTable() local
260 if (!CUI.LineTable->lookupAddressRange(SecAddress, RangeSize, RowVector)) { in convertFunctionLineTable()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp2421 APInt RangeSize = Div->isExact() ? APInt(C2->getBitWidth(), 1) : *C2; in foldICmpDivConstant() local
2440 HiOverflow = addWithOverflow(HiBound, LoBound, RangeSize, false); in foldICmpDivConstant()
2445 LoBound = -(RangeSize - 1); in foldICmpDivConstant()
2446 HiBound = RangeSize; in foldICmpDivConstant()
2451 HiOverflow = addWithOverflow(HiBound, Prod, RangeSize, true); in foldICmpDivConstant()
2457 APInt DivNeg = -RangeSize; in foldICmpDivConstant()
2463 RangeSize.negate(); in foldICmpDivConstant()
2466 LoBound = RangeSize + 1; in foldICmpDivConstant()
2467 HiBound = -RangeSize; in foldICmpDivConstant()
2477 LoOverflow = addWithOverflow(LoBound, HiBound, RangeSize, true) ? -1:0; in foldICmpDivConstant()
[all …]