Searched refs:SSize (Results 1 – 2 of 2) sorted by relevance
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/ |
| HD | IntervalMap.h | 292 void transferToLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToLeftSib() argument 294 Sib.copy(*this, 0, SSize, Count); in transferToLeftSib() 303 void transferToRightSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToRightSib() argument 305 Sib.moveRight(0, Count, SSize); in transferToRightSib() 316 int adjustFromLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, int Add) { in adjustFromLeftSib() argument 319 unsigned Count = std::min(std::min(unsigned(Add), SSize), N - Size); in adjustFromLeftSib() 320 Sib.transferToRightSib(SSize, *this, Size, Count); in adjustFromLeftSib() 324 unsigned Count = std::min(std::min(unsigned(-Add), Size), N - SSize); in adjustFromLeftSib() 325 transferToLeftSib(Size, Sib, SSize, Count); in adjustFromLeftSib()
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| HD | RuntimeDyldMachO.cpp | 170 uint64_t SSize = SI->getSize(); in getSectionByAddress() local 171 if ((Addr >= SAddr) && (Addr < SAddr + SSize)) in getSectionByAddress()
|