/src/sys/arch/vax/vax/ |
multicpu.c | 156 int bitno; local in function:cpu_handle_ipi 161 while ((bitno = ffs(ci->ci_ipimsgs))) { 162 bitno -= 1; /* ffs() starts from 1 */ 163 bbcci(bitno, &ci->ci_ipimsgs); 164 switch (bitno) { 194 panic("cpu_handle_ipi: bad bit %x", bitno);
|
/src/sys/arch/mips/ralink/ |
ralink_intr.c | 330 const u_int bitno = 31 - __builtin_clz(pending); local in function:ra_pic_intr 331 pending ^= (1 << bitno); 332 const int irq = bit2irq[bitno]; 353 const u_int bitno = 31 - __builtin_clz(ipending); local in function:evbmips_iointr 354 ipending ^= (1 << bitno); 355 const int irq = bitno - (31 - __builtin_clz(MIPS_INT_MASK_0));
|
/src/sys/arch/mips/rmi/ |
rmixl_pcixvar.h | 44 u_int bitno; member in struct:rmixl_pcix_dispatch
|
rmixl_pcievar.h | 62 u_int bitno; member in struct:rmixl_pcie_link_dispatch
|
rmixl_pcie.c | 160 #define RMIXL_PCIE_EVCNT(sc, link, bitno, cpu) \ 161 &(sc)->sc_evcnts[link][(bitno) * (ncpu) + (cpu)] 1096 u_int link, bitno, irq; local in function:rmixl_pcie_intr_string 1098 rmixl_pcie_decompose_pih(pih, &link, &bitno, &irq); 1153 rmixl_pcie_make_pih(u_int link, u_int bitno, u_int irq) 1158 KASSERT(bitno < 64); 1162 pih |= (bitno << 4); 1169 rmixl_pcie_decompose_pih(pci_intr_handle_t pih, u_int *link, u_int *bitno, u_int *irq) 1172 *bitno = (u_int)((pih >> 4) & 0x3f); 1176 KASSERT(*bitno < 64) 1258 u_int link, bitno, irq; local in function:rmixl_pcie_intr_establish [all...] |
rmixl_pcix.c | 784 u_int bitno, irq; local in function:rmixl_pcix_intr_string 786 rmixl_pcix_decompose_pih(pih, &bitno, &irq); 803 rmixl_pcix_make_pih(u_int bitno, u_int irq) 807 KASSERT(bitno < 64); 811 pih |= bitno; 817 rmixl_pcix_decompose_pih(pci_intr_handle_t pih, u_int *bitno, u_int *irq) 819 *bitno = (u_int)(pih & 0x3f); 822 KASSERT(*bitno < 64); 835 __func__, dip->bitno + 1, dip->irq)); 836 KASSERT(dip->bitno < RMIXL_PCIX_NINTR) 887 u_int bitno, irq; local in function:rmixl_pcix_intr_establish [all...] |
/src/sbin/ifconfig/ |
media.c | 370 int bitno, found = 0; local in function:print_media_status 373 for (bitno = 0; ifm_status_valid_list[bitno] != 0; bitno++) { 377 ifms->ifms_valid != ifm_status_valid_list[bitno])
|
/src/sys/arch/evbmips/loongson/ |
yeeloong_machdep.c | 431 int bitno; local in function:lemote_isa_intr 443 for (bitno = BONITO_NISA - 1, mask = 1UL << bitno; 445 bitno--, mask >>= 1) { 449 loongson_isa_specific_eoi(bitno); 453 &bonito_intrhead[BONITO_ISA_IRQ(bitno)].intrhand_head, 457 bonito_intrhead[BONITO_ISA_IRQ(bitno)].intr_count.ev_count++; 461 if (stray_intr[bitno]++ & 0x10000) { 462 printf("spurious isa interrupt %d\n", bitno); 463 stray_intr[bitno] = 0 [all...] |
/src/sys/net/ |
bsd-comp.c | 462 u_int bitno = 32; local in function:bsd_compress 493 bitno -= n_bits; \ 494 accm |= ((ent) << bitno); \ 498 bitno += 8; \ 499 } while (bitno <= 24); \ 617 if (bitno < 32) 627 if (bitno != 32) 628 PUTBYTE((accm | (0xff << (bitno-8))) >> 24); 677 u_int bitno = 7; local in function:bsd_incomp 734 bitno += n_bits 799 u_int bitno = 32; \/* 1st valid bit in accm *\/ local in function:bsd_decompress [all...] |