Home
last modified time | relevance | path

Searched refs:Chdr (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/external/gpl3/binutils.old/dist/gold/
H A Dcompressed_output.cc156 elfcpp::Chdr<32, true> chdr(compressed_data); in decompress_input_section()
162 elfcpp::Chdr<32, false> chdr(compressed_data); in decompress_input_section()
172 elfcpp::Chdr<64, true> chdr(compressed_data); in decompress_input_section()
178 elfcpp::Chdr<64, false> chdr(compressed_data); in decompress_input_section()
H A Dobject.cc767 elfcpp::Chdr<size, big_endian> chdr(contents); in build_compressed_section_map()
/netbsd-src/external/gpl3/binutils/dist/gold/
H A Dcompressed_output.cc179 ch_type = elfcpp::Chdr<32, true> (compressed_data).get_ch_type(); in decompress_input_section()
181 ch_type = elfcpp::Chdr<32, false>(compressed_data).get_ch_type(); in decompress_input_section()
187 ch_type = elfcpp::Chdr<64, true>(compressed_data).get_ch_type(); in decompress_input_section()
189 ch_type = elfcpp::Chdr<64, false>(compressed_data).get_ch_type(); in decompress_input_section()
H A Dobject.cc767 elfcpp::Chdr<size, big_endian> chdr(contents); in build_compressed_section_map()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp538 Elf_Chdr_Impl<ELFT> Chdr; in visit() local
539 Chdr.ch_type = ELF::ELFCOMPRESS_ZLIB; in visit()
540 Chdr.ch_size = Sec.DecompressedSize; in visit()
541 Chdr.ch_addralign = Sec.DecompressedAlign; in visit()
542 memcpy(Buf, &Chdr, sizeof(Chdr)); in visit()
543 Buf += sizeof(Chdr); in visit()
/netbsd-src/external/gpl3/binutils.old/dist/elfcpp/
H A DChangeLog-081531 * elfcpp.h (Chdr::get_ch_type): Change return type to Elf_Word.
38 (Chdr): New.
H A Delfcpp.h1355 class Chdr
1358 Chdr(const unsigned char* p)
1363 Chdr(File* file, typename File::Location loc)
/netbsd-src/external/gpl3/binutils/dist/elfcpp/
H A DChangeLog-081531 * elfcpp.h (Chdr::get_ch_type): Change return type to Elf_Word.
38 (Chdr): New.
H A Delfcpp.h1358 class Chdr
1361 Chdr(const unsigned char* p)
1366 Chdr(File* file, typename File::Location loc)
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DELFTypes.h73 using Chdr = Elf_Chdr_Impl<ELFType<E, Is64>>; member