/src/sbin/fsck_ffs/ |
quota2.c | 198 int qidx = off2qindex((blk == 0) ? quota2_full_header_size : 0, boff); local in function:quota2_list_check 201 if (!isset(quotamap[blk], qidx)) { 204 clrbit(quotamap[blk], qidx); 217 setbit(quotamap[blk], qidx);
|
/src/sys/uvm/ |
uvm_pdpolicy_clockpro.c | 147 clockpro_setq(struct vm_page *pg, int qidx) 149 KASSERT(qidx >= CLOCKPRO_NOQUEUE); 150 KASSERT(qidx <= CLOCKPRO_NQUEUE); 152 pg->pqflags = (pg->pqflags & ~PQ_QMASK) | (qidx * PQ_QFACTOR); 158 int qidx; local in function:clockpro_getq 160 qidx = (pg->pqflags & PQ_QMASK) / PQ_QFACTOR; 161 KASSERT(qidx >= CLOCKPRO_NOQUEUE); 162 KASSERT(qidx <= CLOCKPRO_NQUEUE); 163 return qidx; 184 clockpro_queue(struct clockpro_state *s, int qidx) 839 int qidx; local in function:clockpro_pagequeue 876 int qidx; local in function:clockpro_pagerequeue [all...] |
/src/sys/kern/ |
subr_vmem.c | 1140 int qidx = (size + vm->vm_quantum_mask) >> vm->vm_quantum_shift; local in function:vmem_alloc 1141 qcache_t *qc = vm->vm_qcache[qidx - 1]; 1393 int qidx = (size + vm->vm_quantum_mask) >> vm->vm_quantum_shift; local in function:vmem_free 1394 qcache_t *qc = vm->vm_qcache[qidx - 1];
|
/src/sys/dev/pci/ |
if_wm.c | 6176 wm_softint_establish_queue(struct wm_softc *sc, int qidx, int intr_idx) 6178 struct wm_queue *wmq = &sc->sc_queue[qidx]; 6180 wmq->wmq_id = qidx; 6234 int qidx, error, intr_idx, txrx_established; local in function:wm_setup_msix 6268 for (qidx = 0; qidx < sc->sc_nqueues; qidx++) { 6269 struct wm_queue *wmq = &sc->sc_queue[qidx]; 6278 device_xname(sc->sc_dev), qidx); 6302 if (wm_softint_establish_queue(sc, qidx, intr_idx) != 0 7459 for (int qidx = 0; qidx < sc->sc_nqueues; qidx++) { local in function:wm_init_locked 7586 int qidx; local in function:wm_init_locked 7652 int i, qidx; local in function:wm_stop_locked [all...] |