Searched refs:in_count (Results 1 - 2 of 2) sorted by last modified time

/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_compress.c91 int64_t in_count, out_count, checkpoint; member in struct:private_data
186 state->in_count = 0; /* Length of input. */
346 if (state->in_count == 0) {
348 ++state->in_count;
354 state->in_count++;
389 if (state->in_count < state->checkpoint)
392 state->checkpoint = state->in_count + CHECK_GAP;
394 if (state->in_count <= 0x007fffff && state->out_count != 0)
395 ratio = (int)(state->in_count * 256 / state->out_count);
399 ratio = (int)(state->in_count / rati
[all...]
/freebsd-11-stable/usr.bin/compress/
H A Dzopen.c158 #define in_count zs->zs_in_count macro
267 in_count = 1;
285 in_count++;
313 } else if ((count_int)in_count >=
637 checkpoint = in_count + CHECK_GAP;
639 if (in_count > 0x007fffff) { /* Shift will overflow. */
644 rat = in_count / rat;
646 rat = (in_count << 8) / bytes_out; /* 8 fractional bits. */
714 in_count = 1; /* Length of input. */

Completed in 160 milliseconds