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

  /external/llvm/include/llvm/Object/
ELFTypes.h 332 uint32_t getRInfo(bool isMips64EL) const {
333 assert(!isMips64EL);
336 void setRInfo(uint32_t R, bool IsMips64EL) {
337 assert(!IsMips64EL);
343 uint32_t getSymbol(bool isMips64EL) const {
344 return this->getRInfo(isMips64EL) >> 8;
346 unsigned char getType(bool isMips64EL) const {
347 return (unsigned char)(this->getRInfo(isMips64EL) & 0x0ff);
349 void setSymbol(uint32_t s, bool IsMips64EL) {
350 setSymbolAndType(s, getType(), IsMips64EL);
    [all...]
ELFObjectFile.h 669 symbolIdx = getRel(Rel)->getSymbol(EF.isMips64EL());
671 symbolIdx = getRela(Rel)->getSymbol(EF.isMips64EL());
699 return getRel(Rel)->getType(EF.isMips64EL());
701 return getRela(Rel)->getType(EF.isMips64EL());
ELF.h 101 bool isMips64EL() const {
310 uint32_t Index = Rel->getSymbol(isMips64EL());
  /external/llvm/tools/yaml2obj/
yaml2elf.cpp 356 static bool isMips64EL(const ELFYAML::Object &Doc) {
389 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc));
395 REntry.setSymbolAndType(SymIdx, Rel.Type, isMips64EL(Doc));
  /external/llvm/tools/llvm-readobj/
ELFDumper.cpp     [all...]
  /external/llvm/tools/obj2yaml/
elf2yaml.cpp 207 R.Type = Rel->getType(Obj.isMips64EL());

Completed in 203 milliseconds