Searched refs:ih (Results 1 - 25 of 174) sorted by relevance

1234567

/freebsd-11-stable/sys/arm/samsung/exynos/
H A Dexynos5_combiner.h29 void combiner_setup_intr(char *source_name, void (*ih)(void *), void *ih_user);
H A Dexynos5_pad.h29 int pad_setup_intr(int gpio_number, void (*ih)(void *), void *ih_user);
H A Dexynos5_combiner.c72 void *ih[NGRP]; member in struct:combiner_softc
260 void (*ih) (void *); member in struct:combined_intr
270 void (*ih) (void *);
290 ih = intr_map[grp][i].ih;
293 if (enabled && (ih != NULL)) {
294 ih(ih_user);
303 combiner_setup_intr(char *source_name, void (*ih)(void *), void *ih_user)
343 cirq->ih = ih;
[all...]
/freebsd-11-stable/sys/arm/freescale/vybrid/
H A Dvf_port.h43 int port_setup(int, enum ev_type, void (*ih)(void *), void *ih_user);
H A Dvf_port.c81 void (*ih) (void *); member in struct:port_event
127 if (pev->ih != NULL) {
128 pev->ih(pev->ih_user);
138 port_setup(int pnum, enum ev_type pevt, void (*ih)(void *), void *ih_user)
182 pev->ih = ih;
H A Dvf_edma.c63 uint32_t (*ih) (void *, int); member in struct:edma_channel
108 if (ch->ih != NULL) {
109 ch->ih(ch->ih_user, i);
214 ch->ih = tcd->ih;
/freebsd-11-stable/sys/kern/
H A Dkern_intr.c108 struct intr_handler *ih);
118 struct intr_handler *ih);
197 struct intr_handler *ih; local
209 TAILQ_FOREACH(ih, &ie->ie_handlers, ih_next) {
210 if (strlen(ie->ie_fullname) + strlen(ih->ih_name) + 1 <
213 strcat(ie->ie_fullname, ih->ih_name);
217 if (ih->ih_flags & IH_ENTROPY)
229 ih = TAILQ_FIRST(&ie->ie_handlers);
230 missed = strlen(ie->ie_fullname) + strlen(ih->ih_name) + 2 -
233 strcat(ie->ie_fullname, &ih
543 ithread_create(const char *name, struct intr_handler *ih) argument
589 struct intr_handler *ih, *temp_ih; local
663 struct intr_handler *ih, *temp_ih; local
750 struct intr_handler *ih; local
804 struct intr_handler *ih; local
864 struct intr_handler *ih; local
1018 struct intr_handler *ih; local
1223 struct intr_handler *ih = (struct intr_handler *)cookie; local
1268 priv_ithread_execute_handler(struct proc *p, struct intr_handler *ih) argument
1306 struct intr_handler *ih, *ihn; local
1482 struct intr_handler *ih; local
1573 struct intr_handler *ih; local
1675 struct intr_handler *ih; local
1787 db_dump_intrhand(struct intr_handler *ih) argument
1875 struct intr_handler *ih; local
[all...]
/freebsd-11-stable/lib/libc/regex/grot/
H A DMakefile40 .SUFFIXES: .ih .h
41 .c.ih:
60 regcomp.o: cname.h regcomp.ih
61 regexec.o: engine.c engine.ih
62 regerror.o: regerror.ih
64 debug.o: debug.ih
65 main.o: debug.ih main.ih split.ih
66 split.o: split.ih
[all...]
/freebsd-11-stable/tools/tools/net80211/w00t/redir/
H A Dbuddy.c55 struct ip *ih; local
61 ih = (struct ip*) buf;
66 if (ih->ip_p != 0)
69 if (ih->ip_hl != 5)
73 id = ih->ip_id;
H A Dredir.c260 struct ip *ih; local
294 ih = (struct ip*) (ptr+8);
295 ih->ip_v = 4;
296 ih->ip_hl = 5;
298 ih->ip_len = htons(len);
299 ih->ip_id = htons(q->id);
300 ih->ip_ttl = 69;
301 ih->ip_p = 0;
302 ih->ip_src.s_addr = p->src.s_addr;
303 ih
[all...]
/freebsd-11-stable/sys/opencrypto/
H A Dskipjack.c81 #define g(k0, k1, k2, k3, ih, il, oh, ol) \
83 oh = k##k0 [il] ^ ih; \
89 #define g0(ih, il, oh, ol) g(0, 1, 2, 3, ih, il, oh, ol)
90 #define g4(ih, il, oh, ol) g(4, 5, 6, 7, ih, il, oh, ol)
91 #define g8(ih, il, oh, ol) g(8, 9, 0, 1, ih, il, oh, ol)
92 #define g2(ih, il, oh, ol) g(2, 3, 4, 5, ih, i
[all...]
/freebsd-11-stable/sys/dev/si/
H A Dsi_eisa.c67 void *ih; local
71 ih = NULL;
105 NULL, si_intr, sc,&ih);
120 if (ih)
121 bus_teardown_intr(dev, sc->sc_irq_res, ih);
H A Dsi_pci.c64 void *ih; local
68 ih = NULL;
102 NULL, si_intr, sc, &ih);
140 if (ih)
141 bus_teardown_intr(dev, sc->sc_irq_res, ih);
H A Dsi_isa.c267 void *ih; local
271 ih = NULL;
295 NULL, si_intr, sc, &ih);
310 if (ih)
311 bus_teardown_intr(dev, sc->sc_irq_res, ih);
/freebsd-11-stable/sys/dev/altera/pio/
H A Dpio.c72 void *ih; member in struct:pio_softc
90 NULL, intr_handler, ih_user, &sc->ih)) {
105 bus_teardown_intr(sc->dev, sc->res[1], sc->ih);
/freebsd-11-stable/sys/dev/pccbb/
H A Dpccbb.c360 struct cbb_intrhand *ih; local
366 ih = malloc(sizeof(struct cbb_intrhand), M_DEVBUF, M_NOWAIT);
367 if (ih == NULL)
369 *cookiep = ih;
370 ih->filt = filt;
371 ih->intr = intr;
372 ih->arg = arg;
373 ih->sc = sc;
379 filt ? cbb_func_filt : NULL, intr ? cbb_func_intr : NULL, ih,
380 &ih
394 struct cbb_intrhand *ih; local
602 struct cbb_intrhand *ih = (struct cbb_intrhand *)arg; local
625 struct cbb_intrhand *ih = (struct cbb_intrhand *)arg; local
[all...]
/freebsd-11-stable/lib/msun/src/
H A Dk_rem_pio2.c118 * ih integer. If >0 it indicates q[] is >= 0.5, hence
296 int32_t jz,jx,jv,jp,jk,carry,n,iq[20],i,j,k,m,q0,ih; local
331 ih = 0;
335 ih = iq[jz-1]>>(23-q0);
337 else if(q0==0) ih = iq[jz-1]>>23;
338 else if(z>=0.5) ih=2;
340 if(ih>0) { /* q > 0.5 */
358 if(ih==2) {
412 y[0] = (ih==0)? fw: -fw;
419 y[0] = (ih
[all...]
/freebsd-11-stable/lib/libc/db/test/
H A Ddbtest.c585 static HASHINFO ih; local
624 ih.bsize = atoi(eq);
625 return (&ih);
628 ih.ffactor = atoi(eq);
629 return (&ih);
632 ih.nelem = atoi(eq);
633 return (&ih);
636 ih.cachesize = atoi(eq);
637 return (&ih);
640 ih
[all...]
/freebsd-11-stable/contrib/netbsd-tests/lib/libc/db/
H A Dh_db.c632 static HASHINFO ih; local
671 ih.bsize = atoi(eq);
672 return &ih;
675 ih.ffactor = atoi(eq);
676 return &ih;
679 ih.nelem = atoi(eq);
680 return &ih;
683 ih.cachesize = atoi(eq);
684 return &ih;
687 ih
[all...]
/freebsd-11-stable/sys/sparc64/include/
H A Dintr_machdep.h98 int intr_describe(int vec, void *ih, const char *descr);
/freebsd-11-stable/sys/dev/firewire/
H A Dfwohcivar.h44 void *ih; member in struct:fwohci_softc
/freebsd-11-stable/contrib/tcpdump/
H A Dprint-juniper.c518 const struct juniper_ipsec_header *ih; local
525 ih = (const struct juniper_ipsec_header *)p;
527 ND_TCHECK(*ih);
528 switch (ih->type) {
542 ih->type,
553 EXTRACT_16BITS(&ih->sa_index),
554 ih->ttl,
555 tok2str(juniper_ipsec_type_values,"Unknown",ih->type),
556 ih->type,
557 EXTRACT_32BITS(&ih
[all...]
/freebsd-11-stable/sys/dev/sound/pci/
H A Dhdspe.c105 if (scp->ih != NULL)
106 scp->ih(scp);
149 NULL, hdspe_intr, sc, &sc->ih)) {
368 if (sc->ih)
369 bus_teardown_intr(dev, sc->irq, sc->ih);
/freebsd-11-stable/tools/tools/net80211/wesside/wesside/
H A Dwesside.c779 struct ip* ih; local
789 ih = (struct ip*) &inet_clear[8];
790 ih->ip_hl = 5;
791 ih->ip_v = 4;
792 ih->ip_tos = 0;
793 ih->ip_len = htons(20+8+PRGA_LEN);
794 ih->ip_id = htons(666);
795 ih->ip_off = 0;
796 ih->ip_ttl = ttl_val;
797 ih
1851 struct ip* ih; local
[all...]
/freebsd-11-stable/sys/sparc64/sparc64/
H A Dintr_machdep.c336 struct intr_handler *ih; local
375 TAILQ_FOREACH(ih, &ie->ie_handlers, ih_next) {
376 if (ih->ih_filter != NULL && ih->ih_filter != filt) {
431 intr_describe(int vec, void *ih, const char *descr) argument
444 error = intr_event_describe_handler(iv->iv_event, ih, descr);

Completed in 174 milliseconds

1234567