Searched refs:lru (Results 1 - 9 of 9) sorted by path

/freebsd-11-stable/contrib/ofed/opensm/libvendor/
H A Dosm_vendor_ibumad.c203 umad_match_t *m, *e, *old_lru, *lru = 0, *lru_smp = 0; local
231 lru = m;
237 old_lru = lru;
238 old_tid = lru->tid;
239 old_mgmt_class = lru->mgmt_class;
261 lru->tid = tid;
262 lru->mgmt_class = mgmt_class;
263 lru->v = p_madw;
264 lru->version =
/freebsd-11-stable/crypto/heimdal/lib/sqlite/
H A Dsqlite3.c6066 #define SQLITE_MUTEX_STATIC_LRU 6 /* lru page list */
10849 int iCacheCnt; /* Counter used to generate aColCache[].lru values */
10858 int lru; /* Least recently used entry has the smallest value */ member in struct:Parse::yColCache
[all...]
/freebsd-11-stable/sys/dev/drm2/ttm/
H A Dttm_bo.c121 MPASS(list_empty(&bo->lru));
168 MPASS(list_empty(&bo->lru));
171 list_add_tail(&bo->lru, &man->lru);
189 if (!list_empty(&bo->lru)) {
190 list_del_init(&bo->lru);
598 * 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-11-stable/contrib/sqlite3/
H A Dsqlite3.c8716 #define SQLITE_MUTEX_STATIC_LRU 6 /* lru page list */
50355 PgHdr1 lru; /* The beginning and end of the LRU list */ member in struct:PGroup
[all...]
/freebsd-11-stable/contrib/tcsh/
H A Dsh.proc.c106 static struct tms zru = {0, 0, 0, 0}, lru = {0, 0, 0, 0}; variable in typeref:struct:
108 static struct tms zru = {0L, 0L, 0L, 0L}, lru = {0L, 0L, 0L, 0L}; variable in typeref:struct:
1161 lru.tms_utime = pp->p_utime;
1162 lru.tms_stime = pp->p_stime;
1163 lru.tms_cutime = 0;
1164 lru.tms_cstime = 0;
1165 prusage(&zru, &lru, pp->p_etime,
/freebsd-11-stable/sys/amd64/linux32/
H A Dlinux32_machdep.c78 static void bsd_to_linux_rusage(struct rusage *ru, struct l_rusage *lru);
90 bsd_to_linux_rusage(struct rusage *ru, struct l_rusage *lru) argument
93 lru->ru_utime.tv_sec = ru->ru_utime.tv_sec;
94 lru->ru_utime.tv_usec = ru->ru_utime.tv_usec;
95 lru->ru_stime.tv_sec = ru->ru_stime.tv_sec;
96 lru->ru_stime.tv_usec = ru->ru_stime.tv_usec;
97 lru->ru_maxrss = ru->ru_maxrss;
98 lru->ru_ixrss = ru->ru_ixrss;
99 lru->ru_idrss = ru->ru_idrss;
100 lru
116 struct l_rusage lru; local
[all...]

Completed in 1147 milliseconds