Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntervalMap.h293 /// @param SSize Number of elements in sib.
295 void transferToLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToLeftSib() argument
297 Sib.copy(*this, 0, SSize, Count); in transferToLeftSib()
304 /// @param SSize Number of elements in sib.
306 void transferToRightSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToRightSib() argument
308 Sib.moveRight(0, Count, SSize); in transferToRightSib()
316 /// @param SSize Number of elements in sib.
319 int adjustFromLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, int Add) { in adjustFromLeftSib() argument
322 unsigned Count = std::min(std::min(unsigned(Add), SSize), N - Size); in adjustFromLeftSib()
323 Sib.transferToRightSib(SSize, *thi in adjustFromLeftSib()
[all...]
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp170 uint64_t SSize = SI->getSize(); in getSectionByAddress() local
171 if ((Addr >= SAddr) && (Addr < SAddr + SSize)) in getSectionByAddress()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp3450 size_t SSize = Subscripts.size(); in tryDelinearizeFixedSize() local
3451 for (size_t I = 1; I < SSize; ++I) { in tryDelinearizeFixedSize()