HomeSort by relevance Sort by last modified time
    Searched refs:SSize (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/MC/MCAnalysis/
MCObjectSymbolizer.cpp 220 uint64_t SSize; It->getSize(SSize);
221 if (Addr >= SAddr + SSize)
244 uint64_t SSize;
245 Section.getSize(SSize);
251 if (FoundSAddr < SAddr + SSize)
  /external/llvm/include/llvm/ADT/
IntervalMap.h 283 /// @param SSize Number of elements in sib.
285 void transferToLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize,
287 Sib.copy(*this, 0, SSize, Count);
294 /// @param SSize Number of elements in sib.
296 void transferToRightSib(unsigned Size, NodeBase &Sib, unsigned SSize,
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) {
312 unsigned Count = std::min(std::min(unsigned(Add), SSize), N - Size);
313 Sib.transferToRightSib(SSize, *this, Size, Count)
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 537 uint64_t SAddr, SSize;
539 SI->getSize(SSize);
540 if ((Addr >= SAddr) && (Addr < SAddr + SSize))

Completed in 70 milliseconds