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

  /src/sys/dev/pci/
ppb.c 187 u_int lw = __SHIFTOUT(reg, PCIE_LCSR_NLW); local in function:ppb_print_pcie
190 if (lw != mlw || ls != mls) {
194 lw, pcie_linkspeed_strings[ls]);
198 lw, (ls * 25) / 10, (ls * 25) % 10);
  /src/sys/net/lagg/
if_lagg.c 2865 struct lagg_work *lw; local in function:lagg_workq_work
2867 lw = container_of(wk, struct lagg_work, lw_cookie);
2869 atomic_cas_uint(&lw->lw_state, LAGG_WORK_ENQUEUED, LAGG_WORK_IDLE);
2870 lw->lw_func(lw, lw->lw_arg);
2896 lagg_workq_add(struct workqueue *wq, struct lagg_work *lw)
2899 if (atomic_cas_uint(&lw->lw_state, LAGG_WORK_IDLE,
2903 KASSERT(lw->lw_func != NULL);
2905 workqueue_enqueue(wq, &lw->lw_cookie, NULL)
    [all...]
  /src/usr.bin/xlint/lint1/
tree.c 1070 unsigned lw = width_in_bits((*lnp)->tn_type); local in function:balance
1072 if (lw < rw)
1074 if (rw < lw)
2633 unsigned lw = width_in_bits(ln->tn_type); local in function:typeok_shl_signed_to_msb
2641 && (n = rn->u.value.u.integer, 1 <= n && n <= lw)
2642 && u64_width((uint64_t)lc.smax - (uint64_t)lc.smin) + n == lw)

Completed in 16 milliseconds