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

1 2 3

  /external/elfutils/libelf/
elf32_xlatetof.c 49 if (src->d_size % recsize != 0)
56 if (src->d_size > dest->d_size)
85 memmove (dest->d_buf, src->d_buf, src->d_size);
101 (*fctp) (dest->d_buf, src->d_buf, src->d_size, 1);
107 dest->d_size = src->d_size;
elf32_xlatetom.c 50 if (src->d_size % recsize != 0)
57 if (src->d_size > dest->d_size)
86 memmove (dest->d_buf, src->d_buf, src->d_size);
102 (*fctp) (dest->d_buf, src->d_buf, src->d_size, 0);
108 dest->d_size = src->d_size;
gelf_getsymshndx.c 60 if (unlikely ((ndx + 1) * sizeof (Elf32_Word) > shndxdata_scn->d.d_size))
80 if (unlikely ((ndx + 1) * sizeof (Elf32_Sym) > symdata->d_size))
109 if (unlikely ((ndx + 1) * sizeof (GElf_Sym) > symdata->d_size))
gelf_update_symshndx.c 69 if (unlikely ((ndx + 1) * sizeof (Elf32_Word) > shndxdata_scn->d.d_size))
98 if (unlikely ((ndx + 1) * sizeof (Elf32_Sym) > symdata_scn->d.d_size))
121 if (unlikely ((ndx + 1) * sizeof (Elf64_Sym) > symdata_scn->d.d_size))
gelf_getdyn.c 63 if (unlikely ((ndx + 1) * sizeof (Elf32_Dyn) > data_scn->d.d_size))
84 if (unlikely ((ndx + 1) * sizeof (GElf_Dyn) > data_scn->d.d_size))
gelf_getrel.c 63 if (unlikely ((ndx + 1) * sizeof (Elf32_Rel) > data_scn->d.d_size))
83 if (unlikely ((ndx + 1) * sizeof (Elf64_Rel) > data_scn->d.d_size))
gelf_getrela.c 63 if (unlikely ((ndx + 1) * sizeof (Elf32_Rela) > data_scn->d.d_size))
84 if (unlikely ((ndx + 1) * sizeof (Elf64_Rela) > data_scn->d.d_size))
gelf_getsym.c 60 if (unlikely ((ndx + 1) * sizeof (Elf32_Sym) > data->d_size))
89 if (unlikely ((ndx + 1) * sizeof (GElf_Sym) > data->d_size))
gelf_update_dyn.c 72 if (unlikely ((ndx + 1) * sizeof (Elf32_Dyn) > data_scn->d.d_size))
86 if (unlikely ((ndx + 1) * sizeof (Elf64_Dyn) > data_scn->d.d_size))
gelf_update_rel.c 69 if (unlikely ((ndx + 1) * sizeof (Elf32_Rel) > data_scn->d.d_size))
84 if (unlikely ((ndx + 1) * sizeof (Elf64_Rel) > data_scn->d.d_size))
gelf_update_rela.c 71 if (unlikely ((ndx + 1) * sizeof (Elf32_Rela) > data_scn->d.d_size))
87 if (unlikely ((ndx + 1) * sizeof (Elf64_Rela) > data_scn->d.d_size))
gelf_update_sym.c 72 if (unlikely ((ndx + 1) * sizeof (Elf32_Sym) > data_scn->d.d_size))
95 if (unlikely ((ndx + 1) * sizeof (Elf64_Sym) > data_scn->d.d_size))
gelf_getlib.c 56 if (unlikely ((ndx + 1) * sizeof (GElf_Lib) > data->d_size))
gelf_getmove.c 53 if (unlikely ((ndx + 1) * sizeof (GElf_Move) > data->d_size))
gelf_getsyminfo.c 54 if (unlikely ((ndx + 1) * sizeof (GElf_Syminfo) > data->d_size))
gelf_getverdaux.c 56 || unlikely (offset + sizeof (GElf_Verdaux) > data->d_size)
gelf_getverdef.c 56 || unlikely (offset + sizeof (GElf_Verdef) > data->d_size)
gelf_getvernaux.c 59 || unlikely (offset + sizeof (GElf_Vernaux) > data->d_size)
gelf_getverneed.c 59 || unlikely (offset + sizeof (GElf_Verneed) > data->d_size)
  /external/elfutils/libdw/
dwarf_getstring.c 33 || offset >= dbg->sectiondata[IDX_debug_str]->d_size)
43 dbg->sectiondata[IDX_debug_str]->d_size - offset);
dwarf_offdie.c 32 if (offset >= dbg->sectiondata[IDX_debug_info]->d_size)
dwarf_nextcu.c 42 || unlikely (off + 4 >= dwarf->sectiondata[IDX_debug_info]->d_size))
88 >= dwarf->sectiondata[IDX_debug_info]->d_size))
dwarf_formstring.c 53 if (off >= dbg->sectiondata[IDX_debug_str]->d_size)
dwarf_getpubnames.c 36 unsigned char *endp = readp + dbg->sectiondata[IDX_debug_pubnames]->d_size;
69 if (mem[cnt].set_start >= dbg->sectiondata[IDX_debug_pubnames]->d_size)
92 < dbg->sectiondata[IDX_debug_info]->d_size);
132 || offset >= dbg->sectiondata[IDX_debug_pubnames]->d_size))
  /external/elfcopy/
hash.c 11 hash_data->d_size = 2;
12 hash_data->d_size += nbuckets;
13 hash_data->d_size += nchains;
14 hash_data->d_buf = CALLOC(hash_data->d_size, sizeof(Elf32_Word));
15 hash_data->d_size *= sizeof(Elf32_Word);

Completed in 1091 milliseconds

1 2 3