Searched refs:entsize (Results 1 - 14 of 14) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DOutputSections.cpp57 shdr->sh_entsize = entsize;
114 // initialize type, entsize and flags from isec.
117 entsize = isec->entsize;
154 if (entsize != isec->entsize)
155 entsize = 0;
195 return sec->flags == ms->flags && sec->entsize == ms->entsize &&
203 syn->entsize
[all...]
H A DInputSection.h74 uint64_t entsize; member in class:lld::elf::SectionBase
96 uint64_t entsize, uint64_t alignment, uint32_t type,
100 entsize(entsize), type(type), link(link), info(info) {}
111 uint64_t entsize, uint32_t link, uint32_t info,
275 MergeInputSection(uint64_t flags, uint32_t type, uint64_t entsize,
95 SectionBase(Kind sectionKind, StringRef name, uint64_t flags, uint64_t entsize, uint64_t alignment, uint32_t type, uint32_t info, uint32_t link) argument
H A DInputSection.cpp59 uint32_t type, uint64_t entsize,
63 : SectionBase(sectionKind, name, flags, entsize, alignment, type, info,
1366 uint64_t entsize, ArrayRef<uint8_t> data,
1368 : InputSectionBase(nullptr, flags, type, entsize, /*Link*/ 0, /*Info*/ 0,
1369 /*Alignment*/ entsize, data, name, SectionBase::Merge) {}
1381 splitStrings(data(), entsize); local
1383 splitNonStrings(data(), entsize); local
58 InputSectionBase(InputFile *file, uint64_t flags, uint32_t type, uint64_t entsize, uint32_t link, uint32_t info, uint32_t alignment, ArrayRef<uint8_t> data, StringRef name, Kind sectionKind) argument
1365 MergeInputSection(uint64_t flags, uint32_t type, uint64_t entsize, ArrayRef<uint8_t> data, StringRef name) argument
H A DSyntheticSections.cpp97 this->entsize = sizeof(Elf_Mips_ABIFlags);
156 this->entsize = sizeof(Elf_Mips_Options) + sizeof(Elf_Mips_RegInfo);
217 this->entsize = sizeof(Elf_Mips_RegInfo);
1199 this->entsize = ELFT::Is64Bits ? 16 : 8;
1226 size_t tagOffset = entries.size() * entsize;
1500 this->size = entries.size() * this->entsize;
1599 this->entsize = config->isRela ? sizeof(Elf_Rela) : sizeof(Elf_Rel);
1630 this->entsize = 1;
1874 this->entsize = config->wordsize;
2093 this->entsize
[all...]
H A DSyntheticSections.h499 size_t getSize() const override { return relocs.size() * this->entsize; }
565 size_t getSize() const override { return relrRelocs.size() * this->entsize; }
583 size_t getSize() const override { return getNumSymbols() * entsize; }
/freebsd-13-stable/usr.bin/elfdump/
H A Delfdump.c821 u_int64_t entsize; local
846 entsize = elf_get_size(e, v, SH_ENTSIZE);
858 fprintf(out, "\tsh_entsize: %jd\n", (intmax_t)entsize);
867 u_int64_t entsize; local
879 entsize = elf_get_size(e, sh, SH_ENTSIZE);
882 len = size / entsize;
885 st = (char *)e + offset + i * entsize;
907 u_int64_t entsize; local
916 entsize = elf_get_size(e, sh, SH_ENTSIZE);
919 for (i = 0; (u_int64_t)i < size / entsize;
967 u_int64_t entsize; local
999 u_int64_t entsize; local
[all...]
/freebsd-13-stable/tests/sys/fs/fusefs/
H A Dutils.cc410 size_t entlen, entsize;
418 entsize = FUSE_DIRENT_SIZE(fde);
426 memset(fde->name + fde->namelen, 0, entsize - entlen);
427 if (out.header.len + entsize > in.body.read.size) {
432 out.header.len += entsize;
434 ((intmax_t*)fde + entsize / sizeof(intmax_t));
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCClassDescriptorV2.cpp244 uint32_t entsize = extractor.GetU32_unchecked(&cursor); local
245 m_is_small = (entsize & 0x80000000) != 0;
246 m_has_direct_selector = (entsize & 0x40000000) != 0;
247 m_entsize = entsize & 0xfffc;
303 size_t size = sizeof(uint32_t) // uint32_t entsize;
/freebsd-13-stable/contrib/elftoolchain/elfdump/
H A Delfdump.c94 uint64_t entsize; /* section entsize */ member in struct:section
1159 s->entsize = sh.sh_entsize;
1416 PRT(" sh_entsize: %#jx\n", (uintmax_t)s->entsize);
1433 PRT("\tsh_entsize: %ju\n", (uintmax_t)s->entsize);
1445 if (s->entsize == 0) {
1448 } else if (s->sz / s->entsize > INT_MAX) {
1452 *ent_count = (int)(s->sz / s->entsize);
1915 gs->entsize;
1929 if (s->entsize
[all...]
/freebsd-13-stable/contrib/llvm-project/lld/ELF/Arch/
H A DX86.cpp223 unsigned relOff = in.relaPlt->entsize * sym.pltIndex;
537 unsigned relOff = in.relaPlt->entsize * sym.pltIndex;
596 unsigned relOff = in.relaPlt->entsize * sym.pltIndex;
/freebsd-13-stable/cddl/contrib/opensolaris/lib/libdtrace/common/
H A Ddt_dof.c144 uint32_t align, uint32_t flags, uint32_t entsize, uint64_t size)
152 s.dofs_entsize = entsize;
171 uint32_t align, uint32_t flags, uint32_t entsize, uint64_t size)
179 s.dofs_entsize = entsize;
143 dof_add_lsect(dt_dof_t *ddo, const void *data, uint32_t type, uint32_t align, uint32_t flags, uint32_t entsize, uint64_t size) argument
170 dof_add_usect(dt_dof_t *ddo, const void *data, uint32_t type, uint32_t align, uint32_t flags, uint32_t entsize, uint64_t size) argument
/freebsd-13-stable/contrib/elftoolchain/readelf/
H A Dreadelf.c126 uint64_t entsize; /* section entsize */ member in struct:section
2587 (uintmax_t)s->entsize, section_flags(re, s), \
2591 (uintmax_t)s->entsize, s->link, s->info, \
2595 (uintmax_t)s->sz, (uintmax_t)s->entsize, s->info, \
2686 if (s->entsize == 0) {
2689 } else if (s->sz / s->entsize > INT_MAX) {
2693 *ent_count = (int)(s->sz / s->entsize);
3610 s->entsize == 8)
4144 for (j = 0; (uint64_t) j < s->sz / s->entsize;
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DMachODump.cpp3454 uint32_t entsize; member in struct:__anon4848::method_list64_t
3460 uint32_t entsize; member in struct:__anon4848::method_list32_t
3514 uint32_t entsize; member in struct:__anon4848::ivar_list64_t
3520 uint32_t entsize; member in struct:__anon4848::ivar_list32_t
3542 uint32_t entsize; member in struct:__anon4848::objc_property_list64
3548 uint32_t entsize; member in struct:__anon4848::objc_property_list32
3757 sys::swapByteOrder(ml.entsize);
3762 sys::swapByteOrder(ml.entsize);
3809 sys::swapByteOrder(il.entsize);
3814 sys::swapByteOrder(il.entsize);
[all...]
/freebsd-13-stable/sys/cddl/contrib/opensolaris/uts/common/dtrace/
H A Ddtrace.c13629 int entsize;
13712 if (difo[i].entsize != subsec->dofs_entsize) {
14284 uint32_t entsize;
14301 if ((entsize = sec->dofs_entsize) == 0) {
14306 if (entsize < sizeof (dof_optdesc_t)) {
14311 for (offs = 0; offs < sec->dofs_size; offs += entsize) {

Completed in 314 milliseconds