Lines Matching refs:count

72 	int		count;		/* dynamic loop count		*/
165 unsigned int count[UCHAR_MAX + 1]; /* char frequency count */ \
166 unsigned int multi[UCHAR_MAX + 1]; /* muti char count */ \
808 if (!ep->value.loop->count)
810 ep->value.loop->count = num;
814 else if (!--ep->value.loop->count)
1017 if (2 * mp->count[';'] > mp->count['E'] + mp->count['e'])
1019 if ((mp->count['>'] + mp->count['<'] + mp->count['/']) > mp->count['E'] + mp->count['e'])
1022 vowl += mp->count[toupper(*s)] + mp->count[*s];
1024 freq += mp->count[toupper(*s)] + mp->count[*s];
1026 rare += mp->count[toupper(*s)] + mp->count[*s];
1027 return 5 * vowl >= mp->fbsz - mp->count[' '] && freq >= 10 * rare;
1057 memzero(mp->count, sizeof(mp->count));
1140 mp->count[c]++;
1252 mp->count[*b++]++;
1301 if (match(base, "*@(makefile|.mk)") || mp->multi['\t'] >= mp->count[':'] && (mp->multi['$'] > 0 || mp->multi[':'] > 0))
1330 if (c >= 2 && mp->identifier[ID_INCL2] >= c && mp->identifier[ID_INCL3] >= c && mp->count['.'] >= c ||
1331 mp->identifier[ID_C] >= 5 && mp->count[';'] >= 5 ||
1332 mp->count['='] >= 20 && mp->count[';'] >= 20)
1351 if (mp->identifier[ID_YACC] < 5 || mp->count['%'] < 5)
1389 if (mp->identifier[ID_HTML] > 0 && mp->count['<'] >= 8 && (c = mp->count['<'] - mp->count['>']) >= -2 && c <= 2)
1396 if (mp->identifier[ID_COPYBOOK] > 0 && mp->identifier[ID_COBOL] == 0 && (c = mp->count['('] - mp->count[')']) >= -2 && c <= 2)
1403 if (mp->identifier[ID_COBOL] > 0 && mp->identifier[ID_COPYBOOK] > 0 && (c = mp->count['('] - mp->count[')']) >= -2 && c <= 2)
1410 if (mp->identifier[ID_PL1] > 0 && (c = mp->count['('] - mp->count[')']) >= -2 && c <= 2)
1417 if (mp->count['{'] >= 6 && (c = mp->count['{'] - mp->count['}']) >= -2 && c <= 2 && mp->count['\\'] >= mp->count['{'])
1497 pun = mp->count[c] - q;
1525 if (!flags && mp->count['\n'] >= mp->count['\r'] && mp->count['\n'] <= (mp->count['\r'] + 1) && mp->count['\r'])
2463 sfprintf(sp, "loop(%d,%d,%d,%d)", ep->value.loop->start, ep->value.loop->size, ep->value.loop->count, ep->value.loop->offset);