Searched defs:SSize (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/MC/MCAnalysis/
H A DMCObjectSymbolizer.cpp220 uint64_t SSize; It->getSize(SSize); local
221 if (Addr >= SAddr + SSize)
244 uint64_t SSize; local
245 Section.getSize(SSize);
251 if (FoundSAddr < SAddr + SSize)
/external/llvm/include/llvm/ADT/
H A DIntervalMap.h283 /// @param SSize Number of elements in sib.
285 void transferToLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, argument
287 Sib.copy(*this, 0, SSize, Count);
294 /// @param SSize Number of elements in sib.
296 void transferToRightSib(unsigned Size, NodeBase &Sib, unsigned SSize, argument
298 Sib.moveRight(0, Count, SSize);
306 /// @param SSize Number of elements in sib.
309 int adjustFromLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, int Add) { argument
312 unsigned Count = std::min(std::min(unsigned(Add), SSize), N - Size);
313 Sib.transferToRightSib(SSize, *thi
[all...]
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldMachO.cpp537 uint64_t SAddr, SSize; local
539 SI->getSize(SSize);
540 if ((Addr >= SAddr) && (Addr < SAddr + SSize))

Completed in 73 milliseconds