| /src/sys/arch/i386/pnpbios/ | 
| pckbc_pnpbios.c | 188 	int irq, ist;  local in function:pckbc_pnpbios_intr_establish 198 			ist = psc->sc_ist;
 204 		rv = isa_intr_establish(ic, irq, ist, IPL_TTY, pckbcintr, sc);
 
 | 
| /src/sys/dev/isa/ | 
| tcic2_isa.c | 344 	int irq, ist;  local in function:tcic_isa_chip_intr_establish 352 		ist = IST_LEVEL;
 354 		ist = IST_PULSE;
 356 		ist = IST_LEVEL;
 359 	    h->sc->validirqs & tcic_isa_intr_alloc_mask, ist, &irq))
 361 	if ((ih = isa_intr_establish(h->sc->intr_est, irq, ist, ipl,
 
 | 
| i82365_isasubr.c | 452 	int irq, ist;  local in function:pcic_isa_chip_intr_establish 467 		ist = IST_EDGE;		/* SEE COMMENT ABOVE */
 469 		ist = IST_PULSE;	/* SEE COMMENT ABOVE */
 471 		ist = IST_EDGE;		/* SEE COMMENT ABOVE */
 473 	if (isa_intr_alloc(ic, sc->intr_mask[h->chip], ist, &irq))
 483 	if ((ih = isa_intr_establish(ic, irq, ist, ipl, fct, arg)) == NULL)
 
 | 
| essvar.h | 111 	int	ist;  member in struct:ess_audio_channel 
 | 
| ym.c | 1029 	u_int8_t ist;  local in function:ym_intr 1035 	if (((ist = ym_read(sc, SA3_IRQA_STAT)) &
 1048 		if (ist & (SA3_IRQ_STAT_TI|SA3_IRQ_STAT_CI|SA3_IRQ_STAT_PI)) {
 1056 		if (ist & SA3_IRQ_STAT_MPU) {
 1065 		if ((ist & SA3_IRQ_STAT_MV) && YM_IS_SA3(sc)) {
 1069 	} while (processed && (ist = ym_read(sc, SA3_IRQA_STAT)));
 
 | 
| /src/sys/dev/eisa/ | 
| mlx_eisa.c | 116 	int irq, ist, icfg;  local in function:mlx_eisa_attach 174 	ist = (icfg & 0x08) != 0 ? IST_LEVEL : IST_EDGE;
 182 	mlx->mlx_ih = eisa_intr_establish(ec, ih, ist, IPL_BIO, mlx_intr, mlx);
 192 		    ist == IST_EDGE ? "edge" : "level", intrstr);
 
 | 
| if_tlp_eisa.c | 153 	int irq, ist, i, cnt;  local in function:tlp_eisa_attach 248 	ist = (val & 0x01) ? IST_EDGE : IST_LEVEL;
 258 	esc->sc_ih = eisa_intr_establish(ec, ih, ist, IPL_NET, tlp_intr, sc);
 268 		    ist == IST_EDGE ? "edge" : "level", intrstr);
 
 | 
| ahb.c | 611 	int i, irq, ist, busid;  local in function:ahb_find 688 		ist = IST_EDGE;
 690 		ist = IST_LEVEL;
 701 		sc->sc_ist = ist;
 
 | 
| /src/sys/arch/arm/sunxi/ | 
| sunxi_nmi.c | 184 	int ist;  local in function:sunxi_nmi_fdt_establish 233 		ist = IST_EDGE;
 237 		ist = IST_EDGE;
 241 		ist = IST_LEVEL;
 245 		ist = IST_LEVEL;
 249 		ist = IST_LEVEL;
 266 	sc->sc_is.is_type = ist;
 
 | 
| /src/sys/arch/alpha/pci/ | 
| sio_pic.c | 502 	int ist, irq = ih->ih_num;  local in function:sio_intr_disestablish 527 			ist = IST_EDGE;
 531 			ist = IST_NONE;
 534 		sio_setirqstat(irq, 0, ist);
 535 		alpha_shared_intr_set_dfltsharetype(sio_intr, irq, ist);
 
 | 
| /src/sys/arch/amiga/dev/ | 
| if_esreg.h | 59 		volatile u_char ist;	/* Interrupt Status Register */  member in struct:smcregs::__anonf052b2be0308 
 | 
| /src/sys/arch/powerpc/booke/pci/ | 
| pq3pci.c | 250 #define	PIH_MAKE(irq, ist, nmsi) (((nmsi) << 20) | ((irq) << 8) | (ist)) 1400 	int ist = prop_number_unsigned_value(pn_ist);  local in function:pq3pci_intr_handle_lookup
 1402 	return PIH_MAKE(irq, ist, 0);
 1453 	const int ist = PIH_IST(handle);  local in function:pq3pci_intr_establish
 1455 	if (ist == IST_MSI) {
 1593 	const int ist = PIH_IST(handle);  local in function:pq3pci_intr_type
 1595 	if (ist == IST_MSI)
 1678 	const int ist = PIH_IST(*ihps);  local in function:pq3pci_intr_release
 1679 	if (ist == IST_MSI
 [all...]
 | 
| /src/sys/arch/amd64/amd64/ | 
| machdep.c | 1419     int ist, int type, int dpl, int sel) 1430 	gd->gd_ist = ist;
 1949 		int sel, ist;  local in function:init_x86_64
 1953 		ist = 0;
 1959 			ist = 4;
 1962 			ist = 3;
 1969 			ist = 2;
 1980 		set_idtgate(&idt[x], x86_exceptions[x], ist, SDT_SYS386IGT,
 
 |