Searched refs:write_size (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/xz/src/xzdec/
H A Dxzdec.c201 const size_t write_size = BUFSIZ - strm->avail_out; local
203 if (fwrite(out_buf, 1, write_size, stdout)
204 != write_size) {
/freebsd-11-stable/usr.bin/gzip/
H A Dunxz.c102 const size_t write_size = sizeof(obuf) - strm.avail_out; local
104 if (write(o, obuf, write_size) != (ssize_t)write_size)
109 bytes_out += write_size;
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Docteon-pci-console.c330 int write_size = MIN(bytes_available, bytes_to_write); local
332 if (cons_ptr->output_write_index + write_size >= cons_ptr->buf_size)
333 write_size = cons_ptr->buf_size - cons_ptr->output_write_index;
335 memcpy(buf_ptr + cons_ptr->output_write_index, buffer + bytes_written, write_size);
337 cons_ptr->output_write_index = (cons_ptr->output_write_index + write_size)%cons_ptr->buf_size;
338 bytes_to_write -= write_size;
339 bytes_written += write_size;
/freebsd-11-stable/sys/dev/sfxge/common/
H A Def10_nvram.c2008 uint32_t write_size; local
2012 NULL, &write_size)) != 0)
2015 if (write_size != 0) {
2020 if (size % write_size != 0) {
2025 write_size = EF10_NVRAM_CHUNK;
2029 chunk = MIN(size, write_size);

Completed in 83 milliseconds