Searched refs:GapSize (Results 1 - 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCCodeView.cpp621 unsigned GapSize = local
624 GapAndRangeSizes.push_back({GapSize, RangeSize});
688 unsigned GapSize, RangeSize; local
690 std::tie(GapSize, RangeSize) = GapAndRangeSizes[I];
692 LEWriter.write<uint16_t>(GapSize);
693 GapStartOffset += GapSize + RangeSize;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveInterval.cpp1265 size_t GapSize = ReadI - WriteI;
1266 size_t NumMoved = std::min(Spills.size(), GapSize);
1302 size_t GapSize = ReadI - WriteI;
1303 if (GapSize < Spills.size()) {
1306 LR->segments.insert(ReadI, Spills.size() - GapSize, LiveRange::Segment());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp4859 uint64_t GapSize = 0;
4863 GapSize = ArgSize - ArgAllocSize;
4865 ShadowBase = getShadowAddrForVAArgument(IRB, GpOffset + GapSize);
4867 OriginBase = getOriginPtrForVAArgument(IRB, GpOffset + GapSize);
4910 uint64_t GapSize =
4913 getShadowAddrForVAArgument(IRB, OverflowOffset + GapSize);
4916 getOriginPtrForVAArgument(IRB, OverflowOffset + GapSize);

Completed in 266 milliseconds