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

  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
ldelf.go 311 var ElfMagic = [4]uint8{0x7F, 'E', 'L', 'F'}
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
ldelf.go 311 var ElfMagic = [4]uint8{0x7F, 'E', 'L', 'F'}
  /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...]
  /external/swiftshader/third_party/llvm-subzero/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...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/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...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/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...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/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...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/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...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/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...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/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...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/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...]
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
ELF.h 45 static const char ElfMagic[] = { 0x7f, 'E', 'L', 'F', '\0' };
78 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0;
102 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0;
    [all...]
  /art/runtime/
elf.h 45 static constexpr char ElfMagic[] = { 0x7f, 'E', 'L', 'F', '\0' };
63 constexpr char ELFMAG0 = ElfMagic[EI_MAG0];
64 constexpr char ELFMAG1 = ElfMagic[EI_MAG1];
65 constexpr char ELFMAG2 = ElfMagic[EI_MAG2];
66 constexpr char ELFMAG3 = ElfMagic[EI_MAG3];
85 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0;
109 return (memcmp(e_ident, ElfMagic, strlen(ElfMagic))) == 0;
    [all...]

Completed in 414 milliseconds