Home | History | Annotate | Download | only in libelf

Lines Matching defs:out_buf

50 do_deflate_cleanup (void *result, z_stream *z, void *out_buf,
54 free (out_buf);
61 do_deflate_cleanup(result, &z, out_buf, ei_data, &cdata)
103 void *out_buf = malloc (out_size);
104 if (out_buf == NULL)
165 z.next_out = out_buf + used;
182 void *bigger = realloc (out_buf, out_size + block);
188 out_buf = bigger;
210 return out_buf;
393 void *out_buf = __libelf_compress (scn, hsize, elfdata,
398 if (out_buf == (void *) -1)
402 if (out_buf == NULL)
418 memcpy (out_buf, &chdr, sizeof (Elf32_Chdr));
434 memcpy (out_buf, &chdr, sizeof (Elf64_Chdr));
454 __libelf_reset_rawdata (scn, out_buf, new_size, 1, ELF_T_CHDR);