Searched refs:lru (Results 1 - 12 of 12) sorted by relevance

/freebsd-9.3-release/sys/amd64/linux32/
H A Dlinux32_machdep.c113 bsd_to_linux_rusage(struct rusage *ru, struct l_rusage *lru) argument
116 lru->ru_utime.tv_sec = ru->ru_utime.tv_sec;
117 lru->ru_utime.tv_usec = ru->ru_utime.tv_usec;
118 lru->ru_stime.tv_sec = ru->ru_stime.tv_sec;
119 lru->ru_stime.tv_usec = ru->ru_stime.tv_usec;
120 lru->ru_maxrss = ru->ru_maxrss;
121 lru->ru_ixrss = ru->ru_ixrss;
122 lru->ru_idrss = ru->ru_idrss;
123 lru->ru_isrss = ru->ru_isrss;
124 lru
1040 struct l_rusage lru; local
[all...]
/freebsd-9.3-release/lib/libc/db/mpool/
H A Dmpool.libtp53 #define MRU bufhdr_table[*buf_lru].lru.prev
130 bhp->lru.next = i+1;
131 bhp->lru.prev = i-1;
137 bufhdr_table[0].lru.prev = NUM_BUFS-1;
138 bufhdr_table[NUM_BUFS-1].lru.next = 0;
195 bhp = LISTP_NEXTP (bufhdr_table, lru, bhp ) ) {
197 if ( bhp->lru.next == lruid ) {
727 bhp->lru.next, bhp->lru.prev,
739 bhp->lru
[all...]
/freebsd-9.3-release/contrib/bind9/lib/dns/include/dns/
H A Drrl.h112 ISC_LINK(dns_rrl_entry_t) lru; member in struct:dns_rrl_entry
233 ISC_LIST(dns_rrl_entry_t) lru; member in struct:dns_rrl
H A Dtsig.h72 ISC_LIST(dns_tsigkey_t) lru; member in struct:dns_tsig_keyring
/freebsd-9.3-release/contrib/bind9/lib/dns/
H A Drrl.c169 for (e_old = ISC_LIST_TAIL(rrl->lru), i = 0;
172 e_old = ISC_LIST_PREV(e_old, lru), ++i)
246 ISC_LIST_INITANDAPPEND(rrl->lru, e, lru);
340 if (ISC_LIST_HEAD(rrl->lru) != e) {
342 rrl->last_logged = ISC_LIST_PREV(e, lru);
343 ISC_LIST_UNLINK(rrl->lru, e, lru);
344 ISC_LIST_PREPEND(rrl->lru, e, lru);
[all...]
H A Dtsig.c228 ISC_LIST_UNLINK(tkey->ring->lru, tkey, link);
243 tkey->ring->lru.tail != tkey)
245 ISC_LIST_UNLINK(tkey->ring->lru, tkey, link);
246 ISC_LIST_APPEND(tkey->ring->lru, tkey, link);
283 ISC_LIST_INITANDAPPEND(ring->lru, tkey, link);
285 remove_fromring(ISC_LIST_HEAD(ring->lru));
1778 ISC_LIST_UNLINK(key->ring->lru, key, link);
1814 ISC_LIST_INIT(ring->lru);
/freebsd-9.3-release/contrib/ofed/management/opensm/libvendor/
H A Dosm_vendor_ibumad.c156 umad_match_t *m, *e, *old_lru, *lru = 0; local
175 lru = m;
179 old_lru = lru;
180 old_tid = lru->tid;
187 lru->tid = tid;
188 lru->v = p_madw;
189 lru->version =
/freebsd-9.3-release/sys/dev/drm2/ttm/
H A Dttm_bo.c120 MPASS(list_empty(&bo->lru));
167 MPASS(list_empty(&bo->lru));
170 list_add_tail(&bo->lru, &man->lru);
188 if (!list_empty(&bo->lru)) {
189 list_del_init(&bo->lru);
597 * If bo idle, remove from delayed- and lru lists, and unref.
871 list_for_each_entry(bo, &man->lru, lru) {
1259 INIT_LIST_HEAD(&bo->lru);
[all...]
H A Dttm_bo_api.h158 * @lru: List head for the lru list.
227 struct list_head lru; member in struct:ttm_buffer_object
369 * Release @count lru list references to this buffer object.
379 * Add this bo to the relevant mem type lru and, if it's backed by
391 * Remove this bo from all lru lists used to lookup and reserve an object.
394 * avoid recursive reservation from lru lists.
606 * Evicts all buffers on the lru list of the memory type.
H A Dttm_bo_driver.h252 * @use_io_reserve_lru: Use an lru list to try to unreserve io_mem_regions
254 * @io_reserve_lru: Optional lru list for unreserving io mem regions.
257 * @lru: The lru list for this memory type.
295 struct list_head lru; member in struct:ttm_mem_type_manager
474 * @lru_lock: Spinlock protecting the bo subsystem lru lists.
522 * lru_lock: Spinlock that protects the buffer+device lru lists and
549 * Protected by the global:lru lock.
786 * locking it for validation) and removes it from lru lists, while taking
835 * Will not remove reserved buffers from the lru list
[all...]
H A Dttm_bo_util.c418 INIT_LIST_HEAD(&fbo->lru);
/freebsd-9.3-release/contrib/tcsh/
H A Dsh.proc.c112 static struct tms zru = {0, 0, 0, 0}, lru = {0, 0, 0, 0};
114 static struct tms zru = {0L, 0L, 0L, 0L}, lru = {0L, 0L, 0L, 0L};
1133 lru.tms_utime = pp->p_utime;
1134 lru.tms_stime = pp->p_stime;
1135 lru.tms_cutime = 0;
1136 lru.tms_cstime = 0;
1137 prusage(&zru, &lru, pp->p_etime,

Completed in 204 milliseconds