Lines Matching defs:cnt
435 int cnt;
440 cnt = days/146097;
441 days -= 146097*cnt;
442 year += 400*cnt;
444 cnt = (3*days + 3)/109573;
445 days -= 36524*cnt;
446 year += 100*cnt;
448 cnt = days/1461;
449 days -= 1461L*cnt;
450 year += 4*cnt;
452 cnt = (3*days + 3)/1096;
453 days -= 365*cnt;
454 year += cnt;
475 void showname(const char *prefix, const char *name, int cnt)
483 for (i=0; (i<cnt) && n[i]; i++) {
3445 int cnt;
3480 cnt = 0;
3523 poslist[cnt++] = k;
3550 for (j=cnt-1; (j>=0) && (state==T_OK); j--) {
3562 && (!nextbuf && (j == (cnt - 1)))) {