Searched refs:RangeSize (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/MC/ |
H A D | MCCodeView.cpp | 636 unsigned RangeSize = computeLabelDiff(Asm, Range.first, Range.second); in encodeDefRange() local 637 GapAndRangeSizes.push_back({GapSize, RangeSize}); in encodeDefRange() 646 unsigned RangeSize = GapAndRangeSizes[I].second; in encodeDefRange() local 650 if (RangeSize + GapAndRangeSize > MaxDefRange) in encodeDefRange() 652 RangeSize += GapAndRangeSize; in encodeDefRange() 662 uint16_t Chunk = std::min((uint32_t)MaxDefRange, RangeSize); in encodeDefRange() 691 RangeSize -= Chunk; in encodeDefRange() 692 } while (RangeSize > 0); in encodeDefRange() 699 unsigned GapSize, RangeSize; in encodeDefRange() local 701 std::tie(GapSize, RangeSize) = GapAndRangeSizes[I]; in encodeDefRange() [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerRandom.h | 39 auto RangeSize = static_cast<unsigned long long>(To) - in operator() local 41 return static_cast<T>(this->operator()(RangeSize) + From); in operator()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/ |
H A D | DXILResource.cpp | 60 LowerBound(R.getResourceIndex()), RangeSize(1) { in ResourceBase() 62 RangeSize = ArrTy->getNumElements(); in ResourceBase() 228 if (RangeSize != UINT_MAX) in print() 229 OS << right_justify(std::to_string(RangeSize), 6) << "\n"; in print() 295 Entries[5] = ConstantAsMetadata::get(B.getInt32(RangeSize)); in write()
|
H A D | DXILResource.h | 38 uint32_t RangeSize; variable
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
H A D | DwarfTransformer.cpp | 319 const uint64_t RangeSize = EndAddress - StartAddress; in convertFunctionLineTable() local 324 if (!CUI.LineTable->lookupAddressRange(SecAddress, RangeSize, RowVector)) { in convertFunctionLineTable()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCompares.cpp | 2769 APInt RangeSize = Div->isExact() ? APInt(C2->getBitWidth(), 1) : *C2; in foldICmpDivConstant() local 2788 HiOverflow = addWithOverflow(HiBound, LoBound, RangeSize, false); in foldICmpDivConstant() 2793 LoBound = -(RangeSize - 1); in foldICmpDivConstant() 2794 HiBound = RangeSize; in foldICmpDivConstant() 2799 HiOverflow = addWithOverflow(HiBound, Prod, RangeSize, true); in foldICmpDivConstant() 2805 APInt DivNeg = -RangeSize; in foldICmpDivConstant() 2811 RangeSize.negate(); in foldICmpDivConstant() 2814 LoBound = RangeSize + 1; in foldICmpDivConstant() 2815 HiBound = -RangeSize; in foldICmpDivConstant() 2826 addWithOverflow(LoBound, HiBound, RangeSize, true) ? -1 : 0; in foldICmpDivConstant() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/ |
H A D | BitcodeReader.cpp | 2385 unsigned RangeSize = Record[i++]; in parseAttributeGroupBlock() local 2387 for (unsigned Idx = 0; Idx < RangeSize; ++Idx) { in parseAttributeGroupBlock()
|