HomeSort by: relevance | last modified time | path
    Searched defs:in_count (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/net/
bsd-comp.c 98 u_int in_count; /* uncompressed bytes, aged */ member in struct:bsd_db
207 db->in_count = 0;
229 if (db->in_count >= db->checkpoint) {
231 if (db->in_count >= RATIO_MAX
233 db->in_count -= db->in_count/4;
237 db->checkpoint = db->in_count + CHECK_GAP;
245 * db->in_count <= RATIO_MAX.
247 new_ratio = db->in_count << RATIO_SCALE_LOG;
276 stats->ratio = db->in_count;
    [all...]
  /src/usr.bin/compress/
zopen.c 159 #define in_count zs->zs_in_count macro
268 in_count = 1;
286 in_count++;
314 } else if ((count_int)in_count >=
630 checkpoint = in_count + CHECK_GAP;
632 if (in_count > 0x007fffff) { /* Shift will overflow. */
637 rat = in_count / rat;
639 rat = (in_count << 8) / bytes_out; /* 8 fractional bits. */
675 in_count = 1; /* Length of input. */

Completed in 13 milliseconds