Home
last modified time | relevance | path

Searched refs:SHT_NOBITS (Results 1 – 25 of 78) sorted by relevance

1234

/third_party/elfutils/libasm/
Dasm_adduleb128.c46 if (asmscn->type == SHT_NOBITS && unlikely (num != 0)) in asm_adduleb128()
82 if (likely (asmscn->type != SHT_NOBITS)) in asm_adduleb128()
Dasm_addsleb128.c46 if (asmscn->type == SHT_NOBITS && unlikely (num != 0)) in asm_addsleb128()
86 if (likely (asmscn->type != SHT_NOBITS)) in asm_addsleb128()
Dasm_addint8.c57 if (asmscn->type == SHT_NOBITS && unlikely (num != 0)) in FCT()
107 if (likely (asmscn->type == SHT_NOBITS)) in FCT()
Dasm_newscn.c91 else if (type == SHT_NOBITS) in text_newscn()
174 || (type != SHT_PROGBITS && unlikely (type != SHT_NOBITS))) in asm_newscn()
Dasm_addstrz.c48 if (unlikely (asmscn->type == SHT_NOBITS)) in asm_addstrz()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/
DXCoreTargetObjectFile.cpp23 BSSSection = Ctx.getELFSection(".dp.bss", ELF::SHT_NOBITS, in Initialize()
26 BSSSectionLarge = Ctx.getELFSection(".dp.bss.large", ELF::SHT_NOBITS, in Initialize()
67 return ELF::SHT_NOBITS; in getXCoreSectionType()
/third_party/elfio/elfio/
Delfio_section.hpp136 if ( get_type() != SHT_NOBITS ) { in set_data()
162 if ( get_type() != SHT_NOBITS ) { in append_data()
265 SHT_NOBITS != get_type() && size < get_stream_size() ) { in load_data()
302 if ( get_type() != SHT_NOBITS && get_type() != SHT_NULL && in save()
Delfio.hpp327 if ( ( ( a->get_type() & SHT_NOBITS) == 0 ) in validate()
328 && ( ( b->get_type() & SHT_NOBITS) == 0 ) in validate()
755 if ( SHT_NOBITS != sec->get_type() && in layout_sections_without_segments()
878 SHT_NOBITS != sec->get_type() && SHT_NULL != sec->get_type() && in write_segment_data()
914 ( SHT_NOBITS == sec->get_type() ) ) ) { in write_segment_data()
918 if ( SHT_NOBITS != sec->get_type() ) { in write_segment_data()
939 if ( SHT_NOBITS != sec->get_type() ) { in write_segment_data()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCSectionELF.cpp137 else if (Type == ELF::SHT_NOBITS) in PrintSwitchToSection()
197 return getType() == ELF::SHT_NOBITS; in isVirtualSection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonTargetObjectFile.cpp122 getContext().getELFSection(".sbss", ELF::SHT_NOBITS, in Initialize()
371 return getContext().getELFSection(Name.str(), ELF::SHT_NOBITS, in selectSmallSectionForGlobal()
386 return getContext().getELFSection(Name.str(), ELF::SHT_NOBITS, in selectSmallSectionForGlobal()
/third_party/elfutils/libebl/
Deblcheckreloctargettype.c45 case SHT_NOBITS: in ebl_check_reloc_target_type()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/
DELFAsmParser.cpp103 return ParseSectionSwitch(".bss", ELF::SHT_NOBITS, in ParseSectionDirectiveBSS()
119 return ParseSectionSwitch(".tbss", ELF::SHT_NOBITS, in ParseSectionDirectiveTBSS()
590 Type = ELF::SHT_NOBITS; in ParseSectionArguments()
592 Type = ELF::SHT_NOBITS; in ParseSectionArguments()
605 Type = ELF::SHT_NOBITS; in ParseSectionArguments()
/third_party/elfutils/libdwelf/
Ddwelf_scn_gnu_compressed_size.c49 || shdr.sh_type == SHT_NOBITS) in dwelf_scn_gnu_compressed_size()
/third_party/elfutils/tests/
Delfcopy.c226 && last_shdr.sh_type != SHT_NOBITS in copy_elf()
227 && shdr.sh_type != SHT_NOBITS in copy_elf()
Delfputzdata.c82 if (shdr->sh_type == SHT_NOBITS in main()
/third_party/elfutils/libelf/
Delf32_getchdr.c58 || shdr->sh_type == SHT_NOBITS) in ElfW2()
Delf32_offscn.c82 && runp->data[i].shdr.ELFW(e,LIBELFBITS)->sh_type != SHT_NOBITS) in elfw2()
Delf32_checksum.c112 if (shdr->sh_type == SHT_NOBITS) in elfw2()
Delf32_updatenull.c347 (shdr->sh_type != SHT_NOBITS in __elfw2()
388 if (shdr->sh_type != SHT_NOBITS) in __elfw2()
Delf_compress_gnu.c91 if (sh_type == SHT_NULL || sh_type == SHT_NOBITS) in elf_compress_gnu()
/third_party/elfutils/src/
Delfcompress.c468 else if (shdr->sh_type != SHT_NOBITS in process_file()
491 (shdr->sh_type == SHT_NOBITS ? "no bits" : "allocated")); in process_file()
513 GElf_Off off = shdr->sh_offset + (shdr->sh_type != SHT_NOBITS in process_file()
1128 if (shdr->sh_type != SHT_NOBITS) in process_file()
Delfcmp.c522 assert (shdr1->sh_type == SHT_NOBITS in main()
524 assert (shdr2->sh_type == SHT_NOBITS in main()
528 || (shdr1->sh_type != SHT_NOBITS in main()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVTargetObjectFile.cpp24 SmallBSSSection = getContext().getELFSection(".sbss", ELF::SHT_NOBITS, in Initialize()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/
DLanaiTargetObjectFile.cpp35 SmallBSSSection = getContext().getELFSection(".sbss", ELF::SHT_NOBITS, in Initialize()
/third_party/skia/buildtools/third_party/eu-strip/
Dfix-elf-size.patch29 (shdr->sh_type != SHT_NOBITS

1234