HomeSort by relevance Sort by last modified time
    Searched refs:SHN_LORESERVE (Results 1 - 25 of 42) sorted by null

1 2

  /external/elfutils/libebl/
eblsectionname.c 57 else if ((section < SHN_LORESERVE || section == SHN_XINDEX)
80 else if (section >= SHN_LORESERVE && section <= SHN_HIRESERVE)
81 snprintf (buf, len, "LORESERVE+%x", section - SHN_LORESERVE);
  /external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-readobj/
many-sections.s 3 ## has SHN_LORESERVE (0xff00) or more sections, its e_shnum field
6 ## greater than or equal to SHN_LORESERVE, then e_shstrndx field
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-objcopy/
Object.cpp 208 if (DefinedIn->Index >= SHN_LORESERVE)
247 if (Shndx >= SHN_LORESERVE)
320 if (Sym->DefinedIn != nullptr && Sym->DefinedIn->Index >= SHN_LORESERVE)
730 } else if (Sym.st_shndx >= SHN_LORESERVE) {
734 "' has unsupported value greater than or equal to SHN_LORESERVE: " +
    [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp 267 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
352 assert(StringTableIndex < ELF::SHN_LORESERVE);
820 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
830 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
    [all...]
  /external/elfutils/libelf/
elf32_updatenull.c 98 if (unlikely (shnum >= SHN_LORESERVE))
178 if (shnum >= SHN_LORESERVE)
  /external/swiftshader/third_party/LLVM/lib/MC/
ELFObjectWriter.cpp 127 if (NumberOfSections >= ELF::SHN_LORESERVE)
133 if (ShstrtabIndex >= ELF::SHN_LORESERVE)
147 if (shndx >= ELF::SHN_LORESERVE && !Reserved)
153 uint16_t Index = (shndx >= ELF::SHN_LORESERVE && !Reserved) ?
619 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
670 if (NumRegularSections > ELF::SHN_LORESERVE)
    [all...]
  /external/elfutils/libdwfl/
dwfl_module_getsym.c 114 || (sym->st_shndx < SHN_LORESERVE && sym->st_shndx != SHN_UNDEF)))
dwfl_module_addrsym.c 69 if (shndx >= SHN_LORESERVE)
  /external/elfutils/tests/
addsections.c 1 /* Test program for adding (more than SHN_LORESERVE) sections.
49 if (ndx < SHN_LORESERVE)
dwflsyms.c 178 if (shndxp < SHN_LORESERVE)
elfcopy.c 49 if (ndx < SHN_LORESERVE)
elfstrmerge.c 396 if (newstrtabndx < SHN_LORESERVE)
528 && sym.st_shndx < SHN_LORESERVE)
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
ELFObjectWriter.cpp 366 bool LargeIndex = shndx >= ELF::SHN_LORESERVE && !Reserved;
459 assert(StringTableIndex < ELF::SHN_LORESERVE);
663 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
675 if (MSD.SectionIndex >= ELF::SHN_LORESERVE)
    [all...]
  /build/soong/symbol_inject/
elf.go 89 if symbol.Section == elf.SHN_UNDEF || symbol.Section >= elf.SHN_LORESERVE {
  /bionic/libc/kernel/uapi/linux/
elf.h 249 #define SHN_LORESERVE 0xff00
  /external/kernel-headers/original/uapi/linux/
elf.h 295 #define SHN_LORESERVE 0xff00
  /external/elfutils/src/
unstrip.c 250 if (shstrndx < SHN_LORESERVE)
666 .st_shndx = i < SHN_LORESERVE ? i : SHN_XINDEX
668 GElf_Word shndx = i < SHN_LORESERVE ? SHN_UNDEF : i;
864 if (scnmap != NULL && shndx != SHN_UNDEF && shndx < SHN_LORESERVE)
1112 uint_fast16_t shnum; /* prelink doesn't handle > SHN_LORESERVE. */
    [all...]
strip.c 423 if (shdrstrndx < SHN_LORESERVE)
    [all...]
  /external/u-boot/include/
elf.h 260 #define SHN_LORESERVE 0xff00 /* lower bounds of reserved indexes */
  /external/swiftshader/third_party/subzero/src/
IceELFObjectWriter.cpp 490 assert(NumSections < SHN_LORESERVE);
491 assert(SectHeaderStrIndex < SHN_LORESERVE);
  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/ArmShellCmdRunAxf/
elf_common.h 197 #define SHN_LORESERVE 0xff00 /* First of reserved range. */
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/GenFw/
elf_common.h 197 #define SHN_LORESERVE 0xff00 /* First of reserved range. */
    [all...]
  /external/elfutils/libasm/
asm_end.c 217 else if (unlikely ((ndx = elf_ndxscn (scn)) >= SHN_LORESERVE))
  /external/llvm/include/llvm/Object/
ELF.h 241 if (Index == ELF::SHN_UNDEF || Index >= ELF::SHN_LORESERVE)
ELFTypes.h 255 return st_shndx >= ELF::SHN_LORESERVE;

Completed in 488 milliseconds

1 2