Home
last modified time | relevance | path

Searched refs:stat0 (Results 1 – 9 of 9) sorted by relevance

/netbsd-src/sys/arch/arm/ti/
H A Dti_motg.c189 uint32_t stat, stat0, stat1; in ti_motg_intr() local
196 stat0 = TIOTG_USBC_READ4(sc, USBCTRL_IRQ_STAT0); in ti_motg_intr()
199 sc->sc_ctrlport, stat0, stat1, stat); in ti_motg_intr()
201 if (stat0) { in ti_motg_intr()
202 TIOTG_USBC_WRITE4(sc, USBCTRL_IRQ_STAT0, stat0); in ti_motg_intr()
210 rv = motg_intr(&sc->sc_motg, ((stat0 >> 16) & 0xffff), in ti_motg_intr()
211 stat0 & 0xffff, stat1 & 0xff); in ti_motg_intr()
/netbsd-src/sys/arch/hp300/dev/
H A Dfhpib.c526 int stat0; in fhpibintr() local
528 stat0 = hd->hpib_ids; in fhpibintr()
529 if ((stat0 & (IDS_IE|IDS_IR)) != (IDS_IE|IDS_IR)) { in fhpibintr()
531 if ((fhpibdebug & FDB_FAIL) && (stat0 & IDS_IR) && in fhpibintr()
534 device_xname(sc->sc_dev), stat0); in fhpibintr()
554 stat0 = hd->hpib_cmd; in fhpibintr()
558 stat0 = hd->hpib_intr; in fhpibintr()
564 stat0 = hd->hpib_intr; in fhpibintr()
567 doppollint && (stat0 & IM_PPRESP) == 0) in fhpibintr()
569 device_xname(sc->sc_dev), stat0); in fhpibintr()
[all …]
H A Dnhpib.c508 int stat0; in nhpibintr() local
513 stat0 = hd->hpib_mis; in nhpibintr()
533 stat0 = nhpibppoll(hs); in nhpibintr()
534 if (stat0 & (0x80 >> hq->hq_slave)) { in nhpibintr()
541 device_xname(hs->sc_dev), stat0); in nhpibintr()
/netbsd-src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/gpio/
H A Dnouveau_nvkm_subdev_gpio_gk104.c37 u32 stat0 = nvkm_rd32(device, 0x00dc08) & intr0; in gk104_gpio_intr_stat() local
39 *lo = (stat1 & 0xffff0000) | (stat0 >> 16); in gk104_gpio_intr_stat()
40 *hi = (stat1 << 16) | (stat0 & 0x0000ffff); in gk104_gpio_intr_stat()
H A Dnouveau_nvkm_subdev_gpio_g94.c37 u32 stat0 = nvkm_rd32(device, 0x00e050) & intr0; in g94_gpio_intr_stat() local
39 *lo = (stat1 & 0xffff0000) | (stat0 >> 16); in g94_gpio_intr_stat()
40 *hi = (stat1 << 16) | (stat0 & 0x0000ffff); in g94_gpio_intr_stat()
/netbsd-src/external/gpl2/lvm2/dist/lib/device/
H A Ddev-cache.c163 struct stat stat0, stat1; in _compare_paths() local
215 if (lstat(p0, &stat0)) { in _compare_paths()
223 if (S_ISLNK(stat0.st_mode) && !S_ISLNK(stat1.st_mode)) in _compare_paths()
225 if (!S_ISLNK(stat0.st_mode) && S_ISLNK(stat1.st_mode)) in _compare_paths()
/netbsd-src/external/bsd/nsd/dist/
H A Dremote.c2710 struct nsdst stat0, stat1; in zonestat_print() local
2722 memcpy(&stat0, &zonestats[0][n->id], sizeof(stat0)); in zonestat_print()
2724 stats_add(&stat0, &stat1); in zonestat_print()
2727 memcpy(&stat1, &stat0, sizeof(stat1)); in zonestat_print()
2731 stats_subtract(&stat0, xfrd->zonestat_clear[n->id]); in zonestat_print()
2750 (unsigned long)(stat0.qudp + stat0.qudp6 + stat0.ctcp + in zonestat_print()
2751 stat0.ctcp6 + stat0.ctls + stat0.ctls6))) in zonestat_print()
2753 print_stat_block(ssl, name, ".", &stat0); in zonestat_print()
/netbsd-src/sys/dev/sbus/
H A Dstp4020reg.h288 volatile ushort_t stat0; /* socket status register 0 */ member
/netbsd-src/crypto/external/bsd/openssl.old/dist/
H A DConfigure3452 my @stat0 = stat($_[0]); # First argument
3455 die "Couldn't stat $_[0]" unless @stat0;
3459 return 0 unless ($stat0[0] == $stat1[0]);
3462 return 0 unless ($stat0[1] eq $stat1[1]);