Lines Matching refs:buf_out
225 void *buf_out = malloc (size_out ?: 1); in __libelf_decompress() local
226 if (unlikely (buf_out == NULL)) in __libelf_decompress()
236 .next_out = buf_out, in __libelf_decompress()
242 z.next_out = buf_out + (size_out - z.avail_out); in __libelf_decompress()
254 free (buf_out); in __libelf_decompress()
255 buf_out = NULL; in __libelf_decompress()
260 return buf_out; in __libelf_decompress()
298 void *buf_out = __libelf_decompress (buf_in, size_in, chdr.ch_size); in __libelf_decompress_elf() local
301 return buf_out; in __libelf_decompress_elf()
495 void *buf_out = __libelf_decompress_elf (scn, &size_out, &addralign); in elf_compress() local
496 if (buf_out == NULL) in elf_compress()
499 scn->zdata_base = buf_out; in elf_compress()