HomeSort by: relevance | last modified time | path
    Searched refs:RangeSize (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerRandom.h 27 intptr_t RangeSize = To - From + 1;
28 return operator()(RangeSize) + From;
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCCodeView.cpp 620 unsigned RangeSize = computeLabelDiff(Layout, Range.first, Range.second);
621 GapAndRangeSizes.push_back({GapSize, RangeSize});
630 unsigned RangeSize = GapAndRangeSizes[I].second;
634 if (RangeSize + GapAndRangeSize > MaxDefRange)
636 RangeSize += GapAndRangeSize;
646 uint16_t Chunk = std::min((uint32_t)MaxDefRange, RangeSize);
677 RangeSize -= Chunk;
678 } while (RangeSize > 0);
685 unsigned GapSize, RangeSize;
687 std::tie(GapSize, RangeSize) = GapAndRangeSizes[I]
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
DwarfTransformer.cpp 255 const uint64_t RangeSize = EndAddress - StartAddress;
260 if (!CUI.LineTable->lookupAddressRange(SecAddress, RangeSize, RowVector)) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 2421 APInt RangeSize = Div->isExact() ? APInt(C2->getBitWidth(), 1) : *C2;
2440 HiOverflow = addWithOverflow(HiBound, LoBound, RangeSize, false);
2445 LoBound = -(RangeSize - 1);
2446 HiBound = RangeSize;
2451 HiOverflow = addWithOverflow(HiBound, Prod, RangeSize, true);
2457 APInt DivNeg = -RangeSize;
2463 RangeSize.negate();
2466 LoBound = RangeSize + 1;
2467 HiBound = -RangeSize;
2477 LoOverflow = addWithOverflow(LoBound, HiBound, RangeSize, true) ? -1:0
    [all...]

Completed in 21 milliseconds