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

1 2 3 4 5 6 7 8

  /frameworks/rs/cpu_ref/linkloader/include/
ELFSectionHeader.h 112 word_t sh_size; member in class:ELFSectionHeader
129 AR & sh_size; local
145 return sh_size;
163 xword_t sh_size; member in class:ELFSectionHeader
180 AR & sh_size; local
196 return sh_size;
  /external/elfutils/libelf/
gelf_update_shdr.c 87 || unlikely (src->sh_size > 0xffffffffull)
102 COPY (sh_size);
elf_strptr.c 119 if (unlikely (offset >= strscn->shdr.e32->sh_size))
135 if (unlikely (offset >= strscn->shdr.e64->sh_size))
elf32_offscn.c 104 if (runp->data[i].shdr.ELFW(e,LIBELFBITS)->sh_size != 0)
gelf_getshdr.c 98 COPY (sh_size);
elf32_updatenull.c 199 update_if_changed (scn0->shdr.ELFW(e,LIBELFBITS)->sh_size,
309 > shdr->sh_size))
340 ? shdr->sh_size : 0));
375 update_if_changed (shdr->sh_size, (GElf_Word) offset,
387 && unlikely (shdr->sh_size % shdr->sh_entsize != 0)
elf32_getshdr.c 142 CONVERT_TO (shdr[cnt].sh_size, notcvt[cnt].sh_size);
188 CONVERT (shdr[cnt].sh_size);
  /art/compiler/
elf_stripper.cc 103 offset += old_sh.sh_size;
109 old_sh.sh_size);
111 offset += old_sh.sh_size;
  /external/chromium_org/courgette/
disassembler_elf_32_x86.cc 86 size_t section_end = section_header->sh_offset + section_header->sh_size;
91 uint32 section_relocs_count = section_header->sh_size /
121 uint32 end_file_offset = start_file_offset + section_header->sh_size;
disassembler_elf_32.cc 113 uint32 section_end = section_header->sh_offset + section_header->sh_size;
196 Elf32_Off section_end = section_begin + section_header->sh_size;
275 file_offset = section_header->sh_offset + section_header->sh_size;
283 file_offset = section_header->sh_offset + section_header->sh_size;
293 (section_header->sh_offset + section_header->sh_size)) {
304 (section_header->sh_offset + section_header->sh_size))
331 size_t section_end = section_header->sh_offset + section_header->sh_size;
434 int relocs_table_count = section_header->sh_size /
469 offset < (section_header->sh_offset + section_header->sh_size)) {
types_elf.h 65 Elf32_Word sh_size; member in struct:Elf32_Shdr
  /sdk/emulator/qtools/
read_elf.cpp 58 shdr->sh_size = SwapWord(shdr->sh_size);
161 string_table = new char[shdr->sh_size];
163 fread(string_table, shdr->sh_size, 1, f);
172 if (fread(buffer, shdr->sh_size, 1, f) != 1)
  /frameworks/compile/mclinker/lib/LD/
ELFReader.cpp 364 uint32_t sh_size = 0x0; local
376 sh_size = shdr->sh_size;
380 sh_size = mcld::bswap32(shdr->sh_size);
386 shnum = sh_size;
402 sh_size = shdr->sh_size;
406 sh_size = mcld::bswap32(shdr->sh_size);
920 uint64_t sh_size = 0x0; local
    [all...]
  /external/elfutils/libdwfl/
dwfl_report_elf.c 134 end = prev_shdr->sh_addr + prev_shdr->sh_size;
145 end = shdr->sh_addr + shdr->sh_size;
153 if (first || end < shdr->sh_addr + shdr->sh_size)
154 end = shdr->sh_addr + shdr->sh_size;
derelocate.c 137 newref->end = newref->start + shdr->sh_size;
144 && shdr->sh_size != 0
204 if (shdr->sh_size != 0
  /external/elfutils/src/
elflint.c 440 /* Get the header of the zeroth section. The sh_size field
447 if (shdr->sh_size == 0)
451 shnum = shdr->sh_size;
457 /* Get the header of the zeroth section. The sh_size field
654 for (size_t cnt = 1; cnt < shdr->sh_size / shdr->sh_entsize; ++cnt)
667 else if (sym->st_name >= strshdr->sh_size)
746 if (sym->st_value - sh_addr > destshdr->sh_size)
764 + sym->st_size) > destshdr->sh_size)
783 if (sym->st_value > destshdr->sh_size)
789 > destshdr->sh_size)
    [all...]
unstrip.c 319 adjust the sh_size field in the debuginfo file's SHT_NOBITS
380 newshdr->sh_size = data->d_size;
403 for (size_t i = 0; i < shdr->sh_size / shdr->sh_entsize; ++i)
414 for (size_t i = 0; i < shdr->sh_size / shdr->sh_entsize; ++i)
441 const size_t nsym = symshdr->sh_size / symshdr->sh_entsize;
442 const size_t onent = shdr->sh_size / shdr->sh_entsize;
443 assert (data->d_size == shdr->sh_size);
495 const size_t nent = symshdr->sh_size / symshdr->sh_entsize;
496 const size_t onent = shdr->sh_size / shdr->sh_entsize;
556 const size_t nsym = shdr->sh_size / shdr->sh_entsize
    [all...]
size.c 465 digits - 2, shdr->sh_size,
468 total += shdr->sh_size;
519 printf (fmtstr, shdr->sh_size,
522 total += shdr->sh_size;
566 textsize += shdr->sh_size;
568 bsssize += shdr->sh_size;
570 datasize += shdr->sh_size;
elfcmp.c 235 newp->to = shdr1->sh_offset + shdr1->sh_size;
265 || shdr1->sh_size != shdr2->sh_size
290 for (int ndx = 0; ndx < (int) (shdr1->sh_size / shdr1->sh_entsize);
614 for (int ndx = 0; ndx < (int) (shdr->sh_size / shdr->sh_entsize);
628 for (int ndx = 0; ndx < (int) (shdr->sh_size / shdr->sh_entsize);
  /external/elfutils/tests/
asm-tst1.c 220 if ((cnt != 3 && shdr->sh_size != 0)
221 || (cnt == 3 && shdr->sh_size != 23))
asm-tst2.c 240 if ((cnt == 1 && shdr->sh_size != (strlen ("one") + 1
243 || (cnt == 2 && shdr->sh_size != 17))
  /external/qemu/
elf_ops.h 37 bswapSZs(&shdr->sh_size);
123 syms = load_at(fd, symtab->sh_offset, symtab->sh_size);
127 nsyms = symtab->sh_size / sizeof(struct elf_sym);
159 str = load_at(fd, strtab->sh_offset, strtab->sh_size);
  /external/valgrind/main/VEX/switchback/
linker.c 521 int nent = shdr[shnum].sh_size / sizeof(Elf_Rel);
647 int nent = shdr[shnum].sh_size / sizeof(Elf_Rela);
1006 if (debug_linker>1) fprintf(stderr, "size=%4d ", (int)shdr[i].sh_size );
1010 ehdrC + shdr[i].sh_offset + shdr[i].sh_size - 1);
1054 nent = shdr[i].sh_size / sizeof(Elf_Sym);
1058 (Long)(shdr[i].sh_size % sizeof(Elf_Sym))
1060 if (0 != shdr[i].sh_size % sizeof(Elf_Sym)) {
    [all...]
  /external/valgrind/main/VEX/unused/
linker.c 427 int nent = shdr[shnum].sh_size / sizeof(Elf_Rel);
553 int nent = shdr[shnum].sh_size / sizeof(Elf_Rela);
845 if (debug_linker>1) fprintf(stderr, "size=%4d ", (int)shdr[i].sh_size );
849 ehdrC + shdr[i].sh_offset + shdr[i].sh_size - 1);
893 nent = shdr[i].sh_size / sizeof(Elf_Sym);
897 shdr[i].sh_size % sizeof(Elf_Sym)
899 if (0 != shdr[i].sh_size % sizeof(Elf_Sym)) {
1005 if (is_bss && shdr[i].sh_size > 0) {
1009 char* zspace = calloc(1, shdr[i].sh_size);
1013 zspace, shdr[i].sh_size);
    [all...]
  /external/elfutils/backends/
ppc_symbol.c 95 for (unsigned int j = 0; j < shdr->sh_size / shdr->sh_entsize; ++j)

Completed in 533 milliseconds

1 2 3 4 5 6 7 8