HomeSort by relevance Sort by last modified time
    Searched defs:ElfMagic (Results 1 - 2 of 2) sorted by null

  /art/runtime/
elf.h 45 static const char ElfMagic[] = { 0x7f, 'E', 'L', 'F', '\0' };
63 const char ELFMAG0 = ElfMagic[EI_MAG0];
64 const char ELFMAG1 = ElfMagic[EI_MAG1];
65 const char ELFMAG2 = ElfMagic[EI_MAG2];
66 const char ELFMAG3 = ElfMagic[EI_MAG3];
85 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0;
109 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0;
    [all...]
  /external/llvm/include/llvm/Support/
ELF.h 46 static const char ElfMagic[] = { 0x7f, 'E', 'L', 'F', '\0' };
79 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0;
103 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0;
    [all...]

Completed in 457 milliseconds