Searched refs:null_length (Results 1 - 10 of 10) sorted by relevance

/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_write_private.h48 size_t null_length; member in struct:archive_write
H A Darchive_write.c109 a->null_length = 1024;
110 nulls = (unsigned char *)malloc(a->null_length);
115 memset(nulls, 0, a->null_length);
H A Darchive_write_set_format_cpio_newc.c286 to_write = cpio->entry_bytes_remaining < a->null_length ?
287 cpio->entry_bytes_remaining : a->null_length;
H A Darchive_write_set_compression_bzip2.c276 state->stream.avail_in = tocopy < a->null_length ?
277 tocopy : a->null_length;
H A Darchive_write_set_compression_xz.c309 state->stream.avail_in = tocopy < a->null_length ?
310 tocopy : a->null_length;
H A Darchive_write_set_format_cpio.c346 to_write = cpio->entry_bytes_remaining < a->null_length ?
347 cpio->entry_bytes_remaining : a->null_length;
H A Darchive_write_set_compression_compress.c444 if (tocopy > a->null_length)
445 tocopy = a->null_length;
H A Darchive_write_set_compression_gzip.c314 state->stream.avail_in = tocopy < a->null_length ?
315 tocopy : a->null_length;
H A Darchive_write_set_format_ustar.c564 to_write = padding < a->null_length ? padding : a->null_length;
H A Darchive_write_set_format_pax.c1256 to_write = padding < a->null_length ? padding : a->null_length;

Completed in 129 milliseconds