Searched refs:ElfMagic (Results 1 – 5 of 5) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | ELF.h | 46 static const char ElfMagic[] = {0x7f, 'E', 'L', 'F', '\0'}; variable 79 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0; in checkMagic() 103 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0; in checkMagic()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | ELF.h | 43 static const char ElfMagic[] = {0x7f, 'E', 'L', 'F', '\0'}; variable 77 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0; in checkMagic() 103 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0; in checkMagic()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | ELFTypes.h | 474 return (memcmp(e_ident, ELF::ElfMagic, strlen(ELF::ElfMagic))) == 0;
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceELFObjectWriter.cpp | 470 Str.writeBytes(llvm::StringRef(ElfMagic, strlen(ElfMagic))); in writeELFHeaderInternal()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | ELFObjectWriter.cpp | 418 W.OS << ELF::ElfMagic; // e_ident[EI_MAG0] to e_ident[EI_MAG3] in writeHeader()
|