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

  /external/llvm/include/llvm/Object/
Archive.h 140 uint32_t SymbolIndex;
145 return (Parent == other.Parent) && (SymbolIndex == other.SymbolIndex);
150 , SymbolIndex(symi)
  /external/llvm/lib/Object/
Archive.cpp 452 Offset = read32be(Offsets + SymbolIndex * 4);
454 Offset = read64be(Offsets + SymbolIndex * 8);
456 // The SymbolIndex is an index into the ranlib structs that start at
462 Offset = read32le(Offsets + SymbolIndex * 8 + 4);
469 if (SymbolIndex >= SymbolCount)
477 uint16_t OffsetIndex = read16le(Indices + SymbolIndex * 2);
500 // struct indexed by t.SymbolIndex . To change t.StringIndex to the
501 // offset in the string table for t.SymbolIndex+1 we subtract the
502 // its offset from the start of the string table for t.SymbolIndex
503 // and add the offset of the string table for t.SymbolIndex+1
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldMachOI386.h 204 unsigned SymbolIndex =
206 symbol_iterator SI = Obj.getSymbolByIndex(SymbolIndex);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.cpp 191 unsigned SymbolIndex =
193 symbol_iterator SI = Obj.getSymbolByIndex(SymbolIndex);
198 DEBUG(dbgs() << " " << IndirectSymbolName << ": index " << SymbolIndex

Completed in 1644 milliseconds