HomeSort by: relevance | last modified time | path
    Searched defs:le (Results 1 - 11 of 11) sorted by relevancy

  /src/usr.sbin/makefs/cd9660/
cd9660_conversion.c 104 uint32_t le, be; local in function:cd9660_bothendian_dword
106 le = dw;
111 le = bswap32(dw);
113 memcpy(eightchar, &le, 4);
126 uint16_t le, be; local in function:cd9660_bothendian_word
128 le = dw;
133 le = bswap16(dw);
135 memcpy(fourchar, &le, 2);
  /src/sys/dev/tc/
if_le_ioasic.c 107 struct lance_softc *le = &sc->sc_am7990.lsc; local in function:le_ioasic_attach
118 le->sc_dev = self;
159 le->sc_mem = (void *)TC_PHYS_TO_UNCACHED(le_iomem);
160 le->sc_copytodesc = le_ioasic_copytobuf_gap2;
161 le->sc_copyfromdesc = le_ioasic_copyfrombuf_gap2;
162 le->sc_copytobuf = le_ioasic_copytobuf_gap16;
163 le->sc_copyfrombuf = le_ioasic_copyfrombuf_gap16;
164 le->sc_zerobuf = le_ioasic_zerobuf_gap16;
  /src/sys/dev/i2o/
iopsp.c 218 struct i2o_lct_entry *le; local in function:iopsp_reconfig
258 for (le = iop->sc_lct->entry; nent != 0; nent--, le++)
259 if ((le16toh(le->classid) & 4095) ==
261 (le32toh(le->usertid) & 4095) == bptid) {
262 bptid = le16toh(le->localtid) & 4095;
267 for (i = 0, le = iop->sc_lct->entry; i < nent; i++, le++) {
268 if ((le16toh(le->classid) & 4095) != I2O_CLASS_SCSI_PERIPHERAL)
270 if (((le32toh(le->usertid) >> 12) & 4095) != bptid
    [all...]
iop.c 649 struct i2o_lct_entry *le; local in function:iop_reconfigure
667 le = sc->sc_lct->entry;
668 for (i = 0; i < sc->sc_nlctent; i++, le++) {
669 if ((le16toh(le->classid) & 4095) !=
672 tid = le16toh(le->localtid) & 4095;
775 const struct i2o_lct_entry *le; local in function:iop_configure_devices
782 for (i = 0, le = sc->sc_lct->entry; i < nent; i++, le++) {
783 sc->sc_tidmap[i].it_tid = le16toh(le->localtid) & 4095;
786 usertid = le32toh(le->usertid) & 4095
    [all...]
  /src/sys/dev/
lockstat.c 167 lockstat_init_tables(lsenable_t *le)
185 if (le == NULL)
189 per = le->le_nbufs / ncpu;
190 slop = le->le_nbufs - (per * ncpu);
218 lockstat_start(lsenable_t *le)
224 lockstat_init_tables(le);
226 if ((le->le_flags & LE_CALLSITE) != 0)
231 if ((le->le_flags & LE_LOCK) != 0)
236 lockstat_csstart = le->le_csstart;
237 lockstat_csend = le->le_csend
492 lsenable_t *le; local in function:lockstat_ioctl
    [all...]
  /src/sys/arch/amiga/amiga/
amiga_init.c 736 register paddr_t *lp, *le, *fp; local in function:start_c
739 le = (paddr_t *)end_loaded;
741 while (lp < le)
  /src/usr.sbin/lockstat/
main.c 175 lsenable_t le; local in function:main
287 memset(&le, 0, sizeof(le));
288 le.le_nbufs = nbufs;
294 findsym(LOCK_BYNAME, lockname, &le.le_lockstart,
295 &le.le_lockend, true);
296 le.le_flags |= LE_ONE_LOCK;
299 le.le_flags |= LE_CALLSITE;
301 le.le_flags |= LE_LOCK;
305 findsym(FUNC_BYNAME, funcname, &le.le_csstart, &le.le_csend, true)
    [all...]
  /src/sys/arch/atari/atari/
atari_init.c 613 register paddr_t *lp, *le, *fp; local in function:start_c
616 le = (paddr_t *)pstart;
618 while (lp < le)
  /src/sys/ufs/chfs/
ebh.c 568 struct chfs_ltree_entry le, *result; local in function:ltree_lookup
569 le.lnr = lnr;
570 result = RB_FIND(ltree_rbtree, &ebh->ltree, &le);
588 struct chfs_ltree_entry *le, *result; local in function:ltree_add_entry
590 le = kmem_alloc(sizeof(struct chfs_ltree_entry), KM_SLEEP);
592 le->lnr = lnr;
593 le->users = 1;
594 rw_init(&le->mutex);
599 result = RB_INSERT(ltree_rbtree, &ebh->ltree, le);
604 kmem_free(le, sizeof(struct chfs_ltree_entry))
624 struct chfs_ltree_entry *le; local in function:leb_read_lock
645 struct chfs_ltree_entry *le; local in function:leb_read_unlock
680 struct chfs_ltree_entry *le; local in function:leb_write_lock
701 struct chfs_ltree_entry *le; local in function:leb_write_unlock
    [all...]
  /src/sys/arch/sparc/dev/
tctrl.c 1465 struct lance_softc *le = dv != NULL ? device_private(dv) : NULL; local in function:tctrl_event_thread
1486 if (le != NULL) {
1487 if (le->sc_havecarrier != 0)
  /src/sys/dev/pci/
if_msk.c 1991 struct msk_tx_desc *le; local in function:msk_encap
1994 le = &sc_if->sk_rdata->sk_tx_ring[idx];
1995 msk_dump_txdesc(le, idx);
2783 msk_dump_txdesc(struct msk_tx_desc *le, int idx)
2790 DESC_PRINT(letoh32(le->sk_addr));
2791 DESC_PRINT(letoh16(le->sk_len));
2792 DESC_PRINT(le->sk_ctl);
2793 DESC_PRINT(le->sk_opcode);

Completed in 21 milliseconds