| /src/sys/arch/atari/stand/ahdilabel/ | 
| check.c | 50 	int		i, j, rcount, acount;  local in function:ahdi_checklabel 60 	acount = 0;
 126 			acount++;
 132 	if (acount)
 
 | 
| /src/sys/kern/ | 
| kern_tc.c | 1206 	uint64_t tcount, acount, dcount, *pcount;  local in function:pps_ref_event 1287 		acount = pps->capcount;	/* use capture timestamp */
 1291 		acount = tcount; /* use current timestamp */
 1300 		acount = (dcount / 2) + pps->capcount;
 1313 		pps->capcount = acount;
 1314 		*pcount = acount;
 1315 		pps->ppscount[2] = acount;
 1326 	pps->capcount = acount;
 1330 	bintime_addx(&bt, pps->capth->th_scale * (acount - pps->capth->th_offset_count));
 
 | 
| /src/sys/dev/raidframe/ | 
| rf_dagutils.c | 702 rf_ValidateBranch(RF_DagNode_t *node, int *scount, int *acount, 746 		acount[node->antecedents[i]->nodeNum]++;
 751 				acount, nodes, unvisited)) {
 811 	int    *scount, *acount;/* per-node successor and antecedent counts */  local in function:rf_ValidateDAG
 846 	acount = RF_Malloc(nodecount * sizeof(*acount));
 851 			acount, nodes, unvisited)) {
 875 		if (nodes[i]->numSuccedents != acount[nodes[i]->nodeNum]) {
 877 			    nodes[i]->name, nodes[i]->numSuccedents, acount[nodes[i]->nodeNum]);
 891 	RF_Free(acount, nodecount * sizeof(int))
 [all...]
 | 
| /src/tests/lib/libcurses/director/ | 
| testlang_parse.y | 402 			unsigned long acount; 404 			acount = strtoul($3, NULL, 10);
 405 			for (i = 0; i < acount; i++) {
 410 			unsigned long i, acount;
 413 			acount = strtoul($3, NULL, 10);
 415 			for (i = 0; i < acount; i++) {
 420 			unsigned long i, acount;
 422 			acount = strtoul($3, NULL, 10);
 423 			for (i = 0; i < acount; i++) {
 428 			unsigned long i, acount;
 [all...]
 | 
| /src/sys/dev/stbi/ | 
| stb_image.c | 3416       int rshift=0,gshift=0,bshift=0,ashift=0,rcount=0,gcount=0,bcount=0,acount=0;  local in function:bmp_load 3439          ashift = high_bit(ma)-7; acount = bitcount(mr);
 3459                a = (ma ? shiftsigned(v & ma, ashift, acount) : 255);
 
 |