Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.cpp127 uint64_t SSize = SI->getSize(); in getSectionByAddress() local
128 if ((Addr >= SAddr) && (Addr < SAddr + SSize)) in getSectionByAddress()
/external/llvm/include/llvm/ADT/
DIntervalMap.h286 void transferToLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToLeftSib() argument
288 Sib.copy(*this, 0, SSize, Count); in transferToLeftSib()
297 void transferToRightSib(unsigned Size, NodeBase &Sib, unsigned SSize, in transferToRightSib() argument
299 Sib.moveRight(0, Count, SSize); in transferToRightSib()
310 int adjustFromLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, int Add) { in adjustFromLeftSib() argument
313 unsigned Count = std::min(std::min(unsigned(Add), SSize), N - Size); in adjustFromLeftSib()
314 Sib.transferToRightSib(SSize, *this, Size, Count); in adjustFromLeftSib()
318 unsigned Count = std::min(std::min(unsigned(-Add), Size), N - SSize); in adjustFromLeftSib()
319 transferToLeftSib(Size, Sib, SSize, Count); in adjustFromLeftSib()