| /src/sys/arch/hpcmips/tx/ | 
| tx39clock.c | 255 	int pcnt;  local in function:tx39clock_init 260 	pcnt = TX39_TIMERCLK / CLOCK_RATE - 1;
 263 	reg = TX39_TIMERPERIODIC_PERVAL_SET(reg, pcnt);
 
 | 
| /src/sys/arch/arm/sunxi/ | 
| sunxi_debe.c | 445 	u_int index, count, shift, off, pcnt;  local in function:sunxi_debe_set_cursor 504 		for (i = 0, pcnt = 0; i < SUNXI_DEBE_CURMAX * 8; i++) {
 505 			for (j = 0, mask = 1; j < 8; j++, mask <<= 1, pcnt++) {
 508 				off = (pcnt >> 4) * 4;
 509 				shift = (pcnt & 0xf) * 2;
 
 | 
| /src/sys/dev/pci/qat/ | 
| qat_ae.c | 906 	int pcnt, ccnt, elapsed, times;  local in function:qat_ae_wait_num_cycles 909 	pcnt = cnt & 0xffff;
 916 		elapsed = ccnt - pcnt;
 1120 	uint32_t cnt, pcnt, mask;  local in function:qat_ae_check
 1133 		pcnt = cnt & 0xffff;
 1144 			if (cnt == pcnt)
 
 | 
| /src/sys/arch/sparc64/sparc64/ | 
| pmap.c | 714 	int i, j, pcnt, msgbufsiz;  local in function:pmap_bootstrap 901 	pcnt = prom_memlist_size / sizeof(*orig);
 905 	for (i = 0; i < pcnt; i++) {
 923 		for (i = 0; i < pcnt; i++) {
 938 	for (i = 0; i < pcnt; i++) {
 939 		for (j = i; j < pcnt; j++) {
 960 	for (mp = avail, i = 0; i < pcnt; i++, mp = &avail[i]) {
 978 			      (pcnt - (mp - avail)) * sizeof *mp);
 979 			pcnt--;
 1029 		for (i = 0; i < pcnt; i++)
 [all...]
 | 
| /src/usr.bin/vmstat/ | 
| vmstat.c | 1230 	double pcnt, total;  local in function:cpustats 1238 		pcnt = 100 / total;
 1240 		pcnt = 0;
 1241 	stat_us = (cur.cp_time[CP_USER] + cur.cp_time[CP_NICE]) * pcnt;
 1242 	stat_sy = (cur.cp_time[CP_SYS] + cur.cp_time[CP_INTR]) * pcnt;
 1243 	stat_id = cur.cp_time[CP_IDLE] * pcnt;
 
 |