Searched refs:block_length (Results 1 - 8 of 8) sorted by relevance

/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_write_set_compression_none.c207 ssize_t block_length; local
224 block_length = state->buffer_size - state->avail;
233 ( (block_length + a->bytes_in_last_block - 1) /
237 if (block_length < target_block_length) {
239 target_block_length - block_length);
240 block_length = target_block_length;
243 a->client_data, state->buffer, block_length);
H A Darchive_write_set_compression_bzip2.c251 ssize_t block_length; local
291 block_length = state->stream.next_out - state->compressed;
300 ( (block_length + a->bytes_in_last_block - 1) /
304 if (block_length < target_block_length) {
306 target_block_length - block_length);
307 block_length = target_block_length;
312 state->compressed, block_length);
H A Darchive_write_set_compression_xz.c286 ssize_t block_length, target_block_length, bytes_written; local
324 block_length = state->stream.next_out - state->compressed;
333 ( (block_length + a->bytes_in_last_block - 1) /
337 if (block_length < target_block_length) {
339 target_block_length - block_length);
340 block_length = target_block_length;
345 state->compressed, block_length);
H A Darchive_write_set_compression_compress.c425 ssize_t block_length, target_block_length, bytes_written; local
461 block_length = state->compressed_offset;
470 ( (block_length + a->bytes_in_last_block - 1) /
474 if (block_length < target_block_length) {
476 target_block_length - block_length);
477 block_length = target_block_length;
482 state->compressed, block_length);
H A Darchive_write_set_compression_gzip.c290 ssize_t block_length, target_block_length, bytes_written; local
365 block_length = state->stream.next_out - state->compressed;
374 ( (block_length + a->bytes_in_last_block - 1) /
378 if (block_length < target_block_length) {
380 target_block_length - block_length);
381 block_length = target_block_length;
386 state->compressed, block_length);
/freebsd-9.3-release/sys/dev/isci/scil/
H A Dsati_mode_pages.h128 U8 block_length[3]; member in struct:SCSI_MODE_SELECT_MODE_PARAMETER_BLOCK_DESCRIPTOR
/freebsd-9.3-release/contrib/ofed/management/opensm/opensm/
H A Dosm_qos.c73 unsigned block_length,
84 memcpy(&block, table_block, block_length * sizeof(block.vl_entry[0]));
85 for (i = 0; i < block_length; i++)
90 block_length * sizeof(block.vl_entry[0])))
67 vlarb_update_table_block(osm_sm_t * sm, osm_physp_t * p, uint8_t port_num, unsigned force_update, const ib_vl_arb_table_t * table_block, unsigned block_length, unsigned block_num) argument
/freebsd-9.3-release/sys/cam/scsi/
H A Dscsi_da.h288 uint8_t block_length[3]; /* length of an LBA in bytes */ member in struct:format_capacity_descriptor

Completed in 131 milliseconds