Home
last modified time | relevance | path

Searched refs:in_count (Results 1 – 6 of 6) sorted by relevance

/linux-2.4.37.9/drivers/isdn/
Disdn_bsdcomp.c130 unsigned int in_count; /* uncompressed bytes, aged */ member
183 db->in_count = 0; in bsd_clear()
206 if (db->in_count >= db->checkpoint) in bsd_check()
209 if (db->in_count >= RATIO_MAX || db->bytes_out >= RATIO_MAX) in bsd_check()
211 db->in_count -= (db->in_count >> 2); in bsd_check()
215 db->checkpoint = db->in_count + CHECK_GAP; in bsd_check()
227 new_ratio = db->in_count << RATIO_SCALE_LOG; in bsd_check()
258 stats->in_count = db->in_count; in bsd_stats()
599 db->in_count += isize; in bsd_compress()
727 db->in_count += (skb_out->len - 1); /* don't count the header */ in bsd_decompress()
/linux-2.4.37.9/drivers/net/
Dbsd_comp.c145 unsigned int in_count; /* uncompressed bytes, aged */ member
225 db->in_count = 0; in bsd_clear()
248 if (db->in_count >= db->checkpoint) in bsd_check()
251 if (db->in_count >= RATIO_MAX || db->bytes_out >= RATIO_MAX) in bsd_check()
253 db->in_count -= (db->in_count >> 2); in bsd_check()
257 db->checkpoint = db->in_count + CHECK_GAP; in bsd_check()
269 new_ratio = db->in_count << RATIO_SCALE_LOG; in bsd_check()
300 stats->in_count = db->in_count; in bsd_comp_stats()
751 db->in_count += isize; in bsd_compress()
918 db->in_count += (explen - 3); /* don't count the header */ in bsd_decompress()
/linux-2.4.37.9/drivers/usb/
Dmdc800.c174 int in_count; member
598 mdc800->in_count=0; in mdc800_device_open()
787 mdc800->in_count=0; in mdc800_device_write()
794 if (mdc800->in_count < 8) in mdc800_device_write()
796 mdc800->in[mdc800->in_count] = c; in mdc800_device_write()
797 mdc800->in_count++; in mdc800_device_write()
806 if (mdc800->in_count == 8) in mdc800_device_write()
/linux-2.4.37.9/include/linux/
Dppp_defs.h152 __u32 in_count; /* Bytes received */ member
/linux-2.4.37.9/drivers/char/ftape/lowlevel/
Dfdc-io.h235 __u8 * in_data, int in_count);
Dfdc-io.c360 __u8 * in_data, int in_count) in fdc_issue_command() argument
375 if (in_count > 0) { in fdc_issue_command()
376 TRACE_CATCH(fdc_result(in_data, in_count), in fdc_issue_command()