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

  /src/sys/arch/mvme68k/stand/sboot/
etherfun.c 98 u_long res, iptmp, lcv; local in function:do_send_tftp
138 for (lcv = 9; lcv >= 2; lcv--) {
139 tftp_r[lcv] = HEXDIGITS[iptmp & 0xF];
  /src/sys/arch/sun3/dev/
if_ie_vme.c 121 int lcv, off; local in function:ie_vme_attach
161 for (lcv = 0; lcv < IEVME_MAPSZ; lcv++)
162 iev->pgmap[lcv] = IEVME_SBORDR | IEVME_OBMEM | lcv;
xy.c 353 int lcv, err, res, pbsz; local in function:xycattach
368 for (lcv = 0; lcv < XYC_MAXDEV; lcv++)
369 xyc->sc_drives[lcv] = NULL;
401 for (lcv = 0; lcv < XYC_MAXIOPB; lcv++) {
402 xyc->xy_chain[lcv] = NULL;
403 xyc->reqs[lcv].iopb = &xyc->iopbase[lcv]
542 int err, spt, mb, blk, lcv, fullmode, newstate; local in function:xy_init
1599 int del = 0, lcv, retval = XY_ERR_AOK; local in function:xyc_reset
1675 int lcv; local in function:xyc_start
1938 int lcv, s, reset = 0; local in function:xyc_tick
    [all...]
xd.c 173 * LCV is a counter. If it goes to zero then we timed out.
175 #define XDC_WAIT(XDC, LCV, TIME, BITS) \
177 (LCV) = (TIME); \
178 while ((LCV) > 0) { \
181 (LCV) = (LCV) - 1; \
422 int lcv, rqno, err; local in function:xdcattach
435 for (lcv = 0; lcv < XDC_MAXDEV; lcv++
604 int rqno, err, spt, mb, blk, lcv, fullmode, newstate; local in function:xd_init
1518 int sz = sizeof(struct xd_iopb), lcv; local in function:xdc_submit_iorq
1670 int del = 0, lcv, retval = XD_ERR_AOK; local in function:xdc_reset
1830 int sz = sizeof(struct xd_iopb), lcv; local in function:xdc_remove_iorq
2045 int lcv, s, reset = 0; local in function:xdc_tick
    [all...]
  /src/sys/uvm/
uvm_device.c 113 struct uvm_device *udv, *lcv; local in function:udv_attach
192 LIST_FOREACH(lcv, &udv_list, u_list) {
193 if (device == lcv->u_device)
201 if (lcv) {
208 if (lcv->u_flags & UVM_DEVICE_HOLD) {
209 lcv->u_flags |= UVM_DEVICE_WANTED;
210 UVM_UNLOCK_AND_WAIT(lcv, &udv_lock, false,
216 lcv->u_flags |= UVM_DEVICE_HOLD;
223 rw_enter(lcv->u_obj.vmobjlock, RW_WRITER);
224 lcv->u_obj.uo_refs++
388 int lcv, retval; local in function:udv_fault
    [all...]
uvm_pager.c 133 u_int lcv; local in function:uvm_pager_init
151 for (lcv = 0 ; lcv < __arraycount(uvmpagerops); lcv++) {
152 if (uvmpagerops[lcv]->pgo_init)
153 uvmpagerops[lcv]->pgo_init();
uvm_aobj.c 810 int lcv, gotpages, maxpages, swslot, pageidx; local in function:uao_get
848 for (lcv = 0; lcv < maxpages; lcv++) {
850 offset + (lcv << PAGE_SHIFT), maxpages);
855 lcv = (ptmp->offset - offset) >> PAGE_SHIFT;
856 if (lcv >= maxpages) {
875 pps[lcv] = ptmp;
901 for (lcv = 0, current_offset = offset ; lcv < maxpages ;)
    [all...]
uvm_amap.c 707 u_int slots, lcv, slot, stop; local in function:amap_share_protect
719 for (lcv = entry->aref.ar_pageoff ; lcv < stop ; lcv++) {
720 anon = amap->am_anon[lcv];
734 for (lcv = 0 ; lcv < amap->am_nused ; lcv++) {
735 slot = amap->am_slots[lcv];
756 u_int lcv; local in function:amap_wipeout
827 u_int slots, lcv; local in function:amap_copy
1031 u_int lcv, slot; local in function:amap_cow_now
1202 int stopslot, *ppref, lcv, prevlcv; local in function:amap_pp_adjref
1272 u_int lcv, stop, slotend; local in function:amap_wiperange
    [all...]
uvm_physseg.c 580 uvm_physseg_get_next(uvm_physseg_t lcv)
583 if (uvm_physseg_valid_p(lcv) == false)
586 return (lcv + 1);
590 uvm_physseg_get_prev(uvm_physseg_t lcv)
593 if (uvm_physseg_valid_p(lcv) == false)
596 return (lcv - 1);
614 int lcv; local in function:uvm_physseg_get_highest_frame
618 for (lcv = 0; lcv < vm_nphysseg; lcv++)
631 int preload, lcv; local in function:uvm_post_preload_check
747 int lcv; local in function:uvm_physseg_plug
935 int lcv; local in function:vm_physseg_find_linear
    [all...]
uvm_fault.c 187 int lcv; local in function:uvmfault_anonflush
190 for (lcv = 0; lcv < n; lcv++) {
191 if (anons[lcv] == NULL)
193 KASSERT(rw_lock_held(anons[lcv]->an_lock));
194 pg = anons[lcv]->an_page;
1293 int lcv; local in function:uvm_fault_upper_lookup
1312 for (lcv = 0; lcv < flt->npages; lcv++, currva += PAGE_SIZE)
1983 int lcv, gotpages; local in function:uvm_fault_lower_lookup
    [all...]
uvm_page.c 630 uvm_physseg_t lcv; local in function:uvm_page_physget_freelist
634 for (lcv = uvm_physseg_get_last(); uvm_physseg_valid_p(lcv); lcv = uvm_physseg_get_prev(lcv))
636 for (lcv = uvm_physseg_get_first(); uvm_physseg_valid_p(lcv); lcv = uvm_physseg_get_next(lcv))
643 if (uvm_page_physunload(lcv, freelist, paddrp)
1135 int color, lcv, error, s; local in function:uvm_pagealloc_strat
    [all...]
  /src/sys/external/bsd/drm2/drm/
drm_gem_cma_helper.c 192 int lcv, retval; local in function:drm_gem_cma_fault
202 for (lcv = 0; lcv < npages; lcv++, curr_offset += PAGE_SIZE,
204 if ((flags & PGO_ALLPAGES) == 0 && lcv != centeridx)
206 if (pps[lcv] == PGO_DONTCARE)
  /src/regress/sys/kern/allocfree/
allocfree.c 137 int lcv; local in function:test_thread
159 for (lcv = count; lcv != 0; lcv--) {
165 for (lcv = count; lcv != 0; lcv--) {
  /src/sys/kern/
kern_history.c 121 int lcv; local in function:kernhist_dump
123 lcv = l->f;
127 lcv = (lcv - count) % l->n;
130 if (l->e[lcv].fmt)
131 kernhist_entry_print(&l->e[lcv], pr);
132 lcv = (lcv + 1) % l->n;
133 } while (lcv != l->f);
145 int lcv, hi local in function:kernhist_dump_histories
287 int lcv; variable in typeref:typename:int
    [all...]
  /src/sys/arch/sun2/dev/
if_ie_mbmem.c 405 int lcv; local in function:ie_mbmem_attach
451 for (lcv = 0; lcv < IEMBMEM_MAPSZ - 1; lcv++)
452 write_iev(vsc, pgmap[lcv],
453 IEMBMEM_SBORDR | IEMBMEM_OBMEM | lcv);
  /src/sys/dev/vme/
if_ie_vme.c 467 int lcv; local in function:ie_vme_attach
517 for (lcv = 0; lcv < IEVME_MAPSZ - 1; lcv++)
518 write_iev(vsc, pgmap[lcv], IEVME_SBORDR | IEVME_OBMEM | lcv);
xy.c 410 int lcv, res, error; local in function:xycattach
435 for (lcv = 0; lcv < XYC_MAXDEV; lcv++)
436 xyc->sc_drives[lcv] = NULL;
501 for (lcv = 0; lcv < XYC_MAXIOPB; lcv++) {
502 xyc->xy_chain[lcv] = NULL;
503 xyc->reqs[lcv].iopb = &xyc->iopbase[lcv]
613 int spt, mb, blk, lcv, fmode, s = 0, newstate; local in function:xyattach
1748 int del = 0, lcv, retval = XY_ERR_AOK; local in function:xyc_reset
1830 int lcv; local in function:xyc_start
2100 int lcv, s, reset = 0; local in function:xyc_tick
    [all...]
xd.c 156 * LCV is a counter. If it goes to zero then we timed out.
158 #define XDC_WAIT(XDC, LCV, TIME, BITS) { \
159 (LCV) = (TIME); \
160 while ((LCV) > 0) { \
162 (LCV) = (LCV) - 1; \
499 int lcv, rqno, error; local in function:xdcattach
526 for (lcv = 0; lcv < XDC_MAXDEV; lcv++
714 int rqno, spt = 0, mb, blk, lcv, fmode, s = 0, newstate; local in function:xdattach
1690 int sz = sizeof(struct xd_iopb), lcv; local in function:xdc_submit_iorq
1841 int del = 0, lcv, retval = XD_ERR_AOK; local in function:xdc_reset
2008 int sz = sizeof(struct xd_iopb), lcv; local in function:xdc_remove_iorq
2231 int lcv, s, reset = 0; local in function:xdc_tick
    [all...]

Completed in 23 milliseconds