Home
last modified time | relevance | path

Searched refs:new_header_size (Results 1 – 1 of 1) sorted by relevance

/netbsd-src/external/gpl3/binutils/dist/bfd/
H A Dcompress.c575 int new_header_size = bfd_get_compression_header_size (abfd, NULL); in bfd_compress_section_contents() local
590 if (!new_header_size) in bfd_compress_section_contents()
591 new_header_size = 12; in bfd_compress_section_contents()
599 compressed_size = zlib_size + new_header_size; in bfd_compress_section_contents()
634 compressed_size = compressBound (uncompressed_size) + new_header_size; in bfd_compress_section_contents()
644 memcpy (buffer + new_header_size, in bfd_compress_section_contents()
653 compressed_size = ZSTD_compress (buffer + new_header_size, in bfd_compress_section_contents()
666 else if (compress ((Bytef *) buffer + new_header_size, &compressed_size, in bfd_compress_section_contents()
675 compressed_size += new_header_size; in bfd_compress_section_contents()