Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DDynamicExtent.cpp32 if (auto SSize = in getDynamicExtent() local
34 return *SSize; in getDynamicExtent()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalMap.h296 void transferToLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToLeftSib() argument
298 Sib.copy(*this, 0, SSize, Count); in transferToLeftSib()
307 void transferToRightSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToRightSib() argument
309 Sib.moveRight(0, Count, SSize); in transferToRightSib()
320 int adjustFromLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, int Add) { in adjustFromLeftSib() argument
323 unsigned Count = std::min(std::min(unsigned(Add), SSize), N - Size); in adjustFromLeftSib()
324 Sib.transferToRightSib(SSize, *this, Size, Count); in adjustFromLeftSib()
328 unsigned Count = std::min(std::min(unsigned(-Add), Size), N - SSize); in adjustFromLeftSib()
329 transferToLeftSib(Size, Sib, SSize, Count); in adjustFromLeftSib()
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp169 uint64_t SSize = SI->getSize(); in getSectionByAddress() local
170 if ((Addr >= SAddr) && (Addr < SAddr + SSize)) in getSectionByAddress()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp3460 size_t SSize = Subscripts.size(); in tryDelinearizeFixedSize() local
3461 for (size_t I = 1; I < SSize; ++I) { in tryDelinearizeFixedSize()