/external/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
D | ELF.cpp | 60 if (memcmp(Buffer.data(), ELF::ElfMagic, strlen(ELF::ElfMagic)) != 0) { in jitLink_ELF()
|
/external/llvm/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()
|
/external/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()
|
/external/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()
|
/external/llvm-project/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()
|
/external/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
D | ELFHeader.cpp | 158 return memcmp(magic, ElfMagic, strlen(ElfMagic)) == 0; in MagicBytesMatch()
|
/external/llvm-project/llvm/lib/InterfaceStub/ |
D | ELFObjHandler.cpp | 55 ElfHeader.e_ident[EI_MAG0] = ElfMagic[EI_MAG0]; in initELFHeader() 56 ElfHeader.e_ident[EI_MAG1] = ElfMagic[EI_MAG1]; in initELFHeader() 57 ElfHeader.e_ident[EI_MAG2] = ElfMagic[EI_MAG2]; in initELFHeader() 58 ElfHeader.e_ident[EI_MAG3] = ElfMagic[EI_MAG3]; in initELFHeader()
|
/external/llvm/include/llvm/Object/ |
D | ELFTypes.h | 488 return (memcmp(e_ident, ELF::ElfMagic, strlen(ELF::ElfMagic))) == 0;
|
/external/llvm-project/llvm/include/llvm/Object/ |
D | ELFTypes.h | 472 return (memcmp(e_ident, ELF::ElfMagic, strlen(ELF::ElfMagic))) == 0;
|
/external/swiftshader/third_party/subzero/src/ |
D | IceELFObjectWriter.cpp | 476 Str.writeBytes(llvm::StringRef(ElfMagic, strlen(ElfMagic))); in writeELFHeaderInternal()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | ELFTypes.h | 474 return (memcmp(e_ident, ELF::ElfMagic, strlen(ELF::ElfMagic))) == 0;
|
/external/llvm/lib/MC/ |
D | ELFObjectWriter.cpp | 313 writeBytes(ELF::ElfMagic); // e_ident[EI_MAG0] to e_ident[EI_MAG3] in writeHeader()
|
/external/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()
|
/external/llvm-project/llvm/lib/MC/ |
D | ELFObjectWriter.cpp | 418 W.OS << ELF::ElfMagic; // e_ident[EI_MAG0] to e_ident[EI_MAG3] in writeHeader()
|
/external/llvm-project/lld/ELF/ |
D | InputFiles.cpp | 82 if (!mb.getBuffer().startswith(ElfMagic)) in getELFKind()
|