ival 136 dev/acpi/acpi.c int reg, idx, ival, sval;
ival 227 dev/acpi/acpi.c ival = pci_conf_read(pc, tag, idx & ~0x3);
ival 229 dev/acpi/acpi.c *pb = ival >> (8 * (idx & 0x3));
ival 232 dev/acpi/acpi.c ival &= ~(0xFF << (8* (idx & 0x3)));
ival 233 dev/acpi/acpi.c ival |= sval << (8* (idx & 0x3));
ival 234 dev/acpi/acpi.c pci_conf_write(pc, tag, idx & ~0x3, ival);
ival 1447 dev/acpi/dsdt.c int64_t ival = 0;
ival 1456 dev/acpi/dsdt.c ival = rval->v_integer;
ival 1459 dev/acpi/dsdt.c aml_bufcpy(&ival, 0, rval->v_buffer, 0,
ival 1463 dev/acpi/dsdt.c ival = (strncmp(rval->v_string, "0x", 2) == 0) ?
ival 1468 dev/acpi/dsdt.c return (ival);
ival 1473 dev/acpi/dsdt.c _aml_setvalue(struct aml_value *lhs, int type, int64_t ival, const void *bval)
ival 1482 dev/acpi/dsdt.c lhs->v_integer = ival;
ival 1485 dev/acpi/dsdt.c lhs->v_method.flags = ival;
ival 1492 dev/acpi/dsdt.c lhs->v_objref.index = ival;
ival 1496 dev/acpi/dsdt.c lhs->length = ival;
ival 1497 dev/acpi/dsdt.c lhs->v_buffer = (uint8_t *)acpi_os_malloc(ival);
ival 1499 dev/acpi/dsdt.c memcpy(lhs->v_buffer, bval, ival);
ival 1502 dev/acpi/dsdt.c if (ival == -1)
ival 1503 dev/acpi/dsdt.c ival = strlen((const char *)bval);
ival 1504 dev/acpi/dsdt.c lhs->length = ival;
ival 1505 dev/acpi/dsdt.c lhs->v_string = (char *)acpi_os_malloc(ival+1);
ival 1507 dev/acpi/dsdt.c strncpy(lhs->v_string, (const char *)bval, ival);
ival 1510 dev/acpi/dsdt.c lhs->length = ival;
ival 1511 dev/acpi/dsdt.c lhs->v_package = (struct aml_value **)acpi_os_malloc(ival *
ival 1513 dev/acpi/dsdt.c for (ival = 0; ival < lhs->length; ival++)
ival 1514 dev/acpi/dsdt.c lhs->v_package[ival] = aml_allocvalue(
ival 1584 dev/acpi/dsdt.c struct aml_value *rhs, int64_t ival)
ival 1591 dev/acpi/dsdt.c rhs = _aml_setvalue(&tmpint, AML_OBJTYPE_INTEGER, ival, NULL);
ival 1675 dev/acpi/dsdt.c aml_allocvalue(int type, int64_t ival, const void *bval)
ival 1682 dev/acpi/dsdt.c return _aml_setvalue(rv, type, ival, bval);
ival 2078 dev/acpi/dsdt.c const char *name, int argc, struct aml_value *argv, int64_t *ival)
ival 2085 dev/acpi/dsdt.c *ival = aml_val2int(&res);
ival 3291 dev/acpi/dsdt.c int64_t ival;
ival 3350 dev/acpi/dsdt.c tmp = aml_allocvalue(def->type, def->ival, def->bval);
ival 2427 dev/ic/atw.c atw_last_even_tsft(uint32_t tsfth, uint32_t tsftl, uint32_t ival)
ival 2442 dev/ic/atw.c return ((0xFFFFFFFF % ival + 1) * tsfth + tsftl) % ival;
ival 2472 dev/ic/atw.c uint32_t ival, past_even, tbtt, tsfth, tsftl;
ival 2490 dev/ic/atw.c ival = ic->ic_bss->ni_intval * IEEE80211_DUR_TU;
ival 2498 dev/ic/atw.c past_even = tsftl - atw_last_even_tsft(tsfth, tsftl, ival);
ival 2503 dev/ic/atw.c tbtt = past_even + ival * 10;
ival 215 dev/usb/ehci.c int ival);
ival 1321 dev/usb/ehci.c int ival, speed, naks;
ival 1420 dev/usb/ehci.c ival = pipe->interval;
ival 1421 dev/usb/ehci.c if (ival == USBD_DEFAULT_INTERVAL)
ival 1422 dev/usb/ehci.c ival = ed->bInterval;
ival 1423 dev/usb/ehci.c return (ehci_device_setintr(sc, sqh, ival));
ival 3051 dev/usb/ehci.c ehci_device_setintr(ehci_softc_t *sc, ehci_soft_qh_t *sqh, int ival)
ival 3058 dev/usb/ehci.c if (EHCI_ILEV_IVAL(lev) <= ival)
ival 174 dev/usb/ohci.c struct ohci_pipe *pipe, int ival);
ival 671 dev/usb/ohci.c u_int32_t ctl, rwc, ival, hcr, fm, per, desca, descb;
ival 831 dev/usb/ohci.c ival = OHCI_GET_IVAL(fm);
ival 833 dev/usb/ohci.c fm |= OHCI_FSMPS(ival) | ival;
ival 835 dev/usb/ohci.c per = OHCI_PERIODIC(ival); /* 90% periodic */
ival 2026 dev/usb/ohci.c int ival;
ival 2095 dev/usb/ohci.c ival = pipe->interval;
ival 2096 dev/usb/ohci.c if (ival == USBD_DEFAULT_INTERVAL)
ival 2097 dev/usb/ohci.c ival = ed->bInterval;
ival 2098 dev/usb/ohci.c return (ohci_device_setintr(sc, opipe, ival));
ival 3121 dev/usb/ohci.c ohci_device_setintr(ohci_softc_t *sc, struct ohci_pipe *opipe, int ival)
ival 3129 dev/usb/ohci.c if (ival == 0) {
ival 3135 dev/usb/ohci.c while (npoll > ival)
ival 3137 dev/usb/ohci.c DPRINTFN(2, ("ohci_setintr: ival=%d npoll=%d\n", ival, npoll));
ival 229 dev/usb/uhci.c struct uhci_pipe *pipe, int ival);
ival 2766 dev/usb/uhci.c uhci_device_setintr(uhci_softc_t *sc, struct uhci_pipe *upipe, int ival)
ival 2773 dev/usb/uhci.c if (ival == 0) {
ival 2778 dev/usb/uhci.c if (ival > UHCI_VFRAMELIST_COUNT)
ival 2779 dev/usb/uhci.c ival = UHCI_VFRAMELIST_COUNT;
ival 2780 dev/usb/uhci.c npoll = (UHCI_VFRAMELIST_COUNT + ival - 1) / ival;
ival 2781 dev/usb/uhci.c DPRINTFN(2, ("uhci_device_setintr: ival=%d npoll=%d\n", ival, npoll));
ival 2792 dev/usb/uhci.c for (bestoffs = offs = 0, bestbw = ~0; offs < ival; offs++) {
ival 2794 dev/usb/uhci.c bw += sc->sc_vframes[MOD(i * ival + offs)].bandwidth;
ival 2806 dev/usb/uhci.c sqh->pos = MOD(i * ival + bestoffs);
ival 2828 dev/usb/uhci.c int ival;
ival 2878 dev/usb/uhci.c ival = pipe->interval;
ival 2879 dev/usb/uhci.c if (ival == USBD_DEFAULT_INTERVAL)
ival 2880 dev/usb/uhci.c ival = ed->bInterval;
ival 2881 dev/usb/uhci.c return (uhci_device_setintr(sc, upipe, ival));
ival 768 dev/usb/usb_subr.c struct usbd_endpoint *ep, int ival, usbd_pipe_handle *pipe)
ival 787 dev/usb/usb_subr.c p->interval = ival;
ival 170 dev/usb/usbdi.c u_int8_t flags, usbd_pipe_handle *pipe, int ival)
ival 191 dev/usb/usbdi.c err = usbd_setup_pipe(iface->device, iface, ep, ival, &p);
ival 202 dev/usb/usbdi.c void *buffer, u_int32_t len, usbd_callback cb, int ival)
ival 212 dev/usb/usbdi.c ival);
ival 634 dev/usb/usbf_subr.c usbf_pipe_handle *pipe, int ival)
ival 645 dev/usb/usbf_subr.c ival, &p);
ival 655 dev/usb/usbf_subr.c struct usbf_endpoint *ep, int ival, usbf_pipe_handle *pipe)
ival 671 dev/usb/usbf_subr.c p->interval = ival;