• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/media/video/pvrusb2/

Lines Matching defs:ccnt

3120 	unsigned int bcnt,ccnt;
3135 sizeof(buf)-bcnt,&ccnt);
3136 bcnt += ccnt;
3966 unsigned int ccnt,bcnt;
3970 ccnt = scnprintf(tbuf+bcnt,
3973 bcnt += ccnt;
3976 ccnt = scnprintf(tbuf+bcnt,
3980 bcnt += ccnt;
3985 ccnt = scnprintf(tbuf+bcnt,
3988 bcnt += ccnt;
3990 ccnt = scnprintf(tbuf+bcnt,
3993 bcnt += ccnt;
3995 ccnt = scnprintf(tbuf+bcnt,
3998 bcnt += ccnt;
4797 unsigned int idx,ccnt;
4801 ccnt = scnprintf(buf+tcnt,
4806 tcnt += ccnt;
4882 unsigned int ccnt;
4884 ccnt = scnprintf(buf,
4887 tcnt += ccnt;
4892 ccnt = scnprintf(buf+tcnt,
4895 tcnt += ccnt;
4940 unsigned int ccnt;
4945 ccnt = scnprintf(buf, acnt, "Associated v4l2-subdev drivers and I2C clients:\n");
4946 tcnt += ccnt;
4952 ccnt = scnprintf(buf + tcnt, acnt - tcnt, " %s:", p);
4953 tcnt += ccnt;
4955 ccnt = scnprintf(buf + tcnt, acnt - tcnt,
4957 tcnt += ccnt;
4961 ccnt = scnprintf(buf + tcnt, acnt - tcnt,
4964 tcnt += ccnt;
4966 ccnt = scnprintf(buf + tcnt, acnt - tcnt,
4968 tcnt += ccnt;
4978 unsigned int bcnt,ccnt,idx;
4982 ccnt = pvr2_hdw_report_unlocked(hdw,idx,buf,acnt);
4983 if (!ccnt) break;
4984 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
4986 buf[0] = '\n'; ccnt = 1;
4987 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
4989 ccnt = pvr2_hdw_report_clients(hdw, buf, acnt);
4990 bcnt += ccnt; acnt -= ccnt; buf += ccnt;
4999 unsigned int idx, ccnt;
5003 ccnt = pvr2_hdw_report_unlocked(hdw,idx,buf,sizeof(buf));
5004 if (!ccnt) break;
5005 printk(KERN_INFO "%s %.*s\n",hdw->name,ccnt,buf);
5007 ccnt = pvr2_hdw_report_clients(hdw, buf, sizeof(buf));
5009 while (ucnt < ccnt) {
5011 while ((lcnt + ucnt < ccnt) && (buf[lcnt + ucnt] != '\n')) {