Lines Matching defs:size
43 elf_getdata_rawchunk (Elf *elf, int64_t offset, size_t size, Elf_Type type)
56 || elf->maximum_size - (uint64_t) offset < size))
81 if ((rawchunks->offset == offset || size == 0)
82 && rawchunks->data.d.d_size == size
101 rawchunk = malloc (size);
104 memcpy (rawchunk, rawdata, size);
111 rawchunk = malloc (size);
120 if (unlikely ((size_t) pread_retry (elf->fildes, rawchunk, size,
122 != size))
145 buffer = malloc (size);
151 memcpy (buffer, rawchunk, size);
160 buffer = malloc (size);
167 (*__elf_xfctstom[elf->class - 1][type])(buffer, rawchunk, size, 0);
183 chunk->data.d.d_size = size;