Home
last modified time | relevance | path

Searched refs:SHT_LOOS (Results 1 – 9 of 9) sorted by relevance

/openbsd/src/gnu/usr.bin/binutils-2.17/include/elf/
Dhppa.h511 #define SHT_HP_OVLBITS (SHT_LOOS + 0x0)
512 #define SHT_HP_DLKM (SHT_LOOS + 0x1)
513 #define SHT_HP_COMDAT (SHT_LOOS + 0x2)
514 #define SHT_HP_OBJDICT (SHT_LOOS + 0x3)
515 #define SHT_HP_ANNOT (SHT_LOOS + 0x4)
Dcommon.h352 #define SHT_LOOS 0x60000000 /* First of OS specific semantics */ macro
/openbsd/src/lib/libelf/
Dlibelf_data.c99 if (sht >= SHT_LOOS) in _libelf_xlate_shtype()
/openbsd/src/gnu/usr.bin/binutils/include/elf/
Dcommon.h330 #define SHT_LOOS 0x60000000 /* First of OS specific semantics */ macro
/openbsd/src/sys/sys/
Dexec_elf.h266 #define SHT_LOOS 0x60000000 /* reserved range for OS specific */ macro
/openbsd/src/gnu/llvm/llvm/include/llvm/BinaryFormat/
DELF.h1014 SHT_LOOS = 0x60000000, // Lowest operating system-specific type. enumerator
/openbsd/src/gnu/usr.bin/binutils-2.17/binutils/
Dreadelf.c2964 else if ((sh_type >= SHT_LOOS) && (sh_type <= SHT_HIOS)) in get_section_type_name()
2965 sprintf (buff, "LOOS+%x", sh_type - SHT_LOOS); in get_section_type_name()
/openbsd/src/gnu/usr.bin/binutils/binutils/
Dreadelf.c2361 else if ((sh_type >= SHT_LOOS) && (sh_type <= SHT_HIOS)) in get_section_type_name()
2362 sprintf (buff, "LOOS+%x", sh_type - SHT_LOOS); in get_section_type_name()
/openbsd/src/gnu/llvm/llvm/tools/llvm-readobj/
DELFDumper.cpp3657 if (Type >= SHT_LOOS && Type <= SHT_HIOS) in getSectionTypeOffsetString()
3658 return "LOOS+0x" + utohexstr(Type - SHT_LOOS); in getSectionTypeOffsetString()