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

1 2 3 4 5

  /external/elfutils/libelf/
elf32_xlatetof.c 59 if (src->d_size % recsize != 0)
66 if (src->d_size > dest->d_size)
95 memmove (dest->d_buf, src->d_buf, src->d_size);
111 (*fctp) (dest->d_buf, src->d_buf, src->d_size, 1);
117 dest->d_size = src->d_size;
elf32_xlatetom.c 64 && src->d_size % recsize != 0)
71 if (src->d_size > dest->d_size)
100 memmove (dest->d_buf, src->d_buf, src->d_size);
116 (*fctp) (dest->d_buf, src->d_buf, src->d_size, 0);
122 dest->d_size = src->d_size;
gelf_getnote.c 61 if (unlikely (offset > data->d_size
62 || data->d_size - offset < sizeof (GElf_Nhdr)))
76 if (unlikely (offset > data->d_size
77 || data->d_size - offset < namesz
84 if (unlikely (offset > data->d_size
85 || data->d_size - offset < descsz
gelf_getauxv.c 71 if (unlikely ((ndx + 1) * sizeof (Elf32_auxv_t) > data_scn->d.d_size))
91 if (unlikely ((ndx + 1) * sizeof (GElf_auxv_t) > data_scn->d.d_size))
gelf_update_auxv.c 79 if (unlikely ((ndx + 1) * sizeof (Elf32_auxv_t) > data_scn->d.d_size))
93 if (unlikely ((ndx + 1) * sizeof (Elf64_auxv_t) > data_scn->d.d_size))
elf_compress_gnu.c 152 if (data->d_size < hsize || memcmp (data->d_buf, "ZLIB", 4) != 0)
169 if (gsize + 4 + 8 + 6 + 5 < data->d_size || gsize > SIZE_MAX)
176 size_t size_in = data->d_size - hsize;
elf32_getchdr.c 76 if (d->d_size < sizeof (ElfW2(LIBELFBITS,Chdr)) || d->d_buf == NULL)
gelf_getverdaux.c 65 || unlikely (offset + sizeof (GElf_Verdaux) > data->d_size)
gelf_getverdef.c 65 || unlikely (offset + sizeof (GElf_Verdef) > data->d_size)
gelf_getvernaux.c 68 || unlikely (offset + sizeof (GElf_Vernaux) > data->d_size)
gelf_getverneed.c 68 || unlikely (offset + sizeof (GElf_Verneed) > data->d_size)
gelf_update_verdaux.c 55 || unlikely ((offset + sizeof (GElf_Verdaux)) > data_scn->d.d_size))
gelf_update_verdef.c 55 || unlikely ((offset + sizeof (GElf_Verdef)) > data_scn->d.d_size))
gelf_update_vernaux.c 55 || unlikely ((offset + sizeof (GElf_Vernaux)) > data_scn->d.d_size))
  /external/libnl/lib/
data.c 64 data->d_size = size;
97 return nl_data_alloc(src->d_data, src->d_size);
114 data->d_data = realloc(data->d_data, data->d_size + size);
119 memcpy(data->d_data + data->d_size, buf, size);
121 memset(data->d_data + data->d_size, 0, size);
123 data->d_size += size;
155 return data->d_size > 0 ? data->d_data : NULL;
165 return data->d_size;
  /external/elfutils/libdwelf/
dwelf_elf_gnu_debuglink.c 68 if (rawdata->d_size <= sizeof *crc
69 || memchr (rawdata->d_buf, '\0', rawdata->d_size - sizeof *crc) == NULL)
76 .d_size = sizeof *crc,
82 .d_buf = rawdata->d_buf + rawdata->d_size - sizeof *crc,
83 .d_size = sizeof *crc,
dwelf_dwarf_gnu_debugaltlink.c 46 const void *ptr = memchr (data->d_buf, '\0', data->d_size);
52 size_t build_id_len = data->d_size - (ptr - data->d_buf + 1);
dwelf_scn_gnu_compressed_size.c 56 if (d->d_size >= 4 + 8
70 if (size + 4 + 8 + 6 + 5 < d->d_size || size > SIZE_MAX)
  /external/elfutils/backends/
ppc64_resolve_sym.c 47 && *addr + sizeof (Elf64_Addr) <= ebl->fd_addr + ebl->fd_data->d_size)
55 opd_out.d_size = opd_in.d_size = sizeof (Elf64_Addr);
  /external/elfutils/libdw/
dwarf_getstring.c 45 || offset >= dbg->sectiondata[IDX_debug_str]->d_size)
55 dbg->sectiondata[IDX_debug_str]->d_size - offset);
encoded-value.h 63 while (end < (uint8_t *) data->d_buf + data->d_size)
88 const unsigned char *endp = cache->data->d.d_buf + cache->data->d.d_size;
156 const unsigned char *endp = cache->data->d.d_buf + cache->data->d.d_size;
219 if (unlikely (cache->data->d.d_size < ptrsize
220 || *result > (cache->data->d.d_size - ptrsize)))
dwarf_hasattr.c 58 + dbg->sectiondata[IDX_debug_abbrev]->d_size);
dwarf_offdie.c 48 if (offset >= data->d_size)
  /external/elfutils/libdwfl/
elf-from-memory.c 118 .d_size = sizeof ehdr,
130 xlatefrom.d_size = sizeof (Elf32_Ehdr);
146 xlatefrom.d_size = sizeof (Elf64_Ehdr);
166 xlatefrom.d_size = phnum * phentsize;
210 xlateto.d_size = phdrsp_bytes;
338 xlatefrom.d_size = xlateto.d_size = sizeof ehdr.e32;
365 xlatefrom.d_size = xlateto.d_size = sizeof ehdr.e64;
  /external/elfutils/libebl/
eblobjnote.c 78 .d_buf = (void *) desc, .d_size = addrs_size
84 .d_buf = &addrs, .d_size = addrs_size
163 .d_size = descsz,
183 .d_size = descsz,

Completed in 161 milliseconds

1 2 3 4 5