l 799 arch/i386/i386/apm.c u_int cbase, clen, l;
l 837 arch/i386/i386/apm.c l = max(ap->apm_data_base + ap->apm_data_len + 1,
l 842 arch/i386/i386/apm.c l, 1, &dh);
l 68 arch/i386/i386/procfs_machdep.c int left, l, i;
l 75 arch/i386/i386/procfs_machdep.c l = snprintf(p, left, "%s ", i386_features[i]);
l 76 arch/i386/i386/procfs_machdep.c if (l == -1)
l 77 arch/i386/i386/procfs_machdep.c l = 0;
l 78 arch/i386/i386/procfs_machdep.c else if (l >= left)
l 79 arch/i386/i386/procfs_machdep.c l = left - 1;
l 80 arch/i386/i386/procfs_machdep.c left -= l;
l 81 arch/i386/i386/procfs_machdep.c p += l;
l 89 arch/i386/i386/procfs_machdep.c l = snprintf(p, left,
l 102 arch/i386/i386/procfs_machdep.c if (l == -1)
l 103 arch/i386/i386/procfs_machdep.c l = 0;
l 104 arch/i386/i386/procfs_machdep.c else if (l >= left)
l 105 arch/i386/i386/procfs_machdep.c l = left - 1;
l 107 arch/i386/i386/procfs_machdep.c left -= l;
l 108 arch/i386/i386/procfs_machdep.c p += l;
l 113 arch/i386/i386/procfs_machdep.c l = snprintf(p, left, "%d\n", cpu_id & 15);
l 115 arch/i386/i386/procfs_machdep.c l = snprintf(p, left, "unknown\n");
l 117 arch/i386/i386/procfs_machdep.c if (l == -1)
l 118 arch/i386/i386/procfs_machdep.c l = 0;
l 119 arch/i386/i386/procfs_machdep.c else if (l >= left)
l 120 arch/i386/i386/procfs_machdep.c l = left - 1;
l 121 arch/i386/i386/procfs_machdep.c left -= l;
l 122 arch/i386/i386/procfs_machdep.c p += l;
l 128 arch/i386/i386/procfs_machdep.c l = snprintf(p, left, "cpu MHz\t\t: %d\n",
l 132 arch/i386/i386/procfs_machdep.c l = snprintf(p, left, "cpu MHz\t\t: unknown\n");
l 134 arch/i386/i386/procfs_machdep.c if (l == -1)
l 135 arch/i386/i386/procfs_machdep.c l = 0;
l 136 arch/i386/i386/procfs_machdep.c else if (l >= left)
l 137 arch/i386/i386/procfs_machdep.c l = left - 1;
l 138 arch/i386/i386/procfs_machdep.c left -= l;
l 139 arch/i386/i386/procfs_machdep.c p += l;
l 143 arch/i386/i386/procfs_machdep.c l = snprintf(p, left,
l 156 arch/i386/i386/procfs_machdep.c if (l == -1)
l 157 arch/i386/i386/procfs_machdep.c l = 0;
l 158 arch/i386/i386/procfs_machdep.c else if (l >= left)
l 159 arch/i386/i386/procfs_machdep.c l = left - 1;
l 161 arch/i386/i386/procfs_machdep.c *len = (p + l) - buf;
l 727 arch/i386/include/bus.h #define bus_space_barrier(t, h, o, l, f) \
l 728 arch/i386/include/bus.h ((void)((void)(t), (void)(h), (void)(o), (void)(l), (void)(f)))
l 834 arch/i386/include/bus.h #define bus_dmamap_sync(t, p, o, l, ops) \
l 836 arch/i386/include/bus.h (*(t)->_dmamap_sync)((t), (p), (o), (l), (ops)) : (void)0)
l 245 arch/i386/pci/elan520.c u_int32_t m1, m2, l;
l 249 arch/i386/pci/elan520.c l = bus_space_read_2(sc->sc_memt, sc->sc_memh, GPTMR2CNT);
l 253 arch/i386/pci/elan520.c return ((m1 << 16) | l);
l 258 arch/i386/pci/pci_intr_fixup.c struct pciintr_link_map *l;
l 260 arch/i386/pci/pci_intr_fixup.c for (l = SIMPLEQ_FIRST(&pciintr_link_map_list); l != NULL;
l 261 arch/i386/pci/pci_intr_fixup.c l = SIMPLEQ_NEXT(l, list))
l 262 arch/i386/pci/pci_intr_fixup.c if (l->link == link)
l 263 arch/i386/pci/pci_intr_fixup.c return (l);
l 272 arch/i386/pci/pci_intr_fixup.c struct pciintr_link_map *l, *lstart;
l 309 arch/i386/pci/pci_intr_fixup.c if ((l = malloc(sizeof(*l), M_DEVBUF, M_NOWAIT)) == NULL)
l 312 arch/i386/pci/pci_intr_fixup.c memset(l, 0, sizeof(*l));
l 314 arch/i386/pci/pci_intr_fixup.c l->link = link;
l 315 arch/i386/pci/pci_intr_fixup.c l->bitmap = pir->linkmap[pin].bitmap;
l 317 arch/i386/pci/pci_intr_fixup.c l->clink = clink;
l 318 arch/i386/pci/pci_intr_fixup.c l->irq = irq; /* maybe I386_PCI_INTERRUPT_LINE_NO_CONNECTION */
l 320 arch/i386/pci/pci_intr_fixup.c l->clink = link;
l 321 arch/i386/pci/pci_intr_fixup.c l->irq = I386_PCI_INTERRUPT_LINE_NO_CONNECTION;
l 325 arch/i386/pci/pci_intr_fixup.c if (lstart == NULL || lstart->link < l->link)
l 326 arch/i386/pci/pci_intr_fixup.c SIMPLEQ_INSERT_TAIL(&pciintr_link_map_list, l, list);
l 328 arch/i386/pci/pci_intr_fixup.c SIMPLEQ_INSERT_HEAD(&pciintr_link_map_list, l, list);
l 330 arch/i386/pci/pci_intr_fixup.c return (l);
l 373 arch/i386/pci/pci_intr_fixup.c struct pciintr_link_map *l;
l 396 arch/i386/pci/pci_intr_fixup.c if ((l = pciintr_link_lookup(link)) == NULL)
l 398 arch/i386/pci/pci_intr_fixup.c else if (pir->linkmap[pin].bitmap != l->bitmap) {
l 407 arch/i386/pci/pci_intr_fixup.c pir->linkmap[pin].bitmap, l->bitmap));
l 409 arch/i386/pci/pci_intr_fixup.c l->bitmap &= pir->linkmap[pin].bitmap;
l 425 arch/i386/pci/pci_intr_fixup.c struct pciintr_link_map *l;
l 431 arch/i386/pci/pci_intr_fixup.c for (l = SIMPLEQ_FIRST(&pciintr_link_map_list); l != NULL;
l 432 arch/i386/pci/pci_intr_fixup.c l = SIMPLEQ_NEXT(l, list)) {
l 433 arch/i386/pci/pci_intr_fixup.c if (l->irq != I386_PCI_INTERRUPT_LINE_NO_CONNECTION)
l 435 arch/i386/pci/pci_intr_fixup.c if (pciintr_bitmap_count_irq(l->bitmap, &irq) == 1) {
l 436 arch/i386/pci/pci_intr_fixup.c l->irq = irq;
l 437 arch/i386/pci/pci_intr_fixup.c l->fixup_stage = 1;
l 441 arch/i386/pci/pci_intr_fixup.c l->clink, l->irq);
l 452 arch/i386/pci/pci_intr_fixup.c struct pciintr_link_map *l;
l 460 arch/i386/pci/pci_intr_fixup.c for (l = SIMPLEQ_FIRST(&pciintr_link_map_list); l != NULL;
l 461 arch/i386/pci/pci_intr_fixup.c l = SIMPLEQ_NEXT(l, list)) {
l 462 arch/i386/pci/pci_intr_fixup.c if (l->irq != I386_PCI_INTERRUPT_LINE_NO_CONNECTION) {
l 468 arch/i386/pci/pci_intr_fixup.c pciirq |= 1 << l->irq;
l 472 arch/i386/pci/pci_intr_fixup.c l->clink, l->irq);
l 480 arch/i386/pci/pci_intr_fixup.c l->clink);
l 486 arch/i386/pci/pci_intr_fixup.c if (pciintr_bitmap_count_irq(l->bitmap, &irq) == 1) {
l 487 arch/i386/pci/pci_intr_fixup.c l->irq = irq;
l 488 arch/i386/pci/pci_intr_fixup.c l->fixup_stage = 1;
l 491 arch/i386/pci/pci_intr_fixup.c printf(", assigning IRQ %d", l->irq);
l 501 arch/i386/pci/pci_intr_fixup.c for (l = SIMPLEQ_FIRST(&pciintr_link_map_list); l != NULL;
l 502 arch/i386/pci/pci_intr_fixup.c l = SIMPLEQ_NEXT(l, list))
l 503 arch/i386/pci/pci_intr_fixup.c if (l->irq == I386_PCI_INTERRUPT_LINE_NO_CONNECTION &&
l 504 arch/i386/pci/pci_intr_fixup.c (irq = ffs(l->bitmap & pciirq)) > 0) {
l 510 arch/i386/pci/pci_intr_fixup.c l->fixup_stage = 2;
l 511 arch/i386/pci/pci_intr_fixup.c l->irq = irq - 1;
l 515 arch/i386/pci/pci_intr_fixup.c l->irq, l->clink);
l 523 arch/i386/pci/pci_intr_fixup.c for (l = SIMPLEQ_FIRST(&pciintr_link_map_list); l != NULL;
l 524 arch/i386/pci/pci_intr_fixup.c l = SIMPLEQ_NEXT(l, list)) {
l 525 arch/i386/pci/pci_intr_fixup.c if (l->irq == I386_PCI_INTERRUPT_LINE_NO_CONNECTION &&
l 526 arch/i386/pci/pci_intr_fixup.c (irq = ffs(l->bitmap & pcibios_irqs_hint)) > 0) {
l 527 arch/i386/pci/pci_intr_fixup.c l->fixup_stage = 3;
l 528 arch/i386/pci/pci_intr_fixup.c l->irq = irq - 1;
l 532 arch/i386/pci/pci_intr_fixup.c l->irq, l->clink);
l 546 arch/i386/pci/pci_intr_fixup.c struct pciintr_link_map *l;
l 558 arch/i386/pci/pci_intr_fixup.c l = ihp->link;
l 559 arch/i386/pci/pci_intr_fixup.c if (!l || pciintr_icu_tag == NULL)
l 562 arch/i386/pci/pci_intr_fixup.c if (l->fixup_stage == 0) {
l 563 arch/i386/pci/pci_intr_fixup.c if (l->irq == I386_PCI_INTERRUPT_LINE_NO_CONNECTION) {
l 569 arch/i386/pci/pci_intr_fixup.c l->clink,
l 571 arch/i386/pci/pci_intr_fixup.c (l->bitmap & 0x0e00) ? (l->bitmap & 0x0e00)
l 572 arch/i386/pci/pci_intr_fixup.c : l->bitmap);
l 578 arch/i386/pci/pci_intr_fixup.c l->clink, l->irq) != 0 ||
l 580 arch/i386/pci/pci_intr_fixup.c l->irq, IST_LEVEL) != 0) {
l 588 arch/i386/pci/pci_intr_fixup.c l->clink, l->irq, p);
l 613 arch/i386/pci/pci_intr_fixup.c struct pciintr_link_map *l;
l 625 arch/i386/pci/pci_intr_fixup.c for (l = SIMPLEQ_FIRST(&pciintr_link_map_list);
l 626 arch/i386/pci/pci_intr_fixup.c l != NULL; l = SIMPLEQ_NEXT(l, list))
l 627 arch/i386/pci/pci_intr_fixup.c if (l->fixup_stage == 0 && l->irq != 0 &&
l 628 arch/i386/pci/pci_intr_fixup.c l->irq != I386_PCI_INTERRUPT_LINE_NO_CONNECTION) {
l 630 arch/i386/pci/pci_intr_fixup.c printf(" %d", l->irq);
l 631 arch/i386/pci/pci_intr_fixup.c pciirq |= (1 << l->irq);
l 655 arch/i386/pci/pci_intr_fixup.c struct pciintr_link_map *l;
l 673 arch/i386/pci/pci_intr_fixup.c if ((l = pciintr_link_lookup(link)) == NULL) {
l 686 arch/i386/pci/pci_intr_fixup.c ihp->link = l;
l 690 arch/i386/pci/pci_intr_fixup.c } else if (l->irq == I386_PCI_INTERRUPT_LINE_NO_CONNECTION) {
l 706 arch/i386/pci/pci_intr_fixup.c ihp->line = irq = l->irq;
l 712 arch/i386/pci/pci_intr_fixup.c ihp->line = irq = l->irq;
l 716 arch/i386/pci/pci_intr_fixup.c ihp->line = (l->irq = irq) | (l->clink & PCI_INT_VIA_ISA);
l 724 arch/i386/pci/pci_intr_fixup.c PCI_VENDOR(id), PCI_PRODUCT(id), '@' + ihp->pin, l->clink,
l 725 arch/i386/pci/pci_intr_fixup.c ((l->irq == I386_PCI_INTERRUPT_LINE_NO_CONNECTION)?
l 726 arch/i386/pci/pci_intr_fixup.c -1 : l->irq), l->fixup_stage, p, irq);
l 565 arch/i386/pci/pci_machdep.c int l = ih.line & APIC_INT_LINE_MASK;
l 568 arch/i386/pci/pci_machdep.c if (l != -1 && ih.line & APIC_INT_VIA_APIC)
l 572 arch/i386/pci/pci_machdep.c if (l == 0 || l >= ICU_LEN || l == 2)
l 573 arch/i386/pci/pci_machdep.c panic("pci_intr_establish: bogus handle 0x%x", l);
l 575 arch/i386/pci/pci_machdep.c ret = isa_intr_establish(NULL, l, IST_LEVEL, level, func, arg, what);
l 59 arch/i386/stand/boot/crt0.c #define ummap(a,l,p,f,fd,o) (caddr_t)syscall((quad_t)SYS_mmap,a,l,p,f,fd,0,o)
l 88 arch/i386/stand/libsa/debug.c dump_mem(char *l, void *p, size_t n)
l 92 arch/i386/stand/libsa/debug.c printf("%s [%p]:%s", l, p, (n > 6? "\n":" "));
l 63 arch/i386/stand/pxeboot/devopen.c int i, l;
l 79 arch/i386/stand/pxeboot/devopen.c l = p - fname; /* Length of device prefix. */
l 82 arch/i386/stand/pxeboot/devopen.c (strncmp(fname, fs_name[i], l) == 0)) {
l 125 compat/ibcs2/ibcs2_ioctl.c register u_long l, r;
l 127 compat/ibcs2/ibcs2_ioctl.c l = st->c_iflag; r = 0;
l 128 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_IGNBRK) r |= IGNBRK;
l 129 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_BRKINT) r |= BRKINT;
l 130 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_IGNPAR) r |= IGNPAR;
l 131 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_PARMRK) r |= PARMRK;
l 132 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_INPCK) r |= INPCK;
l 133 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_ISTRIP) r |= ISTRIP;
l 134 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_INLCR) r |= INLCR;
l 135 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_IGNCR) r |= IGNCR;
l 136 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_ICRNL) r |= ICRNL;
l 137 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_IXON) r |= IXON;
l 138 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_IXANY) r |= IXANY;
l 139 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_IXOFF) r |= IXOFF;
l 140 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_IMAXBEL) r |= IMAXBEL;
l 143 compat/ibcs2/ibcs2_ioctl.c l = st->c_oflag; r = 0;
l 144 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_OPOST) r |= OPOST;
l 145 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_ONLCR) r |= ONLCR;
l 146 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_TAB3) r |= OXTABS;
l 149 compat/ibcs2/ibcs2_ioctl.c l = st->c_cflag; r = 0;
l 150 compat/ibcs2/ibcs2_ioctl.c switch (l & IBCS2_CSIZE) {
l 156 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_CSTOPB) r |= CSTOPB;
l 157 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_CREAD) r |= CREAD;
l 158 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_PARENB) r |= PARENB;
l 159 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_PARODD) r |= PARODD;
l 160 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_HUPCL) r |= HUPCL;
l 161 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_CLOCAL) r |= CLOCAL;
l 164 compat/ibcs2/ibcs2_ioctl.c l = st->c_lflag; r = 0;
l 165 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_ISIG) r |= ISIG;
l 166 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_ICANON) r |= ICANON;
l 167 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_ECHO) r |= ECHO;
l 168 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_ECHOE) r |= ECHOE;
l 169 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_ECHOK) r |= ECHOK;
l 170 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_ECHONL) r |= ECHONL;
l 171 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_NOFLSH) r |= NOFLSH;
l 172 compat/ibcs2/ibcs2_ioctl.c if (l & IBCS2_TOSTOP) r |= TOSTOP;
l 175 compat/ibcs2/ibcs2_ioctl.c bt->c_ispeed = bt->c_ospeed = s2btab[l & 0x0000000f];
l 219 compat/ibcs2/ibcs2_ioctl.c register u_long l, r;
l 221 compat/ibcs2/ibcs2_ioctl.c l = bt->c_iflag; r = 0;
l 222 compat/ibcs2/ibcs2_ioctl.c if (l & IGNBRK) r |= IBCS2_IGNBRK;
l 223 compat/ibcs2/ibcs2_ioctl.c if (l & BRKINT) r |= IBCS2_BRKINT;
l 224 compat/ibcs2/ibcs2_ioctl.c if (l & IGNPAR) r |= IBCS2_IGNPAR;
l 225 compat/ibcs2/ibcs2_ioctl.c if (l & PARMRK) r |= IBCS2_PARMRK;
l 226 compat/ibcs2/ibcs2_ioctl.c if (l & INPCK) r |= IBCS2_INPCK;
l 227 compat/ibcs2/ibcs2_ioctl.c if (l & ISTRIP) r |= IBCS2_ISTRIP;
l 228 compat/ibcs2/ibcs2_ioctl.c if (l & INLCR) r |= IBCS2_INLCR;
l 229 compat/ibcs2/ibcs2_ioctl.c if (l & IGNCR) r |= IBCS2_IGNCR;
l 230 compat/ibcs2/ibcs2_ioctl.c if (l & ICRNL) r |= IBCS2_ICRNL;
l 231 compat/ibcs2/ibcs2_ioctl.c if (l & IXON) r |= IBCS2_IXON;
l 232 compat/ibcs2/ibcs2_ioctl.c if (l & IXANY) r |= IBCS2_IXANY;
l 233 compat/ibcs2/ibcs2_ioctl.c if (l & IXOFF) r |= IBCS2_IXOFF;
l 234 compat/ibcs2/ibcs2_ioctl.c if (l & IMAXBEL) r |= IBCS2_IMAXBEL;
l 237 compat/ibcs2/ibcs2_ioctl.c l = bt->c_oflag; r = 0;
l 238 compat/ibcs2/ibcs2_ioctl.c if (l & OPOST) r |= IBCS2_OPOST;
l 239 compat/ibcs2/ibcs2_ioctl.c if (l & ONLCR) r |= IBCS2_ONLCR;
l 240 compat/ibcs2/ibcs2_ioctl.c if (l & OXTABS) r |= IBCS2_TAB3;
l 243 compat/ibcs2/ibcs2_ioctl.c l = bt->c_cflag; r = 0;
l 244 compat/ibcs2/ibcs2_ioctl.c switch (l & CSIZE) {
l 250 compat/ibcs2/ibcs2_ioctl.c if (l & CSTOPB) r |= IBCS2_CSTOPB;
l 251 compat/ibcs2/ibcs2_ioctl.c if (l & CREAD) r |= IBCS2_CREAD;
l 252 compat/ibcs2/ibcs2_ioctl.c if (l & PARENB) r |= IBCS2_PARENB;
l 253 compat/ibcs2/ibcs2_ioctl.c if (l & PARODD) r |= IBCS2_PARODD;
l 254 compat/ibcs2/ibcs2_ioctl.c if (l & HUPCL) r |= IBCS2_HUPCL;
l 255 compat/ibcs2/ibcs2_ioctl.c if (l & CLOCAL) r |= IBCS2_CLOCAL;
l 258 compat/ibcs2/ibcs2_ioctl.c l = bt->c_lflag; r = 0;
l 259 compat/ibcs2/ibcs2_ioctl.c if (l & ISIG) r |= IBCS2_ISIG;
l 260 compat/ibcs2/ibcs2_ioctl.c if (l & ICANON) r |= IBCS2_ICANON;
l 261 compat/ibcs2/ibcs2_ioctl.c if (l & ECHO) r |= IBCS2_ECHO;
l 262 compat/ibcs2/ibcs2_ioctl.c if (l & ECHOE) r |= IBCS2_ECHOE;
l 263 compat/ibcs2/ibcs2_ioctl.c if (l & ECHOK) r |= IBCS2_ECHOK;
l 264 compat/ibcs2/ibcs2_ioctl.c if (l & ECHONL) r |= IBCS2_ECHONL;
l 265 compat/ibcs2/ibcs2_ioctl.c if (l & NOFLSH) r |= IBCS2_NOFLSH;
l 266 compat/ibcs2/ibcs2_ioctl.c if (l & TOSTOP) r |= IBCS2_TOSTOP;
l 269 compat/ibcs2/ibcs2_ioctl.c l = ttspeedtab(bt->c_ospeed, sptab);
l 270 compat/ibcs2/ibcs2_ioctl.c if (l >= 0)
l 271 compat/ibcs2/ibcs2_ioctl.c st->c_cflag |= l;
l 667 compat/ossaudio/ossaudio.c int l, r, n;
l 780 compat/ossaudio/ossaudio.c l = r = mc.un.value.level[AUDIO_MIXER_LEVEL_MONO];
l 782 compat/ossaudio/ossaudio.c l = mc.un.value.level[AUDIO_MIXER_LEVEL_LEFT];
l 785 compat/ossaudio/ossaudio.c idat = TO_OSSVOL(l) | (TO_OSSVOL(r) << 8);
l 787 compat/ossaudio/ossaudio.c n, di->devmap[n], l, r, idat));
l 801 compat/ossaudio/ossaudio.c l = FROM_OSSVOL( idat & 0xff);
l 807 compat/ossaudio/ossaudio.c mc.un.value.level[AUDIO_MIXER_LEVEL_LEFT] = l;
l 811 compat/ossaudio/ossaudio.c mc.un.value.level[AUDIO_MIXER_LEVEL_MONO] = (l+r)/2;
l 814 compat/ossaudio/ossaudio.c n, di->devmap[n], l, r, idat));
l 123 compat/sunos/sunos_ioctl.c register u_long l, r;
l 125 compat/sunos/sunos_ioctl.c l = st->c_iflag;
l 126 compat/sunos/sunos_ioctl.c r = ((l & 0x00000001) ? IGNBRK : 0);
l 127 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000002) ? BRKINT : 0);
l 128 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000004) ? IGNPAR : 0);
l 129 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000008) ? PARMRK : 0);
l 130 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000010) ? INPCK : 0);
l 131 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000020) ? ISTRIP : 0);
l 132 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000040) ? INLCR : 0);
l 133 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000080) ? IGNCR : 0);
l 134 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000100) ? ICRNL : 0);
l 136 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000400) ? IXON : 0);
l 137 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000800) ? IXANY : 0);
l 138 compat/sunos/sunos_ioctl.c r |= ((l & 0x00001000) ? IXOFF : 0);
l 139 compat/sunos/sunos_ioctl.c r |= ((l & 0x00002000) ? IMAXBEL : 0);
l 142 compat/sunos/sunos_ioctl.c l = st->c_oflag;
l 143 compat/sunos/sunos_ioctl.c r = ((l & 0x00000001) ? OPOST : 0);
l 145 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000004) ? ONLCR : 0);
l 160 compat/sunos/sunos_ioctl.c r |= ((l & 0x00001800) ? OXTABS : 0);
l 171 compat/sunos/sunos_ioctl.c l = st->c_cflag;
l 172 compat/sunos/sunos_ioctl.c switch (l & 0x00000030) {
l 186 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000040) ? CSTOPB : 0);
l 187 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000080) ? CREAD : 0);
l 188 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000100) ? PARENB : 0);
l 189 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000200) ? PARODD : 0);
l 190 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000400) ? HUPCL : 0);
l 191 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000800) ? CLOCAL : 0);
l 193 compat/sunos/sunos_ioctl.c r |= ((l & 0x80000000) ? (CRTS_IFLOW|CCTS_OFLOW) : 0);
l 196 compat/sunos/sunos_ioctl.c bt->c_ispeed = bt->c_ospeed = s2btab[l & 0x0000000f];
l 198 compat/sunos/sunos_ioctl.c l = st->c_lflag;
l 199 compat/sunos/sunos_ioctl.c r = ((l & 0x00000001) ? ISIG : 0);
l 200 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000002) ? ICANON : 0);
l 202 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000008) ? ECHO : 0);
l 203 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000010) ? ECHOE : 0);
l 204 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000020) ? ECHOK : 0);
l 205 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000040) ? ECHONL : 0);
l 206 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000080) ? NOFLSH : 0);
l 207 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000100) ? TOSTOP : 0);
l 208 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000200) ? ECHOCTL : 0);
l 209 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000400) ? ECHOPRT : 0);
l 210 compat/sunos/sunos_ioctl.c r |= ((l & 0x00000800) ? ECHOKE : 0);
l 212 compat/sunos/sunos_ioctl.c r |= ((l & 0x00002000) ? FLUSHO : 0);
l 213 compat/sunos/sunos_ioctl.c r |= ((l & 0x00004000) ? PENDIN : 0);
l 245 compat/sunos/sunos_ioctl.c register u_long l, r;
l 248 compat/sunos/sunos_ioctl.c l = bt->c_iflag;
l 249 compat/sunos/sunos_ioctl.c r = ((l & IGNBRK) ? 0x00000001 : 0);
l 250 compat/sunos/sunos_ioctl.c r |= ((l & BRKINT) ? 0x00000002 : 0);
l 251 compat/sunos/sunos_ioctl.c r |= ((l & IGNPAR) ? 0x00000004 : 0);
l 252 compat/sunos/sunos_ioctl.c r |= ((l & PARMRK) ? 0x00000008 : 0);
l 253 compat/sunos/sunos_ioctl.c r |= ((l & INPCK) ? 0x00000010 : 0);
l 254 compat/sunos/sunos_ioctl.c r |= ((l & ISTRIP) ? 0x00000020 : 0);
l 255 compat/sunos/sunos_ioctl.c r |= ((l & INLCR) ? 0x00000040 : 0);
l 256 compat/sunos/sunos_ioctl.c r |= ((l & IGNCR) ? 0x00000080 : 0);
l 257 compat/sunos/sunos_ioctl.c r |= ((l & ICRNL) ? 0x00000100 : 0);
l 259 compat/sunos/sunos_ioctl.c r |= ((l & IXON) ? 0x00000400 : 0);
l 260 compat/sunos/sunos_ioctl.c r |= ((l & IXANY) ? 0x00000800 : 0);
l 261 compat/sunos/sunos_ioctl.c r |= ((l & IXOFF) ? 0x00001000 : 0);
l 262 compat/sunos/sunos_ioctl.c r |= ((l & IMAXBEL) ? 0x00002000 : 0);
l 265 compat/sunos/sunos_ioctl.c l = bt->c_oflag;
l 266 compat/sunos/sunos_ioctl.c r = ((l & OPOST) ? 0x00000001 : 0);
l 268 compat/sunos/sunos_ioctl.c r |= ((l & ONLCR) ? 0x00000004 : 0);
l 283 compat/sunos/sunos_ioctl.c r |= ((l & OXTABS) ? 0x00001800 : 0);
l 294 compat/sunos/sunos_ioctl.c l = bt->c_cflag;
l 295 compat/sunos/sunos_ioctl.c switch (l & CSIZE) {
l 309 compat/sunos/sunos_ioctl.c r |= ((l & CSTOPB) ? 0x00000040 : 0);
l 310 compat/sunos/sunos_ioctl.c r |= ((l & CREAD) ? 0x00000080 : 0);
l 311 compat/sunos/sunos_ioctl.c r |= ((l & PARENB) ? 0x00000100 : 0);
l 312 compat/sunos/sunos_ioctl.c r |= ((l & PARODD) ? 0x00000200 : 0);
l 313 compat/sunos/sunos_ioctl.c r |= ((l & HUPCL) ? 0x00000400 : 0);
l 314 compat/sunos/sunos_ioctl.c r |= ((l & CLOCAL) ? 0x00000800 : 0);
l 316 compat/sunos/sunos_ioctl.c r |= ((l & (CRTS_IFLOW|CCTS_OFLOW)) ? 0x80000000 : 0);
l 319 compat/sunos/sunos_ioctl.c l = bt->c_lflag;
l 320 compat/sunos/sunos_ioctl.c r = ((l & ISIG) ? 0x00000001 : 0);
l 321 compat/sunos/sunos_ioctl.c r |= ((l & ICANON) ? 0x00000002 : 0);
l 323 compat/sunos/sunos_ioctl.c r |= ((l & ECHO) ? 0x00000008 : 0);
l 324 compat/sunos/sunos_ioctl.c r |= ((l & ECHOE) ? 0x00000010 : 0);
l 325 compat/sunos/sunos_ioctl.c r |= ((l & ECHOK) ? 0x00000020 : 0);
l 326 compat/sunos/sunos_ioctl.c r |= ((l & ECHONL) ? 0x00000040 : 0);
l 327 compat/sunos/sunos_ioctl.c r |= ((l & NOFLSH) ? 0x00000080 : 0);
l 328 compat/sunos/sunos_ioctl.c r |= ((l & TOSTOP) ? 0x00000100 : 0);
l 329 compat/sunos/sunos_ioctl.c r |= ((l & ECHOCTL) ? 0x00000200 : 0);
l 330 compat/sunos/sunos_ioctl.c r |= ((l & ECHOPRT) ? 0x00000400 : 0);
l 331 compat/sunos/sunos_ioctl.c r |= ((l & ECHOKE) ? 0x00000800 : 0);
l 333 compat/sunos/sunos_ioctl.c r |= ((l & FLUSHO) ? 0x00002000 : 0);
l 334 compat/sunos/sunos_ioctl.c r |= ((l & PENDIN) ? 0x00004000 : 0);
l 677 compat/sunos/sunos_misc.c int l, r;
l 685 compat/sunos/sunos_misc.c l = SCARG(uap, flags);
l 686 compat/sunos/sunos_misc.c noctty = l & 0x8000;
l 687 compat/sunos/sunos_misc.c r = (l & (0x0001 | 0x0002 | 0x0008 | 0x0040 | 0x0200 | 0x0400 | 0x0800));
l 688 compat/sunos/sunos_misc.c r |= ((l & (0x0004 | 0x1000 | 0x4000)) ? O_NONBLOCK : 0);
l 689 compat/sunos/sunos_misc.c r |= ((l & 0x0080) ? O_SHLOCK : 0);
l 690 compat/sunos/sunos_misc.c r |= ((l & 0x0100) ? O_EXLOCK : 0);
l 691 compat/sunos/sunos_misc.c r |= ((l & 0x2000) ? O_SYNC : 0);
l 91 compat/svr4/svr4_fcntl.c svr4_to_bsd_flags(l)
l 92 compat/svr4/svr4_fcntl.c int l;
l 95 compat/svr4/svr4_fcntl.c r |= (l & SVR4_O_RDONLY) ? O_RDONLY : 0;
l 96 compat/svr4/svr4_fcntl.c r |= (l & SVR4_O_WRONLY) ? O_WRONLY : 0;
l 97 compat/svr4/svr4_fcntl.c r |= (l & SVR4_O_RDWR) ? O_RDWR : 0;
l 98 compat/svr4/svr4_fcntl.c r |= (l & SVR4_O_NDELAY) ? O_NONBLOCK : 0;
l 99 compat/svr4/svr4_fcntl.c r |= (l & SVR4_O_APPEND) ? O_APPEND : 0;
l 102 compat/svr4/svr4_fcntl.c r |= (l & SVR4_O_RAIOSIG) ? O_ASYNC : 0;
l 104 compat/svr4/svr4_fcntl.c r |= (l & SVR4_O_SYNC) ? O_FSYNC : 0;
l 105 compat/svr4/svr4_fcntl.c r |= (l & SVR4_O_RSYNC) ? O_RSYNC : 0;
l 106 compat/svr4/svr4_fcntl.c r |= (l & SVR4_O_DSYNC) ? O_DSYNC : 0;
l 107 compat/svr4/svr4_fcntl.c r |= (l & SVR4_O_NONBLOCK) ? O_NONBLOCK : 0;
l 108 compat/svr4/svr4_fcntl.c r |= (l & SVR4_O_PRIV) ? O_EXLOCK : 0;
l 109 compat/svr4/svr4_fcntl.c r |= (l & SVR4_O_CREAT) ? O_CREAT : 0;
l 110 compat/svr4/svr4_fcntl.c r |= (l & SVR4_O_TRUNC) ? O_TRUNC : 0;
l 111 compat/svr4/svr4_fcntl.c r |= (l & SVR4_O_EXCL) ? O_EXCL : 0;
l 112 compat/svr4/svr4_fcntl.c r |= (l & SVR4_O_NOCTTY) ? O_NOCTTY : 0;
l 118 compat/svr4/svr4_fcntl.c bsd_to_svr4_flags(l)
l 119 compat/svr4/svr4_fcntl.c int l;
l 122 compat/svr4/svr4_fcntl.c r |= (l & O_RDONLY) ? SVR4_O_RDONLY : 0;
l 123 compat/svr4/svr4_fcntl.c r |= (l & O_WRONLY) ? SVR4_O_WRONLY : 0;
l 124 compat/svr4/svr4_fcntl.c r |= (l & O_RDWR) ? SVR4_O_RDWR : 0;
l 125 compat/svr4/svr4_fcntl.c r |= (l & O_NDELAY) ? SVR4_O_NONBLOCK : 0;
l 126 compat/svr4/svr4_fcntl.c r |= (l & O_APPEND) ? SVR4_O_APPEND : 0;
l 129 compat/svr4/svr4_fcntl.c r |= (l & O_ASYNC) ? SVR4_O_RAIOSIG : 0;
l 131 compat/svr4/svr4_fcntl.c r |= (l & O_FSYNC) ? SVR4_O_SYNC : 0;
l 132 compat/svr4/svr4_fcntl.c r |= (l & O_RSYNC) ? SVR4_O_RSYNC : 0;
l 133 compat/svr4/svr4_fcntl.c r |= (l & O_DSYNC) ? SVR4_O_DSYNC : 0;
l 134 compat/svr4/svr4_fcntl.c r |= (l & O_NONBLOCK) ? SVR4_O_NONBLOCK : 0;
l 135 compat/svr4/svr4_fcntl.c r |= (l & O_EXLOCK) ? SVR4_O_PRIV : 0;
l 136 compat/svr4/svr4_fcntl.c r |= (l & O_CREAT) ? SVR4_O_CREAT : 0;
l 137 compat/svr4/svr4_fcntl.c r |= (l & O_TRUNC) ? SVR4_O_TRUNC : 0;
l 138 compat/svr4/svr4_fcntl.c r |= (l & O_EXCL) ? SVR4_O_EXCL : 0;
l 139 compat/svr4/svr4_fcntl.c r |= (l & O_NOCTTY) ? SVR4_O_NOCTTY : 0;
l 272 compat/svr4/svr4_stream.c size_t l = strlen(path) + 1;
l 274 compat/svr4/svr4_stream.c SCARG(&la, path) = stackgap_alloc(&sg, l);
l 277 compat/svr4/svr4_stream.c if ((error = copyout((char *) path, (char *) SCARG(&la, path), l)) != 0)
l 136 compat/ultrix/ultrix_ioctl.c register u_long l, r;
l 138 compat/ultrix/ultrix_ioctl.c l = st->c_iflag;
l 139 compat/ultrix/ultrix_ioctl.c r = ((l & 0x00000001) ? IGNBRK : 0);
l 140 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000002) ? BRKINT : 0);
l 141 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000004) ? IGNPAR : 0);
l 142 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000008) ? PARMRK : 0);
l 143 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000010) ? INPCK : 0);
l 144 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000020) ? ISTRIP : 0);
l 145 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000040) ? INLCR : 0);
l 146 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000080) ? IGNCR : 0);
l 147 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000100) ? ICRNL : 0);
l 149 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000400) ? IXON : 0);
l 150 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000800) ? IXANY : 0);
l 151 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00001000) ? IXOFF : 0);
l 152 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00002000) ? IMAXBEL : 0);
l 155 compat/ultrix/ultrix_ioctl.c l = st->c_oflag;
l 156 compat/ultrix/ultrix_ioctl.c r = ((l & 0x00000001) ? OPOST : 0);
l 158 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000004) ? ONLCR : 0);
l 173 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00001800) ? OXTABS : 0);
l 184 compat/ultrix/ultrix_ioctl.c l = st->c_cflag;
l 185 compat/ultrix/ultrix_ioctl.c switch (l & 0x00000030) {
l 199 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000040) ? CSTOPB : 0);
l 200 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000080) ? CREAD : 0);
l 201 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000100) ? PARENB : 0);
l 202 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000200) ? PARODD : 0);
l 203 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000400) ? HUPCL : 0);
l 204 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000800) ? CLOCAL : 0);
l 206 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x80000000) ? (CRTS_IFLOW|CCTS_OFLOW) : 0);
l 209 compat/ultrix/ultrix_ioctl.c bt->c_ispeed = bt->c_ospeed = s2btab[l & 0x0000000f];
l 211 compat/ultrix/ultrix_ioctl.c l = st->c_lflag;
l 212 compat/ultrix/ultrix_ioctl.c r = ((l & 0x00000001) ? ISIG : 0);
l 213 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000002) ? ICANON : 0);
l 215 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000008) ? ECHO : 0);
l 216 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000010) ? ECHOE : 0);
l 217 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000020) ? ECHOK : 0);
l 218 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000040) ? ECHONL : 0);
l 219 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000080) ? NOFLSH : 0);
l 220 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000100) ? TOSTOP : 0);
l 221 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000200) ? ECHOCTL : 0);
l 222 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000400) ? ECHOPRT : 0);
l 223 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00000800) ? ECHOKE : 0);
l 225 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00002000) ? FLUSHO : 0);
l 226 compat/ultrix/ultrix_ioctl.c r |= ((l & 0x00004000) ? PENDIN : 0);
l 268 compat/ultrix/ultrix_ioctl.c register u_long l, r;
l 270 compat/ultrix/ultrix_ioctl.c l = bt->c_iflag;
l 271 compat/ultrix/ultrix_ioctl.c r = ((l & IGNBRK) ? 0x00000001 : 0);
l 272 compat/ultrix/ultrix_ioctl.c r |= ((l & BRKINT) ? 0x00000002 : 0);
l 273 compat/ultrix/ultrix_ioctl.c r |= ((l & IGNPAR) ? 0x00000004 : 0);
l 274 compat/ultrix/ultrix_ioctl.c r |= ((l & PARMRK) ? 0x00000008 : 0);
l 275 compat/ultrix/ultrix_ioctl.c r |= ((l & INPCK) ? 0x00000010 : 0);
l 276 compat/ultrix/ultrix_ioctl.c r |= ((l & ISTRIP) ? 0x00000020 : 0);
l 277 compat/ultrix/ultrix_ioctl.c r |= ((l & INLCR) ? 0x00000040 : 0);
l 278 compat/ultrix/ultrix_ioctl.c r |= ((l & IGNCR) ? 0x00000080 : 0);
l 279 compat/ultrix/ultrix_ioctl.c r |= ((l & ICRNL) ? 0x00000100 : 0);
l 281 compat/ultrix/ultrix_ioctl.c r |= ((l & IXON) ? 0x00000400 : 0);
l 282 compat/ultrix/ultrix_ioctl.c r |= ((l & IXANY) ? 0x00000800 : 0);
l 283 compat/ultrix/ultrix_ioctl.c r |= ((l & IXOFF) ? 0x00001000 : 0);
l 284 compat/ultrix/ultrix_ioctl.c r |= ((l & IMAXBEL) ? 0x00002000 : 0);
l 287 compat/ultrix/ultrix_ioctl.c l = bt->c_oflag;
l 288 compat/ultrix/ultrix_ioctl.c r = ((l & OPOST) ? 0x00000001 : 0);
l 290 compat/ultrix/ultrix_ioctl.c r |= ((l & ONLCR) ? 0x00000004 : 0);
l 305 compat/ultrix/ultrix_ioctl.c r |= ((l & OXTABS) ? 0x00001800 : 0);
l 316 compat/ultrix/ultrix_ioctl.c l = bt->c_cflag;
l 317 compat/ultrix/ultrix_ioctl.c switch (l & CSIZE) {
l 331 compat/ultrix/ultrix_ioctl.c r |= ((l & CSTOPB) ? 0x00000040 : 0);
l 332 compat/ultrix/ultrix_ioctl.c r |= ((l & CREAD) ? 0x00000080 : 0);
l 333 compat/ultrix/ultrix_ioctl.c r |= ((l & PARENB) ? 0x00000100 : 0);
l 334 compat/ultrix/ultrix_ioctl.c r |= ((l & PARODD) ? 0x00000200 : 0);
l 335 compat/ultrix/ultrix_ioctl.c r |= ((l & HUPCL) ? 0x00000400 : 0);
l 336 compat/ultrix/ultrix_ioctl.c r |= ((l & CLOCAL) ? 0x00000800 : 0);
l 338 compat/ultrix/ultrix_ioctl.c r |= ((l & (CRTS_IFLOW|CCTS_OFLOW)) ? 0x80000000 : 0);
l 341 compat/ultrix/ultrix_ioctl.c l = bt->c_lflag;
l 342 compat/ultrix/ultrix_ioctl.c r = ((l & ISIG) ? 0x00000001 : 0);
l 343 compat/ultrix/ultrix_ioctl.c r |= ((l & ICANON) ? 0x00000002 : 0);
l 345 compat/ultrix/ultrix_ioctl.c r |= ((l & ECHO) ? 0x00000008 : 0);
l 346 compat/ultrix/ultrix_ioctl.c r |= ((l & ECHOE) ? 0x00000010 : 0);
l 347 compat/ultrix/ultrix_ioctl.c r |= ((l & ECHOK) ? 0x00000020 : 0);
l 348 compat/ultrix/ultrix_ioctl.c r |= ((l & ECHONL) ? 0x00000040 : 0);
l 349 compat/ultrix/ultrix_ioctl.c r |= ((l & NOFLSH) ? 0x00000080 : 0);
l 350 compat/ultrix/ultrix_ioctl.c r |= ((l & TOSTOP) ? 0x00000100 : 0);
l 351 compat/ultrix/ultrix_ioctl.c r |= ((l & ECHOCTL) ? 0x00000200 : 0);
l 352 compat/ultrix/ultrix_ioctl.c r |= ((l & ECHOPRT) ? 0x00000400 : 0);
l 353 compat/ultrix/ultrix_ioctl.c r |= ((l & ECHOKE) ? 0x00000800 : 0);
l 355 compat/ultrix/ultrix_ioctl.c r |= ((l & FLUSHO) ? 0x00002000 : 0);
l 356 compat/ultrix/ultrix_ioctl.c r |= ((l & PENDIN) ? 0x00004000 : 0);
l 359 compat/ultrix/ultrix_ioctl.c l = ttspeedtab(bt->c_ospeed, sptab);
l 360 compat/ultrix/ultrix_ioctl.c if (l >= 0)
l 361 compat/ultrix/ultrix_ioctl.c st->c_cflag |= l;
l 163 compat/ultrix/ultrix_pathname.c int l, r;
l 171 compat/ultrix/ultrix_pathname.c l = SCARG(uap, flags);
l 172 compat/ultrix/ultrix_pathname.c noctty = l & 0x8000;
l 173 compat/ultrix/ultrix_pathname.c r = (l & (0x0001 | 0x0002 | 0x0008 | 0x0040 | 0x0200 | 0x0400 | 0x0800));
l 174 compat/ultrix/ultrix_pathname.c r |= ((l & (0x0004 | 0x1000 | 0x4000)) ? O_NONBLOCK : 0);
l 175 compat/ultrix/ultrix_pathname.c r |= ((l & 0x0080) ? O_SHLOCK : 0);
l 176 compat/ultrix/ultrix_pathname.c r |= ((l & 0x0100) ? O_EXLOCK : 0);
l 177 compat/ultrix/ultrix_pathname.c r |= ((l & 0x2000) ? O_SYNC : 0);
l 533 crypto/blf.c u_int32_t l, r, d[2];
l 537 crypto/blf.c l = data[0] << 24 | data[1] << 16 | data[2] << 8 | data[3];
l 539 crypto/blf.c d[0] = l;
l 542 crypto/blf.c l = d[0];
l 544 crypto/blf.c data[0] = l >> 24 & 0xff;
l 545 crypto/blf.c data[1] = l >> 16 & 0xff;
l 546 crypto/blf.c data[2] = l >> 8 & 0xff;
l 547 crypto/blf.c data[3] = l & 0xff;
l 559 crypto/blf.c u_int32_t l, r, d[2];
l 563 crypto/blf.c l = data[0] << 24 | data[1] << 16 | data[2] << 8 | data[3];
l 565 crypto/blf.c d[0] = l;
l 568 crypto/blf.c l = d[0];
l 570 crypto/blf.c data[0] = l >> 24 & 0xff;
l 571 crypto/blf.c data[1] = l >> 16 & 0xff;
l 572 crypto/blf.c data[2] = l >> 8 & 0xff;
l 573 crypto/blf.c data[3] = l & 0xff;
l 585 crypto/blf.c u_int32_t l, r, d[2];
l 591 crypto/blf.c l = data[0] << 24 | data[1] << 16 | data[2] << 8 | data[3];
l 593 crypto/blf.c d[0] = l;
l 596 crypto/blf.c l = d[0];
l 598 crypto/blf.c data[0] = l >> 24 & 0xff;
l 599 crypto/blf.c data[1] = l >> 16 & 0xff;
l 600 crypto/blf.c data[2] = l >> 8 & 0xff;
l 601 crypto/blf.c data[3] = l & 0xff;
l 614 crypto/blf.c u_int32_t l, r, d[2];
l 621 crypto/blf.c l = data[0] << 24 | data[1] << 16 | data[2] << 8 | data[3];
l 623 crypto/blf.c d[0] = l;
l 626 crypto/blf.c l = d[0];
l 628 crypto/blf.c data[0] = l >> 24 & 0xff;
l 629 crypto/blf.c data[1] = l >> 16 & 0xff;
l 630 crypto/blf.c data[2] = l >> 8 & 0xff;
l 631 crypto/blf.c data[3] = l & 0xff;
l 641 crypto/blf.c l = data[0] << 24 | data[1] << 16 | data[2] << 8 | data[3];
l 643 crypto/blf.c d[0] = l;
l 646 crypto/blf.c l = d[0];
l 648 crypto/blf.c data[0] = l >> 24 & 0xff;
l 649 crypto/blf.c data[1] = l >> 16 & 0xff;
l 650 crypto/blf.c data[2] = l >> 8 & 0xff;
l 651 crypto/blf.c data[3] = l & 0xff;
l 24 crypto/cast.c #define F1(l, r, i) \
l 26 crypto/cast.c l ^= ((cast_sbox1[U_INT8_Ta(t)] ^ cast_sbox2[U_INT8_Tb(t)]) - \
l 28 crypto/cast.c #define F2(l, r, i) \
l 30 crypto/cast.c l ^= ((cast_sbox1[U_INT8_Ta(t)] - cast_sbox2[U_INT8_Tb(t)]) + \
l 32 crypto/cast.c #define F3(l, r, i) \
l 34 crypto/cast.c l ^= ((cast_sbox1[U_INT8_Ta(t)] + cast_sbox2[U_INT8_Tb(t)]) ^ \
l 43 crypto/cast.c u_int32_t t, l, r;
l 46 crypto/cast.c l = ((u_int32_t)inblock[0] << 24) | ((u_int32_t)inblock[1] << 16) |
l 51 crypto/cast.c F1(l, r, 0);
l 52 crypto/cast.c F2(r, l, 1);
l 53 crypto/cast.c F3(l, r, 2);
l 54 crypto/cast.c F1(r, l, 3);
l 55 crypto/cast.c F2(l, r, 4);
l 56 crypto/cast.c F3(r, l, 5);
l 57 crypto/cast.c F1(l, r, 6);
l 58 crypto/cast.c F2(r, l, 7);
l 59 crypto/cast.c F3(l, r, 8);
l 60 crypto/cast.c F1(r, l, 9);
l 61 crypto/cast.c F2(l, r, 10);
l 62 crypto/cast.c F3(r, l, 11);
l 65 crypto/cast.c F1(l, r, 12);
l 66 crypto/cast.c F2(r, l, 13);
l 67 crypto/cast.c F3(l, r, 14);
l 68 crypto/cast.c F1(r, l, 15);
l 75 crypto/cast.c outblock[4] = U_INT8_Ta(l);
l 76 crypto/cast.c outblock[5] = U_INT8_Tb(l);
l 77 crypto/cast.c outblock[6] = U_INT8_Tc(l);
l 78 crypto/cast.c outblock[7] = U_INT8_Td(l);
l 80 crypto/cast.c t = l = r = 0;
l 89 crypto/cast.c u_int32_t t, l, r;
l 94 crypto/cast.c l = ((u_int32_t)inblock[4] << 24) | ((u_int32_t)inblock[5] << 16) |
l 99 crypto/cast.c F1(r, l, 15);
l 100 crypto/cast.c F3(l, r, 14);
l 101 crypto/cast.c F2(r, l, 13);
l 102 crypto/cast.c F1(l, r, 12);
l 104 crypto/cast.c F3(r, l, 11);
l 105 crypto/cast.c F2(l, r, 10);
l 106 crypto/cast.c F1(r, l, 9);
l 107 crypto/cast.c F3(l, r, 8);
l 108 crypto/cast.c F2(r, l, 7);
l 109 crypto/cast.c F1(l, r, 6);
l 110 crypto/cast.c F3(r, l, 5);
l 111 crypto/cast.c F2(l, r, 4);
l 112 crypto/cast.c F1(r, l, 3);
l 113 crypto/cast.c F3(l, r, 2);
l 114 crypto/cast.c F2(r, l, 1);
l 115 crypto/cast.c F1(l, r, 0);
l 117 crypto/cast.c outblock[0] = U_INT8_Ta(l);
l 118 crypto/cast.c outblock[1] = U_INT8_Tb(l);
l 119 crypto/cast.c outblock[2] = U_INT8_Tc(l);
l 120 crypto/cast.c outblock[3] = U_INT8_Td(l);
l 126 crypto/cast.c t = l = r = 0;
l 83 crypto/des.h #define des_ede2_cbc_encrypt(i,o,l,k1,k2,iv,e) \
l 84 crypto/des.h des_ede3_cbc_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(e))
l 86 crypto/des.h #define des_ede2_cfb64_encrypt(i,o,l,k1,k2,iv,n,e) \
l 87 crypto/des.h des_ede3_cfb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n),(e))
l 89 crypto/des.h #define des_ede2_ofb64_encrypt(i,o,l,k1,k2,iv,n) \
l 90 crypto/des.h des_ede3_ofb64_encrypt((i),(o),(l),(k1),(k2),(k1),(iv),(n))
l 90 crypto/des_locl.h #define c2l(c,l) (l =((u_int32_t)(*((c)++))) , \
l 91 crypto/des_locl.h l|=((u_int32_t)(*((c)++)))<< 8L, \
l 92 crypto/des_locl.h l|=((u_int32_t)(*((c)++)))<<16L, \
l 93 crypto/des_locl.h l|=((u_int32_t)(*((c)++)))<<24L)
l 111 crypto/des_locl.h #define l2c(l,c) (*((c)++)=(unsigned char)(((l) )&0xff), \
l 112 crypto/des_locl.h *((c)++)=(unsigned char)(((l)>> 8L)&0xff), \
l 113 crypto/des_locl.h *((c)++)=(unsigned char)(((l)>>16L)&0xff), \
l 114 crypto/des_locl.h *((c)++)=(unsigned char)(((l)>>24L)&0xff))
l 120 crypto/des_locl.h #define n2l(c,l) (l =((u_int32_t)(*((c)++)))<<24L, \
l 121 crypto/des_locl.h l|=((u_int32_t)(*((c)++)))<<16L, \
l 122 crypto/des_locl.h l|=((u_int32_t)(*((c)++)))<< 8L, \
l 123 crypto/des_locl.h l|=((u_int32_t)(*((c)++))))
l 125 crypto/des_locl.h #define l2n(l,c) (*((c)++)=(unsigned char)(((l)>>24L)&0xff), \
l 126 crypto/des_locl.h *((c)++)=(unsigned char)(((l)>>16L)&0xff), \
l 127 crypto/des_locl.h *((c)++)=(unsigned char)(((l)>> 8L)&0xff), \
l 128 crypto/des_locl.h *((c)++)=(unsigned char)(((l) )&0xff))
l 219 crypto/des_locl.h #define IP(l,r) \
l 222 crypto/des_locl.h PERM_OP(r,l,tt, 4,0x0f0f0f0fL); \
l 223 crypto/des_locl.h PERM_OP(l,r,tt,16,0x0000ffffL); \
l 224 crypto/des_locl.h PERM_OP(r,l,tt, 2,0x33333333L); \
l 225 crypto/des_locl.h PERM_OP(l,r,tt, 8,0x00ff00ffL); \
l 226 crypto/des_locl.h PERM_OP(r,l,tt, 1,0x55555555L); \
l 229 crypto/des_locl.h #define FP(l,r) \
l 232 crypto/des_locl.h PERM_OP(l,r,tt, 1,0x55555555L); \
l 233 crypto/des_locl.h PERM_OP(r,l,tt, 8,0x00ff00ffL); \
l 234 crypto/des_locl.h PERM_OP(l,r,tt, 2,0x33333333L); \
l 235 crypto/des_locl.h PERM_OP(r,l,tt,16,0x0000ffffL); \
l 236 crypto/des_locl.h PERM_OP(l,r,tt, 4,0x0f0f0f0fL); \
l 80 crypto/ecb_enc.c register u_int32_t l,r,t,u;
l 97 crypto/ecb_enc.c l=(r<<1)|(r>>31);
l 101 crypto/ecb_enc.c l&=0xffffffffL;
l 111 crypto/ecb_enc.c D_ENCRYPT(l,r,i+0); /* 1 */
l 112 crypto/ecb_enc.c D_ENCRYPT(r,l,i+2); /* 2 */
l 119 crypto/ecb_enc.c D_ENCRYPT(l,r,i-0); /* 16 */
l 120 crypto/ecb_enc.c D_ENCRYPT(r,l,i-2); /* 15 */
l 123 crypto/ecb_enc.c l=(l>>1)|(l<<31);
l 126 crypto/ecb_enc.c l&=0xffffffffL;
l 129 crypto/ecb_enc.c FP(r,l);
l 130 crypto/ecb_enc.c data[0]=l;
l 132 crypto/ecb_enc.c l=r=t=u=0;
l 140 crypto/ecb_enc.c register u_int32_t l,r,t,u;
l 156 crypto/ecb_enc.c l=(r<<1)|(r>>31);
l 160 crypto/ecb_enc.c l&=0xffffffffL;
l 170 crypto/ecb_enc.c D_ENCRYPT(l,r,i+0); /* 1 */
l 171 crypto/ecb_enc.c D_ENCRYPT(r,l,i+2); /* 2 */
l 178 crypto/ecb_enc.c D_ENCRYPT(l,r,i-0); /* 16 */
l 179 crypto/ecb_enc.c D_ENCRYPT(r,l,i-2); /* 15 */
l 182 crypto/ecb_enc.c l=(l>>1)|(l<<31);
l 185 crypto/ecb_enc.c l&=0xffffffffL;
l 188 crypto/ecb_enc.c data[0]=l;
l 190 crypto/ecb_enc.c l=r=t=u=0;
l 35 crypto/michael.c #define MICHAEL_BLOCK(l, r) do { \
l 36 crypto/michael.c r ^= ROL(17, l); \
l 37 crypto/michael.c l += r; \
l 38 crypto/michael.c r ^= XSWAP(l); \
l 39 crypto/michael.c l += r; \
l 40 crypto/michael.c r ^= ROL(3, l); \
l 41 crypto/michael.c l += r; \
l 42 crypto/michael.c r ^= ROR(2, l); \
l 43 crypto/michael.c l += r; \
l 32 crypto/sha1.c #define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) \
l 33 crypto/sha1.c |(rol(block->l[i],8)&0x00FF00FF))
l 35 crypto/sha1.c #define blk0(i) block->l[i]
l 37 crypto/sha1.c #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \
l 38 crypto/sha1.c ^block->l[(i+2)&15]^block->l[i&15],1))
l 55 crypto/sha1.c unsigned int l[16];
l 109 dev/acpi/dsdt.h #define __amlflagbit(v,s,l)
l 2222 dev/audio.c au_set_lr_value(struct audio_softc *sc, mixer_ctrl_t *ct, int l, int r)
l 2226 dev/audio.c ct->un.value.level[AUDIO_MIXER_LEVEL_LEFT] = l;
l 2231 dev/audio.c ct->un.value.level[AUDIO_MIXER_LEVEL_MONO] = (l+r)/2;
l 2241 dev/audio.c int l, r;
l 2246 dev/audio.c l = r = gain;
l 2249 dev/audio.c l = (balance * gain) / AUDIO_MID_BALANCE;
l 2251 dev/audio.c l = gain;
l 2256 dev/audio.c gain, balance, l, r));
l 2263 dev/audio.c error = au_set_lr_value(sc, &ct, l, r);
l 2275 dev/audio.c au_set_lr_value(sc, &ct, l, r))
l 2292 dev/audio.c au_set_lr_value(sc, &ct, l, r) == 0)
l 2306 dev/audio.c au_get_lr_value(struct audio_softc *sc, mixer_ctrl_t *ct, int *l, int *r)
l 2312 dev/audio.c *l = ct->un.value.level[AUDIO_MIXER_LEVEL_LEFT];
l 2319 dev/audio.c *r = *l = ct->un.value.level[AUDIO_MIXER_LEVEL_MONO];
l 2329 dev/audio.c int i, l, r, n;
l 2368 dev/audio.c au_get_lr_value(sc, &ct, &l, &r))
l 2371 dev/audio.c lgain += l;
l 3089 dev/audio.c int l, r;
l 3136 dev/audio.c error = au_get_lr_value(sc, &ct, &l, &r);
l 3147 dev/audio.c if (l > AUDIO_MAX_GAIN - mi.un.v.delta)
l 3148 dev/audio.c l = AUDIO_MAX_GAIN;
l 3150 dev/audio.c l += mi.un.v.delta;
l 3161 dev/audio.c if (l < AUDIO_MIN_GAIN + mi.un.v.delta)
l 3162 dev/audio.c l = AUDIO_MIN_GAIN;
l 3164 dev/audio.c l -= mi.un.v.delta;
l 3172 dev/audio.c error = au_set_lr_value(sc, &ct, l, r);
l 329 dev/bluetooth/btkbd.c btkbd_ioctl(void *self, unsigned long cmd, void *data, int flag, struct lwp *l)
l 260 dev/bluetooth/btms.c btms_ioctl(void *self, unsigned long cmd, void *data, int flag, struct lwp *l)
l 47 dev/i2o/iopspvar.h #define IOPSP_TIDMAP(map, t, l) (map[(t) * IOPSP_MAX_LUN + (l)])
l 1076 dev/ic/aacreg.h #define AAC_BTL_TO_HANDLE(b, t, l) \
l 1077 dev/ic/aacreg.h (((b & 0x3f) << 7) | ((l & 0x7) << 4) | (t & 0xf))
l 220 dev/ic/aacvar.h #define AAC_LOCK_INIT(l, s) do { \
l 221 dev/ic/aacvar.h rw_init((l), "aaclock"); \
l 226 dev/ic/aacvar.h #define AAC_LOCK_ACQUIRE(l) do { \
l 229 dev/ic/aacvar.h rw_enter_write((l)); \
l 232 dev/ic/aacvar.h #define AAC_LOCK_RELEASE(l) do { \
l 233 dev/ic/aacvar.h rw_exit_write((l)); \
l 906 dev/ic/ac97.c u_int16_t l, r;
l 913 dev/ic/ac97.c l = r = cp->un.value.level[AUDIO_MIXER_LEVEL_MONO];
l 916 dev/ic/ac97.c l = cp->un.value.level[AUDIO_MIXER_LEVEL_LEFT];
l 920 dev/ic/ac97.c l = cp->un.value.level[AUDIO_MIXER_LEVEL_RIGHT];
l 925 dev/ic/ac97.c l = 255 - l;
l 929 dev/ic/ac97.c l >>= 8 - si->bits;
l 932 dev/ic/ac97.c newval = ((l & mask) << si->ofs);
l 997 dev/ic/ac97.c u_int16_t l, r;
l 1004 dev/ic/ac97.c l = r = (val >> si->ofs) & mask;
l 1007 dev/ic/ac97.c l = (val >> si->ofs) & mask;
l 1011 dev/ic/ac97.c l = (val >> (si->ofs + 8)) & mask;
l 1015 dev/ic/ac97.c l <<= 8 - si->bits;
l 1018 dev/ic/ac97.c l = 255 - l;
l 1028 dev/ic/ac97.c cp->un.value.level[AUDIO_MIXER_LEVEL_MONO] = l;
l 1030 dev/ic/ac97.c cp->un.value.level[AUDIO_MIXER_LEVEL_LEFT] = l;
l 7939 dev/ic/aic79xx.c int l;
l 7942 dev/ic/aic79xx.c ahd_list_lock(&l);
l 7946 dev/ic/aic79xx.c ahd_list_unlock(&l);
l 7959 dev/ic/aic79xx.c ahd_list_unlock(&l);
l 7971 dev/ic/aic79xx.c ahd_list_unlock(&l);
l 7979 dev/ic/aic79xx.c int l;
l 7983 dev/ic/aic79xx.c ahd_list_lock(&l);
l 7987 dev/ic/aic79xx.c ahd_list_unlock(&l);
l 8016 dev/ic/aic79xx.c ahd_list_unlock(&l);
l 350 dev/ic/amireg.h #define AMI_PTPARAM(t,a,l) (((l) << 7) | (((a) & 1) << 3) | ((t) & 3))
l 2731 dev/ic/awi.c int i, l;
l 2825 dev/ic/awi.c l = m->m_len;
l 2826 dev/ic/awi.c if (l > awi_dump_len + sizeof(*wh))
l 2827 dev/ic/awi.c l = awi_dump_len + sizeof(*wh);
l 2831 dev/ic/awi.c for (; i < l; i++) {
l 1472 dev/ic/dc.c dc_decode_leaf_sia(sc, l)
l 1474 dev/ic/dc.c struct dc_eblock_sia *l;
l 1482 dev/ic/dc.c switch (l->dc_sia_code & ~DC_SIA_CODE_EXT) {
l 1504 dev/ic/dc.c if (l->dc_sia_code & DC_SIA_CODE_EXT) {
l 1507 dev/ic/dc.c (u_int8_t *)&l->dc_un.dc_sia_ext.dc_sia_gpio_ctl;
l 1511 dev/ic/dc.c (u_int8_t *)&l->dc_un.dc_sia_noext.dc_sia_gpio_ctl;
l 1521 dev/ic/dc.c dc_decode_leaf_sym(sc, l)
l 1523 dev/ic/dc.c struct dc_eblock_sym *l;
l 1531 dev/ic/dc.c if (l->dc_sym_code == DC_SYM_CODE_100BT)
l 1534 dev/ic/dc.c if (l->dc_sym_code == DC_SYM_CODE_100BT_FDX)
l 1538 dev/ic/dc.c m->dc_gp_ptr = (u_int8_t *)&l->dc_sym_gpio_ctl;
l 1547 dev/ic/dc.c dc_decode_leaf_mii(sc, l)
l 1549 dev/ic/dc.c struct dc_eblock_mii *l;
l 1560 dev/ic/dc.c m->dc_gp_len = l->dc_gpr_len;
l 1562 dev/ic/dc.c p = (u_int8_t *)l;
l 1565 dev/ic/dc.c p += 2 * l->dc_gpr_len;
l 370 dev/ic/if_wireg.h int l; \
l 372 dev/ic/if_wireg.h l = (str.i_len + 1) & ~0x1; \
l 374 dev/ic/if_wireg.h s.wi_len = (l / 2) + 2; \
l 278 dev/ic/isp.c u_int16_t l;
l 294 dev/ic/isp.c l = ISP_READ(isp, SXP_PINS_DIFF) & ISP1080_MODE_MASK;
l 295 dev/ic/isp.c switch (l) {
l 310 dev/ic/isp.c "unknown mode on bus %d (0x%x)", 0, l);
l 316 dev/ic/isp.c l = ISP_READ(isp, SXP_PINS_DIFF|SXP_BANK1_SELECT);
l 317 dev/ic/isp.c l &= ISP1080_MODE_MASK;
l 318 dev/ic/isp.c switch(l) {
l 335 dev/ic/isp.c "unknown mode on bus %d (0x%x)", 1, l);
l 86 dev/ic/lemacvar.h #define LEMAC_OUTSB(sc, o, l, p) \
l 87 dev/ic/lemacvar.h bus_space_write_multi_1((sc)->sc_iot, (sc)->sc_ioh, (o), (p), (l))
l 90 dev/ic/lemacvar.h #define LEMAC_INSB(sc, o, l, p) \
l 91 dev/ic/lemacvar.h bus_space_read_multi_1((sc)->sc_iot, (sc)->sc_ioh, (o), (p), (l))
l 93 dev/ic/lemacvar.h #define LEMAC_PUTBUF8(sc, o, l, p) \
l 94 dev/ic/lemacvar.h bus_space_write_region_1((sc)->sc_memt, (sc)->sc_memh, (o), (p), (l))
l 95 dev/ic/lemacvar.h #define LEMAC_PUTBUF16(sc, o, l, p) \
l 97 dev/ic/lemacvar.h (l) << 1)
l 98 dev/ic/lemacvar.h #define LEMAC_PUTBUF32(sc, o, l, p) \
l 100 dev/ic/lemacvar.h (l) << 2)
l 109 dev/ic/lemacvar.h #define LEMAC_GETBUF8(sc, o, l, p) \
l 110 dev/ic/lemacvar.h bus_space_read_region_1((sc)->sc_memt, (sc)->sc_memh, (o), (p), (l))
l 111 dev/ic/lemacvar.h #define LEMAC_GETBUF16(sc, o, l, p) \
l 113 dev/ic/lemacvar.h (l) << 1)
l 114 dev/ic/lemacvar.h #define LEMAC_GETBUF32(sc, o, l, p) \
l 116 dev/ic/lemacvar.h (l) << 2)
l 85 dev/ic/lsi64854var.h #define DMA_SETUP(sc, a, l, d, s) (((sc)->setup)(sc, a, l, d, s))
l 2002 dev/ic/malo.c int i, j, l;
l 2004 dev/ic/malo.c for (i = 0; i < len; i += l) {
l 2006 dev/ic/malo.c l = min(sizeof(b), len - i);
l 2007 dev/ic/malo.c bcopy(buf + i, b, l);
l 2014 dev/ic/malo.c if (j < l)
l 2020 dev/ic/malo.c for (j = 0; j < l; j++) {
l 1980 dev/ic/midway.c STATIC void en_txlaunch(sc, chan, l)
l 1984 dev/ic/midway.c struct en_launch *l;
l 2014 dev/ic/midway.c need = l->need;
l 2016 dev/ic/midway.c addtail = (l->atm_flags & EN_OBTRL) == 0; /* add a tail? */
l 2025 dev/ic/midway.c sc->sc_dev.dv_xname, chan, l->t, cur, (cur-start)/4, need, addtail);
l 2037 dev/ic/midway.c if ((l->atm_flags & EN_OBHDR) == 0) {
l 2040 dev/ic/midway.c chan, l->tbd1, l->tbd2);
l 2042 dev/ic/midway.c EN_WRITE(sc, cur, l->tbd1);
l 2044 dev/ic/midway.c EN_WRITE(sc, cur, l->tbd2);
l 2053 dev/ic/midway.c for (tmp = l->t ; tmp != NULL ; tmp = tmp->m_next) {
l 2058 dev/ic/midway.c if (tmp == l->t) {
l 2064 dev/ic/midway.c if (l->nodma || (len < EN_MINDMA &&
l 2127 dev/ic/midway.c EN_DTQADD(sc, len, chan, 0, vtophys(data), l->mlen, end);
l 2162 dev/ic/midway.c EN_DTQADD(sc, count, chan, bcode, vtophys(data), l->mlen, end);
l 2191 dev/ic/midway.c EN_DTQADD(sc, count, chan, bcode, vtophys(data), l->mlen, end);
l 2210 dev/ic/midway.c EN_DTQADD(sc, count, chan, bcode, vtophys(data), l->mlen, end);
l 2230 dev/ic/midway.c EN_DTQADD(sc, count, chan, bcode, vtophys(data), l->mlen, end);
l 2253 dev/ic/midway.c EN_DTQADD(sc, count, chan, bcode, vtophys(data), l->mlen, end);
l 2288 dev/ic/midway.c EN_DTQADD(sc, pad, chan, bcode, vtophys(l->t->m_data), 0, 0);
l 2298 dev/ic/midway.c if (l->aal == MID_TBD_AAL5)
l 2308 dev/ic/midway.c if (l->aal == MID_TBD_AAL5) {
l 2309 dev/ic/midway.c EN_WRITE(sc, cur, l->pdu1); /* in host byte order */
l 2317 dev/ic/midway.c l->mlen, MID_DMA_END);
l 192 dev/ic/ncr53c9xvar.h #define TINFO_LUN(t, l) ((((l) < NCR_NLUN) && (((t)->lun[(l)]) != NULL)) ? \
l 193 dev/ic/ncr53c9xvar.h ((t)->lun[(l)]) : ncr53c9x_lunsearch((t), (int64_t)(l)))
l 521 dev/ic/ne2000.c int l, leftover;
l 530 dev/ic/ne2000.c l = m->m_len;
l 531 dev/ic/ne2000.c if (l == 0)
l 535 dev/ic/ne2000.c lim = data + l;
l 537 dev/ic/ne2000.c while (l > 0) {
l 546 dev/ic/ne2000.c l--;
l 558 dev/ic/ne2000.c l--;
l 566 dev/ic/ne2000.c leftover = l & 1;
l 567 dev/ic/ne2000.c l &= ~1;
l 569 dev/ic/ne2000.c asich, NE2000_ASIC_DATA, data, l);
l 570 dev/ic/ne2000.c data += l;
l 573 dev/ic/ne2000.c l = 0;
l 576 dev/ic/ne2000.c if (l < 0)
l 307 dev/ic/pdqreg.h #define PDQ_BITFIELD12(a, b, c, d, e, f, g, h, i, j, k, l) \
l 308 dev/ic/pdqreg.h l, k, j, i, h, g, f, e, d, c, b, a
l 314 dev/ic/pdqreg.h #define PDQ_BITFIELD12(a, b, c, d, e, f, g, h, i, j, k, l) \
l 315 dev/ic/pdqreg.h a, b, c, d, e, f, g, h, i, j, k, l
l 16 dev/ic/rlncmd.h #define RLN_MM_CMD(l,n) ((((unsigned int)l)<<8) | ((unsigned int)n))
l 185 dev/isa/essreg.h #define ESS_STEREO_GAIN(l, r) ((l) | ((r) >> 4))
l 451 dev/isa/isapnp.c struct isa_attach_args *l = NULL, *n = NULL, *d;
l 464 dev/isa/isapnp.c l = c;
l 470 dev/isa/isapnp.c f = l;
l 138 dev/isa/sbreg.h #define SB16P_L_TO_R(l) ((l)+1)
l 782 dev/microcode/ncr53cxxx/ncr53cxxx.c int l = 8;
l 785 dev/microcode/ncr53cxxx/ncr53cxxx.c l = 12; /* Memory to memory move is 12 bytes */
l 786 dev/microcode/ncr53cxxx/ncr53cxxx.c if ((dsps + l) / 4 > MAXINST) {
l 792 dev/microcode/ncr53cxxx/ncr53cxxx.c if (l == 12)
l 796 dev/microcode/ncr53cxxx/ncr53cxxx.c if (l == 12)
l 800 dev/microcode/ncr53cxxx/ncr53cxxx.c dsps += l;
l 958 dev/microcode/siop/ncr53cxxx.c int l = 8;
l 961 dev/microcode/siop/ncr53cxxx.c l = 12; /* Memory to memory move is 12 bytes */
l 962 dev/microcode/siop/ncr53cxxx.c if ((dsps + l) / 4 > MAXINST) {
l 968 dev/microcode/siop/ncr53cxxx.c if (l == 12)
l 972 dev/microcode/siop/ncr53cxxx.c if (l == 12)
l 976 dev/microcode/siop/ncr53cxxx.c dsps += l;
l 344 dev/pci/ahd_pci.c int error, ioh_valid, ioh2_valid, l, memh_valid, offset;
l 542 dev/pci/ahd_pci.c ahd_list_lock(&l);
l 547 dev/pci/ahd_pci.c ahd_list_unlock(&l);
l 213 dev/pci/auich.c #define DPRINTF(l,x) do { if (auich_debug & (l)) printf x; } while(0)
l 815 dev/pci/auvia.c size_t l;
l 819 dev/pci/auvia.c l = (vaddr_t)end - (vaddr_t)start;
l 820 dev/pci/auvia.c segs = howmany(l, blksize);
l 846 dev/pci/auvia.c while (l) {
l 848 dev/pci/auvia.c l = l - min(l, blksize);
l 850 dev/pci/auvia.c op->flags = htole32((l? AUVIA_DMAOP_FLAG : AUVIA_DMAOP_EOL) | blksize);
l 198 dev/pci/cmpcireg.h # define CMPCI_ADJUST_AUX_GAIN(sc, l, r) \
l 199 dev/pci/cmpcireg.h (cmpci_adjust((l), 0xc0) >> 4 | cmpci_adjust((r), 0xc0))
l 1270 dev/pci/eap.c int lval, rval, l, r, la, ra;
l 1338 dev/pci/eap.c l = VOL_TO_ATT5(lval);
l 1368 dev/pci/eap.c l = VOL_TO_GAIN5(lval);
l 1374 dev/pci/eap.c eap1370_set_mixer(sc, la, l);
l 1385 dev/pci/eap.c int la, ra, l, r;
l 1404 dev/pci/eap.c l = ATT5_TO_VOL(sc->sc_port[AK_MASTER_L]);
l 1432 dev/pci/eap.c l = GAIN5_TO_VOL(sc->sc_port[la]);
l 1439 dev/pci/eap.c cp->un.value.level[AUDIO_MIXER_LEVEL_MONO] = (l+r) / 2;
l 1441 dev/pci/eap.c cp->un.value.level[AUDIO_MIXER_LEVEL_LEFT] = l;
l 243 dev/pci/esoreg.h #define ESO_4BIT_GAIN_TO_STEREO(l,r) ((l) | ((r) >> 4))
l 920 dev/pci/hifn7751.c dma->cmdr[HIFN_D_CMD_RSIZE].l = htole32(HIFN_D_VALID |
l 930 dev/pci/hifn7751.c dma->srcr[HIFN_D_SRC_RSIZE].l = htole32(HIFN_D_VALID |
l 940 dev/pci/hifn7751.c dma->dstr[HIFN_D_DST_RSIZE].l = htole32(HIFN_D_VALID |
l 950 dev/pci/hifn7751.c dma->resr[HIFN_D_RES_RSIZE].l = htole32(HIFN_D_VALID |
l 988 dev/pci/hifn7751.c dma->cmdr[cmdi].l = htole32(16 | masks);
l 989 dev/pci/hifn7751.c dma->srcr[srci].l = htole32(8 | masks);
l 990 dev/pci/hifn7751.c dma->dstr[dsti].l = htole32(4 | masks);
l 991 dev/pci/hifn7751.c dma->resr[resi].l = htole32(4 | masks);
l 1002 dev/pci/hifn7751.c if ((dma->resr[resi].l & htole32(HIFN_D_VALID)) == 0)
l 1052 dev/pci/hifn7751.c dma->cmdr[cmdi].l = htole32(8 | masks);
l 1053 dev/pci/hifn7751.c dma->srcr[srci].l = htole32(8 | masks);
l 1054 dev/pci/hifn7751.c dma->dstr[dsti].l = htole32(8 | masks);
l 1055 dev/pci/hifn7751.c dma->resr[resi].l = htole32(HIFN_MAX_RESULT | masks);
l 1066 dev/pci/hifn7751.c if ((dma->resr[resi].l & htole32(HIFN_D_VALID)) == 0)
l 1277 dev/pci/hifn7751.c u_int32_t p, l;
l 1283 dev/pci/hifn7751.c dma->dstr[idx].l = htole32(HIFN_D_VALID |
l 1290 dev/pci/hifn7751.c dma->dstr[idx].l = htole32(HIFN_D_VALID |
l 1300 dev/pci/hifn7751.c l = HIFN_D_VALID | HIFN_D_MASKDONEIRQ | HIFN_D_LAST |
l 1305 dev/pci/hifn7751.c l = HIFN_D_VALID | HIFN_D_MASKDONEIRQ | HIFN_D_LAST |
l 1310 dev/pci/hifn7751.c dma->dstr[idx].l = htole32(HIFN_D_VALID |
l 1318 dev/pci/hifn7751.c dma->dstr[idx].l = htole32(HIFN_D_VALID |
l 1327 dev/pci/hifn7751.c dma->dstr[idx].l = htole32(l);
l 1332 dev/pci/hifn7751.c dma->dstr[idx].l = htole32(HIFN_D_VALID | HIFN_D_JUMP |
l 1358 dev/pci/hifn7751.c dma->srcr[idx].l = htole32(map->dm_segs[i].ds_len |
l 1364 dev/pci/hifn7751.c dma->srcr[idx].l = htole32(HIFN_D_VALID |
l 1531 dev/pci/hifn7751.c dma->cmdr[HIFN_D_CMD_RSIZE].l = htole32(HIFN_D_VALID |
l 1541 dev/pci/hifn7751.c dma->cmdr[cmdi].l = htole32(cmdlen | HIFN_D_VALID | HIFN_D_LAST |
l 1580 dev/pci/hifn7751.c dma->resr[HIFN_D_RES_RSIZE].l = htole32(HIFN_D_VALID |
l 1588 dev/pci/hifn7751.c dma->resr[resi].l = htole32(HIFN_MAX_RESULT |
l 1741 dev/pci/hifn7751.c if (dma->resr[i].l & htole32(HIFN_D_VALID)) {
l 1768 dev/pci/hifn7751.c if (dma->srcr[i].l & htole32(HIFN_D_VALID)) {
l 1784 dev/pci/hifn7751.c if (dma->cmdr[i].l & htole32(HIFN_D_VALID)) {
l 2197 dev/pci/hifn7751.c if ((dma->resr[i].l & htole32(HIFN_D_VALID)) == 0) {
l 2305 dev/pci/hifn7751.c if (dma->dstr[i].l & htole32(HIFN_D_VALID)) {
l 2533 dev/pci/hifn7751.c dma->cmdr[HIFN_D_CMD_RSIZE].l = htole32(HIFN_D_VALID |
l 2543 dev/pci/hifn7751.c dma->cmdr[cmdi].l = htole32(cmdlen | HIFN_D_VALID | HIFN_D_LAST |
l 2579 dev/pci/hifn7751.c dma->resr[HIFN_D_RES_RSIZE].l = htole32(HIFN_D_VALID |
l 2587 dev/pci/hifn7751.c dma->resr[resi].l = htole32(HIFN_MAX_RESULT |
l 2639 dev/pci/hifn7751.c if (dma->dstr[i].l & htole32(HIFN_D_VALID)) {
l 74 dev/pci/hifn7751reg.h volatile u_int32_t l; /* length and status bits */
l 548 dev/pci/if_lmcvar.h #define LMC_BPF_TAP(sc, p, l, d) bpf_tap((sc)->lmc_bpf, p, l, d)
l 58 dev/pci/if_nxe.c #define DPRINTF(l, f...) do { if (nxedebug & (l)) printf(f); } while (0)
l 61 dev/pci/if_nxe.c #define DPRINTF(l, f...)
l 69 dev/pci/if_tht.c #define DPRINTF(l, f...) do { if (thtdebug & (l)) printf(f); } while (0)
l 71 dev/pci/if_tht.c #define DPRINTF(l, f...)
l 1346 dev/pci/yds.c size_t l;
l 1393 dev/pci/yds.c l = ((char *)end - (char *)start);
l 1394 dev/pci/yds.c sc->sc_play.length = l;
l 1403 dev/pci/yds.c l /= sc->sc_play.factor;
l 1411 dev/pci/yds.c psb->pgloopend = l;
l 1486 dev/pci/yds.c size_t l;
l 1511 dev/pci/yds.c l = ((char *)end - (char *)start);
l 1512 dev/pci/yds.c sc->sc_rec.length = l;
l 1523 dev/pci/yds.c rsb->pgloopendadr = l;
l 64 dev/pcmcia/if_malo.c #define DPRINTF(l, x...) do { if ((l) <= cmalo_d) printf(x); } while (0)
l 66 dev/pcmcia/if_malo.c #define DPRINTF(l, x...)
l 110 dev/raidframe/rf_alloclist.c rf_real_AddToAllocList(RF_AllocListElem_t *l, void *p, int size, int lockflag)
l 114 dev/raidframe/rf_alloclist.c for (; l->next; l = l->next)
l 115 dev/raidframe/rf_alloclist.c RF_ASSERT(l->numPointers == RF_POINTERS_PER_ALLOC_LIST_ELEMENT); /* Find end of list. */
l 117 dev/raidframe/rf_alloclist.c RF_ASSERT(l->numPointers >= 0 &&
l 118 dev/raidframe/rf_alloclist.c l->numPointers <= RF_POINTERS_PER_ALLOC_LIST_ELEMENT);
l 119 dev/raidframe/rf_alloclist.c if (l->numPointers == RF_POINTERS_PER_ALLOC_LIST_ELEMENT) {
l 121 dev/raidframe/rf_alloclist.c l->next = newelem;
l 122 dev/raidframe/rf_alloclist.c l = newelem;
l 124 dev/raidframe/rf_alloclist.c l->pointers[l->numPointers] = p;
l 125 dev/raidframe/rf_alloclist.c l->sizes[l->numPointers] = size;
l 126 dev/raidframe/rf_alloclist.c l->numPointers++;
l 140 dev/raidframe/rf_alloclist.c rf_FreeAllocList(RF_AllocListElem_t *l)
l 145 dev/raidframe/rf_alloclist.c for (p = l; p; p = p->next) {
l 153 dev/raidframe/rf_alloclist.c while (l) {
l 154 dev/raidframe/rf_alloclist.c temp = l;
l 155 dev/raidframe/rf_alloclist.c l = l->next;
l 86 dev/raidframe/rf_decluster.c RF_StripeNum_t l, SUID;
l 88 dev/raidframe/rf_decluster.c SUID = l = 0;
l 313 dev/raidframe/rf_decluster.c for (SUID = l = 0; l < layoutPtr->SUsPerPU; l++) {
l 317 dev/raidframe/rf_decluster.c layoutPtr->SUsPerPU) + l]
l 58 dev/raidframe/rf_declusterPQ.c int i, j, l;
l 290 dev/raidframe/rf_declusterPQ.c for (SUID = l = 0; l < layoutPtr->SUsPerPU; l++) {
l 294 dev/raidframe/rf_declusterPQ.c layoutPtr->SUsPerPU) + l]
l 73 dev/raidframe/rf_geniq.c unsigned int i, j, l, a, b;
l 114 dev/raidframe/rf_geniq.c for (l = 0; l < i; l++)
l 138 dev/raidframe/rf_geniq.c for (l = 0; l < 1023; l++)
l 113 dev/raidframe/rf_layout.c #define RF_NU(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p)
l 115 dev/raidframe/rf_layout.c #define RF_NU(a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p) a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p
l 85 dev/raidframe/rf_paritylogging.c RF_ParityLog_t *l = NULL, *next;
l 268 dev/raidframe/rf_paritylogging.c l = raidPtr->parityLogPool.parityLogs;
l 270 dev/raidframe/rf_paritylogging.c RF_Calloc(l->next, 1, sizeof(RF_ParityLog_t),
l 272 dev/raidframe/rf_paritylogging.c if (l->next == NULL) {
l 277 dev/raidframe/rf_paritylogging.c for (l = raidPtr->parityLogPool.parityLogs;
l 278 dev/raidframe/rf_paritylogging.c l;
l 279 dev/raidframe/rf_paritylogging.c l = next) {
l 280 dev/raidframe/rf_paritylogging.c next = l->next;
l 281 dev/raidframe/rf_paritylogging.c if (l->records)
l 282 dev/raidframe/rf_paritylogging.c RF_Free(l->records,
l 285 dev/raidframe/rf_paritylogging.c RF_Free(l, sizeof(RF_ParityLog_t));
l 289 dev/raidframe/rf_paritylogging.c l = l->next;
l 291 dev/raidframe/rf_paritylogging.c l->bufPtr = lHeapPtr;
l 294 dev/raidframe/rf_paritylogging.c RF_Malloc(l->records, (raidPtr->numSectorsPerLog *
l 297 dev/raidframe/rf_paritylogging.c if (l->records == NULL) {
l 302 dev/raidframe/rf_paritylogging.c for (l = raidPtr->parityLogPool.parityLogs;
l 303 dev/raidframe/rf_paritylogging.c l;
l 304 dev/raidframe/rf_paritylogging.c l = next) {
l 305 dev/raidframe/rf_paritylogging.c next = l->next;
l 306 dev/raidframe/rf_paritylogging.c if (l->records)
l 307 dev/raidframe/rf_paritylogging.c RF_Free(l->records,
l 310 dev/raidframe/rf_paritylogging.c RF_Free(l, sizeof(RF_ParityLog_t));
l 324 dev/raidframe/rf_reconmap.c RF_ReconMapListElem_t *l; /* Used for searching. */
l 328 dev/raidframe/rf_reconmap.c l = mapPtr->status[i];
l 329 dev/raidframe/rf_reconmap.c return ((l == RU_ALL) ? 1 : 0);
l 251 dev/rasops/rasops.c int l, bpp, s;
l 334 dev/rasops/rasops.c for (l = 0; l < ri->ri_emuheight; l++)
l 336 dev/rasops/rasops.c l * ri->ri_stride, 0,
l 342 dev/sbus/cgsix.c size_t l;
l 346 dev/sbus/cgsix.c l = (sc->sc_curs_size.x * sc->sc_curs_size.y) / NBBY;
l 347 dev/sbus/cgsix.c error = copyout(sc->sc_curs_image, curs->image, l);
l 350 dev/sbus/cgsix.c error = copyout(sc->sc_curs_mask, curs->mask, l);
l 343 dev/sequencer.c u_int32_t l;
l 359 dev/sequencer.c u.l = t;
l 99 dev/usb/ehci.c #define bitmask_snprintf(q,f,b,l) snprintf((b), (l), "%b", (q), (f))
l 1619 dev/usb/ehci.c ehci_str(usb_string_descriptor_t *p, int l, const char *s)
l 1623 dev/usb/ehci.c if (l == 0)
l 1626 dev/usb/ehci.c if (l == 1)
l 1629 dev/usb/ehci.c l -= 2;
l 1630 dev/usb/ehci.c for (i = 0; s[i] && l > 1; i++, l -= 2)
l 1659 dev/usb/ehci.c int s, len, value, index, l, totlen = 0;
l 1709 dev/usb/ehci.c totlen = l = min(len, USB_DEVICE_DESCRIPTOR_SIZE);
l 1711 dev/usb/ehci.c memcpy(buf, &ehci_devd, l);
l 1722 dev/usb/ehci.c totlen = l = min(len, USB_DEVICE_DESCRIPTOR_SIZE);
l 1723 dev/usb/ehci.c memcpy(buf, &ehci_odevd, l);
l 1735 dev/usb/ehci.c totlen = l = min(len, USB_CONFIG_DESCRIPTOR_SIZE);
l 1736 dev/usb/ehci.c memcpy(buf, &ehci_confd, l);
l 1739 dev/usb/ehci.c buf = (char *)buf + l;
l 1740 dev/usb/ehci.c len -= l;
l 1741 dev/usb/ehci.c l = min(len, USB_INTERFACE_DESCRIPTOR_SIZE);
l 1742 dev/usb/ehci.c totlen += l;
l 1743 dev/usb/ehci.c memcpy(buf, &ehci_ifcd, l);
l 1744 dev/usb/ehci.c buf = (char *)buf + l;
l 1745 dev/usb/ehci.c len -= l;
l 1746 dev/usb/ehci.c l = min(len, USB_ENDPOINT_DESCRIPTOR_SIZE);
l 1747 dev/usb/ehci.c totlen += l;
l 1748 dev/usb/ehci.c memcpy(buf, &ehci_endpd, l);
l 1895 dev/usb/ehci.c for (i = 0, l = sc->sc_noport; l > 0; i++, l -= 8, v >>= 8)
l 1898 dev/usb/ehci.c l = min(len, hubd.bDescLength);
l 1899 dev/usb/ehci.c totlen = l;
l 1900 dev/usb/ehci.c memcpy(buf, &hubd, l);
l 1937 dev/usb/ehci.c l = min(len, sizeof(ps));
l 1938 dev/usb/ehci.c memcpy(buf, &ps, l);
l 1939 dev/usb/ehci.c totlen = l;
l 78 dev/usb/ohci.c #define bitmask_snprintf(q,f,b,l) snprintf((b), (l), "%b", (q), (f))
l 2347 dev/usb/ohci.c ohci_str(usb_string_descriptor_t *p, int l, const char *s)
l 2351 dev/usb/ohci.c if (l == 0)
l 2354 dev/usb/ohci.c if (l == 1)
l 2357 dev/usb/ohci.c l -= 2;
l 2358 dev/usb/ohci.c for (i = 0; s[i] && l > 1; i++, l -= 2)
l 2387 dev/usb/ohci.c int s, len, value, index, l, totlen = 0;
l 2437 dev/usb/ohci.c totlen = l = min(len, USB_DEVICE_DESCRIPTOR_SIZE);
l 2439 dev/usb/ohci.c memcpy(buf, &ohci_devd, l);
l 2446 dev/usb/ohci.c totlen = l = min(len, USB_CONFIG_DESCRIPTOR_SIZE);
l 2447 dev/usb/ohci.c memcpy(buf, &ohci_confd, l);
l 2448 dev/usb/ohci.c buf = (char *)buf + l;
l 2449 dev/usb/ohci.c len -= l;
l 2450 dev/usb/ohci.c l = min(len, USB_INTERFACE_DESCRIPTOR_SIZE);
l 2451 dev/usb/ohci.c totlen += l;
l 2452 dev/usb/ohci.c memcpy(buf, &ohci_ifcd, l);
l 2453 dev/usb/ohci.c buf = (char *)buf + l;
l 2454 dev/usb/ohci.c len -= l;
l 2455 dev/usb/ohci.c l = min(len, USB_ENDPOINT_DESCRIPTOR_SIZE);
l 2456 dev/usb/ohci.c totlen += l;
l 2457 dev/usb/ohci.c memcpy(buf, &ohci_endpd, l);
l 2596 dev/usb/ohci.c for (i = 0, l = sc->sc_noport; l > 0; i++, l -= 8, v >>= 8)
l 2599 dev/usb/ohci.c l = min(len, hubd.bDescLength);
l 2600 dev/usb/ohci.c totlen = l;
l 2601 dev/usb/ohci.c memcpy(buf, &hubd, l);
l 2627 dev/usb/ohci.c l = min(len, sizeof ps);
l 2628 dev/usb/ohci.c memcpy(buf, &ps, l);
l 2629 dev/usb/ohci.c totlen = l;
l 109 dev/usb/uaudio.c #define MAKE(h,l) (((h) << 8) | (l))
l 86 dev/usb/uhci.c #define bitmask_snprintf(q,f,b,l) snprintf((b), (l), "%b", (q), (f))
l 1691 dev/usb/uhci.c int i, ntd, l, tog, maxp;
l 1738 dev/usb/uhci.c l = len % maxp;
l 1739 dev/usb/uhci.c if (l == 0 && !(flags & USBD_FORCE_SHORT_XFER))
l 1740 dev/usb/uhci.c l = maxp;
l 1743 dev/usb/uhci.c l = maxp;
l 1745 dev/usb/uhci.c htole32(rd ? UHCI_TD_IN (l, endpt, addr, tog) :
l 1746 dev/usb/uhci.c UHCI_TD_OUT(l, endpt, addr, tog));
l 2960 dev/usb/uhci.c uhci_str(usb_string_descriptor_t *p, int l, char *s)
l 2964 dev/usb/uhci.c if (l == 0)
l 2967 dev/usb/uhci.c if (l == 1)
l 2970 dev/usb/uhci.c l -= 2;
l 2971 dev/usb/uhci.c for (i = 0; s[i] && l > 1; i++, l -= 2)
l 3098 dev/usb/uhci.c int s, len, value, index, status, change, l, totlen = 0;
l 3145 dev/usb/uhci.c totlen = l = min(len, USB_DEVICE_DESCRIPTOR_SIZE);
l 3147 dev/usb/uhci.c memcpy(buf, &uhci_devd, l);
l 3154 dev/usb/uhci.c totlen = l = min(len, USB_CONFIG_DESCRIPTOR_SIZE);
l 3155 dev/usb/uhci.c memcpy(buf, &uhci_confd, l);
l 3156 dev/usb/uhci.c buf = (char *)buf + l;
l 3157 dev/usb/uhci.c len -= l;
l 3158 dev/usb/uhci.c l = min(len, USB_INTERFACE_DESCRIPTOR_SIZE);
l 3159 dev/usb/uhci.c totlen += l;
l 3160 dev/usb/uhci.c memcpy(buf, &uhci_ifcd, l);
l 3161 dev/usb/uhci.c buf = (char *)buf + l;
l 3162 dev/usb/uhci.c len -= l;
l 3163 dev/usb/uhci.c l = min(len, USB_ENDPOINT_DESCRIPTOR_SIZE);
l 3164 dev/usb/uhci.c totlen += l;
l 3165 dev/usb/uhci.c memcpy(buf, &uhci_endpd, l);
l 3308 dev/usb/uhci.c l = min(len, USB_HUB_DESCRIPTOR_SIZE);
l 3309 dev/usb/uhci.c totlen = l;
l 3310 dev/usb/uhci.c memcpy(buf, &uhci_hubd_piix, l);
l 3356 dev/usb/uhci.c l = min(len, sizeof ps);
l 3357 dev/usb/uhci.c memcpy(buf, &ps, l);
l 3358 dev/usb/uhci.c totlen = l;
l 173 dev/usb/uhcireg.h #define UHCI_TD_SET_MAXLEN(l) (((l)-1) << 21)
l 71 dev/usb/usb.h #define USETW2(w,h,l) ((w)[0] = (u_int8_t)(l), (w)[1] = (u_int8_t)(h))
l 283 dev/usb/usb_subr.c int l;
l 285 dev/usb/usb_subr.c l = snprintf(cp, len, "%x.%02x", bcd >> 8, bcd & 0xff);
l 286 dev/usb/usb_subr.c if (l == -1 || len == 0)
l 288 dev/usb/usb_subr.c if (l >= len)
l 290 dev/usb/usb_subr.c return (l);
l 68 dev/usb/usbf.c #define DPRINTF(l, x) do {} while (0)
l 71 dev/usb/usbf.c #define DPRINTF(l, x) if ((l) <= usbfdebug) printf x; else {}
l 38 dev/usb/usbf_subr.c #define DPRINTF(l, x) do {} while (0)
l 41 dev/usb/usbf_subr.c #define DPRINTF(l, x) if ((l) <= usbfdebug) printf x; else {}
l 335 dev/usb/uts.c uts_ioctl(void *v, u_long cmd, caddr_t data, int flag, struct proc *l)
l 342 dev/wscons/wskbdutil.c int l;
l 373 dev/wscons/wskbdutil.c for (l = 0; kp + l < mp->map + mp->map_size;
l 374 dev/wscons/wskbdutil.c l++) {
l 375 dev/wscons/wskbdutil.c ksg = KS_GROUP(kp[l]);
l 379 dev/wscons/wskbdutil.c if (l > 4)
l 382 dev/wscons/wskbdutil.c fillmapentry(kp, l, mapentry);
l 375 dev/wscons/wsmux.c struct wsmux_device_list *l;
l 454 dev/wscons/wsmux.c l = (struct wsmux_device_list *)data;
l 459 dev/wscons/wsmux.c l->devices[n].type = me->me_ops->type;
l 460 dev/wscons/wsmux.c l->devices[n].idx = me->me_dv.dv_unit;
l 463 dev/wscons/wsmux.c l->ndevices = n;
l 247 dev/wsfont/wsfont.c int x, l, r, nr;
l 257 dev/wsfont/wsfont.c l = 0;
l 260 dev/wsfont/wsfont.c while (l < r) {
l 261 dev/wsfont/wsfont.c x = rp[l];
l 262 dev/wsfont/wsfont.c rp[l] = rp[r];
l 264 dev/wsfont/wsfont.c l++, r--;
l 483 kern/kern_lock.c #define SLOCK_WHERE(str, alp, id, l) \
l 487 kern/kern_lock.c lock_printf("lock: %p, currently at: %s:%d\n", (alp), (id), (l)); \
l 520 kern/kern_lock.c _simple_lock(__volatile struct simplelock *lkp, const char *id, int l)
l 535 kern/kern_lock.c alp, id, l);
l 539 kern/kern_lock.c SLOCK_WHERE("simple_lock: lock held\n", alp, id, l);
l 555 kern/kern_lock.c alp, id, l);
l 558 kern/kern_lock.c alp->lock_line = l;
l 598 kern/kern_lock.c _simple_lock_try(__volatile struct simplelock *lkp, const char *id, int l)
l 613 kern/kern_lock.c alp, id, l);
l 618 kern/kern_lock.c SLOCK_WHERE("simple_lock_try: lock held\n", alp, id, l);
l 631 kern/kern_lock.c alp->lock_line = l;
l 647 kern/kern_lock.c _simple_unlock(__volatile struct simplelock *lkp, const char *id, int l)
l 659 kern/kern_lock.c alp, id, l);
l 673 kern/kern_lock.c alp->unlock_line = l;
l 1562 kern/kern_sysctl.c int i, tlen, l;
l 1584 kern/kern_sysctl.c for (dk = TAILQ_FIRST(&disklist), i = 0, l = 0; dk;
l 1586 kern/kern_sysctl.c snprintf(disknames + l, tlen - l, "%s,",
l 1588 kern/kern_sysctl.c l += strlen(disknames + l);
l 1604 kern/kern_sysctl.c if (l != 0)
l 1605 kern/kern_sysctl.c disknames[l - 1] = '\0';
l 155 kern/subr_log.c long l;
l 177 kern/subr_log.c l = mbp->msg_bufx - mbp->msg_bufr;
l 178 kern/subr_log.c if (l < 0)
l 179 kern/subr_log.c l = mbp->msg_bufs - mbp->msg_bufr;
l 180 kern/subr_log.c l = min(l, uio->uio_resid);
l 181 kern/subr_log.c if (l == 0)
l 183 kern/subr_log.c error = uiomove(&mbp->msg_bufc[mbp->msg_bufr], (int)l, uio);
l 186 kern/subr_log.c mbp->msg_bufr += l;
l 273 kern/subr_log.c long l;
l 281 kern/subr_log.c l = msgbufp->msg_bufx - msgbufp->msg_bufr;
l 283 kern/subr_log.c if (l < 0)
l 284 kern/subr_log.c l += msgbufp->msg_bufs;
l 285 kern/subr_log.c *(int *)data = l;
l 156 kern/subr_prf.c __assert(const char *t, const char *f, int l, const char *e)
l 160 kern/subr_prf.c t, e, f, l);
l 249 kern/subr_userconf.c int *l;
l 298 kern/subr_userconf.c l = cd->cf_loc;
l 303 kern/subr_userconf.c userconf_pnum(*l++);
l 355 kern/subr_userconf.c int l = 0;
l 360 kern/subr_userconf.c l++;
l 377 kern/subr_userconf.c *len = l;
l 390 kern/subr_userconf.c short attr = -1, i = 0, l = 0;
l 395 kern/subr_userconf.c l++;
l 399 kern/subr_userconf.c if (strlen(locnames[i]) == l) {
l 400 kern/subr_userconf.c if (strncasecmp(cmd, locnames[i], l) == 0)
l 451 kern/subr_userconf.c int *l;
l 471 kern/subr_userconf.c l = cd->cf_loc;
l 480 kern/subr_userconf.c if (i != devno && cfdata[i].cf_loc == l)
l 485 kern/subr_userconf.c lk = l = (int *)malloc(sizeof(int) * i,
l 491 kern/subr_userconf.c bcopy(cd->cf_loc, l, sizeof(int) * i);
l 495 kern/subr_userconf.c userconf_modify(locnames[locnamp[ln]], l);
l 498 kern/subr_userconf.c userconf_hist_int(*l);
l 501 kern/subr_userconf.c l++;
l 764 kern/subr_userconf.c int *l;
l 772 kern/subr_userconf.c l = cd->cf_loc;
l 780 kern/subr_userconf.c if (*val == *l) {
l 803 kern/subr_userconf.c l++;
l 817 kern/subr_userconf.c short attr = -1, i = 0, l = 0;
l 823 kern/subr_userconf.c l++;
l 829 kern/subr_userconf.c if (strlen(locnames[i]) == l) {
l 830 kern/subr_userconf.c if (strncasecmp(cmd, locnames[i], l) == 0) {
l 946 kern/subr_userconf.c short l = 0;
l 952 kern/subr_userconf.c l++;
l 2031 kern/tty.c #define CLAMP(x, h, l) ((x) > h ? h : ((x) < l) ? l : (x))
l 228 kern/uipc_mbuf2.c int l;
l 237 kern/uipc_mbuf2.c l = MHLEN;
l 240 kern/uipc_mbuf2.c l = MLEN;
l 242 kern/uipc_mbuf2.c if (n && len > l) {
l 371 lib/libsa/bootparam.c n_long l; /* network order */
l 379 lib/libsa/bootparam.c uia.l = ia.s_addr;
l 402 lib/libsa/bootparam.c n_long l; /* network order */
l 426 lib/libsa/bootparam.c ia->s_addr = uia.l;
l 161 lib/libsa/tftp.c int l;
l 169 lib/libsa/tftp.c l = strlen(h->path);
l 170 lib/libsa/tftp.c bcopy(h->path, wtail, l + 1);
l 171 lib/libsa/tftp.c wtail += l + 1;
l 54 miscfs/procfs/procfs_status.c #define COUNTORCAT(s, l, ps, n) do { \
l 56 miscfs/procfs/procfs_status.c strlcat(s, ps, l); \
l 65 miscfs/procfs/procfs_status.c procfs_stat_gen(struct proc *p, char *s, int l)
l 83 miscfs/procfs/procfs_status.c bzero(s, l);
l 87 miscfs/procfs/procfs_status.c COUNTORCAT(s, l, ps, n);
l 91 miscfs/procfs/procfs_status.c COUNTORCAT(s, l, ps, n);
l 99 miscfs/procfs/procfs_status.c COUNTORCAT(s, l, ps, n);
l 105 miscfs/procfs/procfs_status.c COUNTORCAT(s, l, ps, n);
l 111 miscfs/procfs/procfs_status.c COUNTORCAT(s, l, ps, n);
l 116 miscfs/procfs/procfs_status.c COUNTORCAT(s, l, ps, n);
l 121 miscfs/procfs/procfs_status.c COUNTORCAT(s, l, ps, n);
l 126 miscfs/procfs/procfs_status.c COUNTORCAT(s, l, ps, n);
l 130 miscfs/procfs/procfs_status.c COUNTORCAT(s, l, ps, n);
l 135 miscfs/procfs/procfs_status.c COUNTORCAT(s, l, ps, n);
l 138 miscfs/procfs/procfs_status.c COUNTORCAT(s, l, ps, n);
l 142 miscfs/procfs/procfs_status.c COUNTORCAT(s, l, ps, n);
l 423 msdosfs/msdosfs_conv.c int i, j, l;
l 486 msdosfs/msdosfs_conv.c l = dp1 - dp;
l 488 msdosfs/msdosfs_conv.c l = unlen - (dp - un);
l 489 msdosfs/msdosfs_conv.c for (i = 0, j = 8; i < l && j < 11; i++, j++) {
l 498 msdosfs/msdosfs_conv.c if (i < l)
l 779 msdosfs/msdosfs_fat.c uint32_t len, newst, foundl, cn, l;
l 813 msdosfs/msdosfs_fat.c if ((l = chainlength(pmp, cn, count)) >= count)
l 815 msdosfs/msdosfs_fat.c if (l > foundl) {
l 817 msdosfs/msdosfs_fat.c foundl = l;
l 819 msdosfs/msdosfs_fat.c cn += l + 1;
l 830 msdosfs/msdosfs_fat.c if ((l = chainlength(pmp, cn, count)) >= count)
l 832 msdosfs/msdosfs_fat.c if (l > foundl) {
l 834 msdosfs/msdosfs_fat.c foundl = l;
l 836 msdosfs/msdosfs_fat.c cn += l + 1;
l 463 net/if_ethersubr.c struct llc *l;
l 681 net/if_ethersubr.c l = mtod(m, struct llc *);
l 682 net/if_ethersubr.c switch (l->llc_dsap) {
l 692 net/if_ethersubr.c if (l->llc_control == LLC_UI &&
l 693 net/if_ethersubr.c l->llc_ssap == LLC_SNAP_LSAP &&
l 694 net/if_ethersubr.c Bcmp(&(l->llc_snap.org_code)[0],
l 696 net/if_ethersubr.c ntohs(l->llc_snap.ether_type) == ETHERTYPE_AT) {
l 703 net/if_ethersubr.c if (l->llc_control == LLC_UI &&
l 704 net/if_ethersubr.c l->llc_ssap == LLC_SNAP_LSAP &&
l 705 net/if_ethersubr.c Bcmp(&(l->llc_snap.org_code)[0],
l 707 net/if_ethersubr.c ntohs(l->llc_snap.ether_type) == ETHERTYPE_AARP) {
l 714 net/if_ethersubr.c if (l->llc_control == LLC_UI &&
l 715 net/if_ethersubr.c l->llc_dsap == LLC_SNAP_LSAP &&
l 716 net/if_ethersubr.c l->llc_ssap == LLC_SNAP_LSAP) {
l 303 net/if_fddisubr.c struct llc *l;
l 307 net/if_fddisubr.c l = mtod(m, struct llc *);
l 308 net/if_fddisubr.c l->llc_control = LLC_UI;
l 309 net/if_fddisubr.c l->llc_dsap = l->llc_ssap = LLC_SNAP_LSAP;
l 310 net/if_fddisubr.c l->llc_snap.org_code[0] = l->llc_snap.org_code[1] = l->llc_snap.org_code[2] = 0;
l 311 net/if_fddisubr.c bcopy((caddr_t) &type, (caddr_t) &l->llc_snap.ether_type,
l 382 net/if_fddisubr.c struct llc *l;
l 398 net/if_fddisubr.c l = mtod(m, struct llc *);
l 399 net/if_fddisubr.c switch (l->llc_dsap) {
l 404 net/if_fddisubr.c if (l->llc_control != LLC_UI || l->llc_ssap != LLC_SNAP_LSAP)
l 406 net/if_fddisubr.c if (l->llc_snap.org_code[0] != 0 || l->llc_snap.org_code[1] != 0|| l->llc_snap.org_code[2] != 0)
l 408 net/if_fddisubr.c etype = ntohs(l->llc_snap.ether_type);
l 414 net/if_fddisubr.c (u_int8_t *)&fh->fddi_dhost, l->llc_snap.ether_type) == 0))
l 1577 net/if_ppp.c int l = m->m_len;
l 1580 net/if_ppp.c while (l--) {
l 1321 net/pf.c u_int32_t l;
l 1325 net/pf.c l = cksum + old - new;
l 1326 net/pf.c l = (l >> 16) + (l & 65535);
l 1327 net/pf.c l = l & 65535;
l 1328 net/pf.c if (udp && !l)
l 1330 net/pf.c return (l);
l 144 net/ppp_tty.c void pppdumpb(u_char *b, int l);
l 1073 net/ppp_tty.c pppdumpb(b, l)
l 1075 net/ppp_tty.c int l;
l 1081 net/ppp_tty.c while (l--) {
l 66 net/radix.c #define Bcmp(a, b, l) (l == 0 ? 0 : bcmp((caddr_t)(a), (caddr_t)(b), (u_long)l))
l 126 net/radix_mpath.c int same, l, skip;
l 162 net/radix_mpath.c l = rt_mask(rt1)->sa_len;
l 163 net/radix_mpath.c if (skip > l) {
l 169 net/radix_mpath.c if (bcmp(p + skip, q + skip, l - skip))
l 176 net/radix_mpath.c q += l;
l 3733 net/zlib.c int l; /* bits per table (returned in m) */
l 3765 net/zlib.c l = *m;
l 3770 net/zlib.c if ((uInt)l < j)
l 3771 net/zlib.c l = j;
l 3776 net/zlib.c if ((uInt)l > i)
l 3777 net/zlib.c l = i;
l 3778 net/zlib.c *m = l;
l 3810 net/zlib.c w = -l; /* bits decoded == (l * h) */
l 3823 net/zlib.c while (k > w + l)
l 3826 net/zlib.c w += l; /* previous table always l bits */
l 3829 net/zlib.c z = (z = g - w) > (uInt)l ? l : z; /* table size upper limit */
l 3864 net/zlib.c r.bits = (Byte)l; /* bits to dump before this table */
l 3867 net/zlib.c j = i >> (w - l); /* (get around Turbo C bug) */
l 3901 net/zlib.c w -= l;
l 87 netinet/in4_cksum.c #define REDUCE {l_util.l = sum; sum = l_util.s[0] + l_util.s[1]; ADDCARRY(sum);}
l 109 netinet/in4_cksum.c u_int32_t l;
l 48 netinet/in_cksum.c #define REDUCE {l_util.l = sum; sum = l_util.s[0] + l_util.s[1]; ADDCARRY(sum);}
l 66 netinet/in_cksum.c u_int32_t l;
l 1134 netinet/ip_ipsp.c int nxtp, l;
l 1145 netinet/ip_ipsp.c for (l = ip6_nexthdr(m, off, proto, &nxtp); l != -1;
l 1146 netinet/ip_ipsp.c l = ip6_nexthdr(m, off, proto, &nxtp)) {
l 1147 netinet/ip_ipsp.c off += l;
l 955 netinet/ipsec_input.c int l = 0;
l 970 netinet/ipsec_input.c protoff += l;
l 975 netinet/ipsec_input.c l = (ip6e.ip6e_len + 2) << 2;
l 977 netinet/ipsec_input.c l = (ip6e.ip6e_len + 1) << 3;
l 979 netinet/ipsec_input.c if (l <= 0)
l 984 netinet/ipsec_input.c } while (protoff + l < *offp);
l 987 netinet/ipsec_input.c if (protoff + l != *offp) {
l 1044 netinet/ipsec_input.c int l = 0;
l 1059 netinet/ipsec_input.c protoff += l;
l 1064 netinet/ipsec_input.c l = (ip6e.ip6e_len + 2) << 2;
l 1066 netinet/ipsec_input.c l = (ip6e.ip6e_len + 1) << 3;
l 1068 netinet/ipsec_input.c if (l <= 0)
l 1073 netinet/ipsec_input.c } while (protoff + l < *offp);
l 1076 netinet/ipsec_input.c if (protoff + l != *offp) {
l 1101 netinet/ipsec_input.c int l = 0;
l 1116 netinet/ipsec_input.c protoff += l;
l 1120 netinet/ipsec_input.c l = (ip6e.ip6e_len + 2) << 2;
l 1122 netinet/ipsec_input.c l = (ip6e.ip6e_len + 1) << 3;
l 1124 netinet/ipsec_input.c if (l <= 0)
l 1129 netinet/ipsec_input.c } while (protoff + l < *offp);
l 1132 netinet/ipsec_input.c if (protoff + l != *offp) {
l 1599 netinet6/icmp6.c int l;
l 1636 netinet6/icmp6.c l = a[0];
l 1637 netinet6/icmp6.c if (a - a0 + 1 + l > alen || b - b0 + 1 + l > blen)
l 1639 netinet6/icmp6.c if (bcmp(a + 1, b + 1, l) != 0)
l 1642 netinet6/icmp6.c a += 1 + l;
l 1643 netinet6/icmp6.c b += 1 + l;
l 2012 netinet6/icmp6.c size_t l;
l 2015 netinet6/icmp6.c l = off - sizeof(struct ip6_hdr);
l 2017 netinet6/icmp6.c m_adj(m, l);
l 2018 netinet6/icmp6.c l = sizeof(struct ip6_hdr) + sizeof(struct icmp6_hdr);
l 2019 netinet6/icmp6.c if (m->m_len < l) {
l 2020 netinet6/icmp6.c if ((m = m_pullup(m, l)) == NULL)
l 2025 netinet6/icmp6.c size_t l;
l 2026 netinet6/icmp6.c l = sizeof(struct ip6_hdr) + sizeof(struct icmp6_hdr);
l 2027 netinet6/icmp6.c if (m->m_len < l) {
l 2028 netinet6/icmp6.c if ((m = m_pullup(m, l)) == NULL)
l 78 netinet6/in6_cksum.c #define REDUCE {l_util.l = sum; sum = l_util.s[0] + l_util.s[1]; ADDCARRY(sum);}
l 112 netinet6/in6_cksum.c u_int32_t l;
l 503 netinet6/in6_ifattach.c u_int8_t l;
l 514 netinet6/in6_ifattach.c l = p - name;
l 515 netinet6/in6_ifattach.c strncpy((char *)n, name, l);
l 516 netinet6/in6_ifattach.c n[(int)l] = '\0';
l 525 netinet6/in6_ifattach.c MD5Update(&ctxt, &l, sizeof(l));
l 526 netinet6/in6_ifattach.c MD5Update(&ctxt, n, l);
l 1991 netinet6/nd6.c size_t ol, l;
l 1995 netinet6/nd6.c l = 0;
l 2040 netinet6/nd6.c size_t l;
l 2048 netinet6/nd6.c l = 0;
l 2066 netinet6/nd6.c l += sizeof(*d);
l 2072 netinet6/nd6.c *oldlenp = l; /* (caddr_t)d - (caddr_t)oldp */
l 2073 netinet6/nd6.c if (l > ol)
l 2076 netinet6/nd6.c *oldlenp = l;
l 2092 netinet6/nd6.c size_t l;
l 2100 netinet6/nd6.c l = 0;
l 2166 netinet6/nd6.c l += advance;
l 2172 netinet6/nd6.c *oldlenp = l; /* (caddr_t)d - (caddr_t)oldp */
l 2173 netinet6/nd6.c if (l > ol)
l 2176 netinet6/nd6.c *oldlenp = l;
l 36 stand/boot/bootarg.c addbootarg(int t, size_t l, void *p)
l 38 stand/boot/bootarg.c bootarg_t *q = alloc(sizeof(*q) + l - sizeof(q->ba_arg));
l 41 stand/boot/bootarg.c q->ba_size = sizeof(*q) + l - sizeof(q->ba_arg);
l 42 stand/boot/bootarg.c bcopy(p, q->ba_arg, l);
l 52 stand/boot/bootarg.c size_t l;
l 55 stand/boot/bootarg.c l = sizeof(*p);
l 57 stand/boot/bootarg.c l += p->ba_size;
l 58 stand/boot/bootarg.c if (*lenp < l) {
l 62 stand/boot/bootarg.c l = *lenp;
l 64 stand/boot/bootarg.c *lenp = l;
l 67 stand/boot/bootarg.c p != NULL && ((q + p->ba_size) - (u_char *)v) < l;
l 235 stand/boot/cmd.c int l;
l 239 stand/boot/cmd.c for (l = 0; p[l]; l++)
l 242 stand/boot/cmd.c while ((*ct)->cmd_name != NULL && strncmp(p, (*ct)->cmd_name, l))
l 243 stand/boot/vars.c int l;
l 246 stand/boot/vars.c l = strlen(cmd.argv[1]);
l 249 stand/boot/vars.c l = max(l, q - p) + 1;
l 254 stand/boot/vars.c if (!strncmp(p, cmd.argv[1], l)) {
l 168 sys/lock.h #define spinlock_release_all(l) _spinlock_release_all((l), __FILE__, __LINE__)
l 169 sys/lock.h #define spinlock_acquire_count(l, c) _spinlock_acquire_count((l), (c), \
l 435 sys/mbuf.h #define m_copy(m, o, l) m_copym((m), (o), (l), M_DONTWAIT)
l 476 sys/proc.h #define ltsleep(c, p, w, t, l) tsleep(c, p, w, t)
l 34 sys/stdarg.h #define va_start(v,l) __builtin_stdarg_start((v),l)
l 65 ufs/ext2fs/ext2fs_subr.c #define SETLOW(q, l) { \
l 68 ufs/ext2fs/ext2fs_subr.c tmp.val[_QUAD_LOWWORD] = (l); \
l 84 ufs/ufs/ufs_dirhash.c #define mtx_assert(l, f) /* nothing */
l 92 ufs/ufs/ufs_vnops.c #define SETLOW(q, l) { \
l 95 ufs/ufs/ufs_vnops.c tmp.val[_QUAD_LOWWORD] = (l); \
l 79 uvm/uvm_stat.c uvmhist_dump(l)
l 80 uvm/uvm_stat.c struct uvm_history *l;
l 85 uvm/uvm_stat.c lcv = l->f;
l 87 uvm/uvm_stat.c if (l->e[lcv].fmt)
l 88 uvm/uvm_stat.c uvmhist_print(&l->e[lcv]);
l 89 uvm/uvm_stat.c lcv = (lcv + 1) % l->n;
l 90 uvm/uvm_stat.c } while (lcv != l->f);
l 116 uvm/uvm_stat.h simple_lock_data_t l; /* lock on this history */
l 162 uvm/uvm_stat.h simple_lock_init(&(NAME).l); \
l 176 uvm/uvm_stat.h simple_lock_init(&(NAME).l); \
l 198 uvm/uvm_stat.h simple_lock(&(NAME).l); \
l 201 uvm/uvm_stat.h simple_unlock(&(NAME).l); \
l 221 uvm/uvm_stat.h simple_lock(&(NAME).l); \
l 223 uvm/uvm_stat.h simple_unlock(&(NAME).l); \
l 781 xfs/xfs_vnodeops-bsd.c xfs_vnode_lock *l = &xn->lock;
l 788 xfs/xfs_vnodeops-bsd.c if (l == NULL)
l 793 xfs/xfs_vnodeops-bsd.c l->lk_flags, l->lk_sharecount, l->lk_waitcount,
l 794 xfs/xfs_vnodeops-bsd.c l->lk_exclusivecount,
l 796 xfs/xfs_vnodeops-bsd.c (xfs_uintptr_t)l->lk_lockholder));
l 801 xfs/xfs_vnodeops-bsd.c ret = lockmgr(l, flags, &vp->v_interlock, ap->a_td);
l 803 xfs/xfs_vnodeops-bsd.c ret = lockmgr(l, flags, &vp->v_interlock, ap->a_p);
l 806 xfs/xfs_vnodeops-bsd.c ret = lockmgr(l, flags, NULL);
l 810 xfs/xfs_vnodeops-bsd.c ret = debuglockmgr(l, flags, &vp->v_interlock, ap->a_td,
l 813 xfs/xfs_vnodeops-bsd.c ret = debuglockmgr(l, flags, &vp->v_interlock, ap->a_p,
l 819 xfs/xfs_vnodeops-bsd.c l->lk_flags, l->lk_sharecount, l->lk_waitcount,
l 820 xfs/xfs_vnodeops-bsd.c l->lk_exclusivecount,
l 822 xfs/xfs_vnodeops-bsd.c (xfs_uintptr_t)l->lk_lockholder));
l 833 xfs/xfs_vnodeops-bsd.c xfs_vnode_lock *l = &xn->lock;
l 837 xfs/xfs_vnodeops-bsd.c if (l == NULL)
l 843 xfs/xfs_vnodeops-bsd.c (unsigned long)l,
l 848 xfs/xfs_vnodeops-bsd.c l->lk_flags, l->lk_sharecount, l->lk_waitcount,
l 849 xfs/xfs_vnodeops-bsd.c l->lk_exclusivecount,
l 851 xfs/xfs_vnodeops-bsd.c (xfs_uintptr_t)l->lk_lockholder));
l 855 xfs/xfs_vnodeops-bsd.c ret = lockmgr (l, flags | LK_RELEASE, &vp->v_interlock, ap->a_td);
l 857 xfs/xfs_vnodeops-bsd.c ret = lockmgr (l, flags | LK_RELEASE, &vp->v_interlock, ap->a_p);
l 860 xfs/xfs_vnodeops-bsd.c ret = lockmgr (l, flags | LK_RELEASE, NULL);
l 864 xfs/xfs_vnodeops-bsd.c ret = debuglockmgr (l, flags | LK_RELEASE, &vp->v_interlock, ap->a_td,
l 867 xfs/xfs_vnodeops-bsd.c ret = debuglockmgr (l, flags | LK_RELEASE, &vp->v_interlock, ap->a_p,
l 882 xfs/xfs_vnodeops-bsd.c xfs_vnode_lock *l = &xn->lock;
l 889 xfs/xfs_vnodeops-bsd.c return lockstatus (l, ap->a_td);
l 891 xfs/xfs_vnodeops-bsd.c return lockstatus (l, ap->a_p);
l 894 xfs/xfs_vnodeops-bsd.c return lockstatus (l);