/src/games/hack/ |
def.obj.h | 88 long age; /* creation date */ member in struct:obj
|
/src/sbin/fsck_lfs/ |
bufcache.c | 250 * If not enough space, free blocks from the AGE and LRU lists 306 int age; local in function:brelse 312 age = bp->b_flags & B_AGE; 322 } else if (age) {
|
/src/sys/external/bsd/drm/dist/shared-core/ |
i915_mem.c | 55 int age; local in function:mark_block 63 age = ++sarea_priv->texAge; 66 /* Mark the regions with the new flag and update their age. Move 71 list[i].age = age;
|
r128_drv.h | 59 unsigned int age; member in struct:drm_r128_freelist 127 u32 age; member in struct:drm_r128_buf_priv
|
savage_drv.h | 60 drm_savage_age_t age; member in struct:drm_savage_buf_priv 65 drm_savage_age_t age; member in struct:drm_savage_dma_page 567 #define SET_AGE( age, e, w ) do { \ 568 (age)->event = e; \ 569 (age)->wrap = w; \ 572 #define TEST_AGE( age, e, w ) \ 573 ( (age)->wrap < (w) || ( (age)->wrap == (w) && (age)->event <= (e) ) )
|
mga_drv.h | 67 drm_mga_age_t age; member in struct:drm_mga_freelist 360 #define SET_AGE( age, h, w ) \ 362 (age)->head = h; \ 363 (age)->wrap = w; \ 366 #define TEST_AGE( age, h, w ) ( (age)->wrap < w || \ 367 ( (age)->wrap == w && \ 368 (age)->head < h ) ) 374 entry->age.head = (dev_priv->prim.tail + \ 376 entry->age.wrap = dev_priv->sarea_priv->last_wrap; [all...] |
drm.h | 154 unsigned int age; member in struct:drm_tex_region
|
radeon_drv.h | 186 unsigned int age; member in struct:drm_radeon_freelist 413 u32 age; member in struct:drm_radeon_buf_priv 2045 #define RADEON_DISPATCH_AGE( age ) do { \ 2047 OUT_RING( age ); \ 2050 #define RADEON_FRAME_AGE( age ) do { \ 2052 OUT_RING( age ); \ 2055 #define RADEON_CLEAR_AGE( age ) do { \ 2057 OUT_RING( age ); \ 2060 #define R600_DISPATCH_AGE(age) do { \ 2063 OUT_RING(age); \ [all...] |
/src/libexec/ftpd/ |
conf.c | 522 int age; local in function:show_chdir_messages 582 age = 365 * t->tm_year + t->tm_yday; 584 age -= 365 * t->tm_year + t->tm_yday; 586 ctime(&then), age, PLURAL(age));
|
/src/usr.bin/newsyslog/ |
newsyslog.c | 345 * maximum age specification. Handle it. 359 warnx("config line %d: bad log age", lineno); 430 int age, trim; local in function:log_examine 481 * Get the age (expressed in hours) of the current log file with 484 age = -1; 490 age = (int)(now - sb.st_mtime + 1800) / 3600; 500 * need at least one historical log file to determine the `age' of 506 if (log->maxage >= 0 && (age >= log->maxage || age < 0)) { 508 reason = "log age > interval" [all...] |
/src/bin/ksh/ |
jobs.c | 140 int_least32_t age; /* number of jobs started */ member in struct:job 488 j->age = ++njobs; 1063 && (!oldest || jl->age < oldest->age))
|
/src/libexec/lfs_cleanerd/ |
lfs_cleanerd.c | 746 int64_t age, benefit, cost; local in function:calc_cb 749 age = (now < t->lastmod ? 0 : now - t->lastmod); 801 t->priority = (256 * benefit * age) / cost;
|
/src/sbin/routed/ |
table.c | 1006 age(S_ADDR(INFO_GATE(info))); 2034 /* Check the age of an individual route. 2047 /* age all of the spare routes, including the primary route 2071 /* age failing routes 2112 age(naddr bad_gate) function in typeref:typename:void 2117 /* If not listening to RIP, there is no need to age the routes in 2159 /* Age routes. */
|
/src/sys/external/bsd/drm2/dist/include/uapi/drm/ |
via_drm.h | 184 int age; /* tracked by clients to update local LRU's */ member in struct:_drm_via_tex_region
|
i810_drm.h | 155 int age; /* tracked by clients to update local LRU's */ member in struct:_drm_i810_tex_region 169 * age different to the one you set, then you are mistaken and 175 * in the same lru which is used to age their own textures, 187 int last_dispatch; /* age of the most recently dispatched buffer */
|
drm.h | 142 unsigned int age; member in struct:drm_tex_region
|
/src/sys/net80211/ |
ieee80211_output.c | 2127 int qlen, age; local in function:ieee80211_pwrsave 2156 age = ((ni->ni_intval * ic->ic_bintval) << 2) / 1024; /* TU -> secs */ 2157 _IEEE80211_NODE_SAVEQ_ENQUEUE(ni, m, qlen, age); 2161 "[%s] save frame with age %d, %u now queued\n", 2162 ether_sprintf(ni->ni_macaddr), age, qlen);
|
/src/usr.sbin/route6d/ |
route6d.c | 171 static int aflag = 0; /* age out even the statically defined routes */ 498 * 1. age out the learned route. remove it if necessary. 501 * to invoke this function in every 1 or 5 or 10 seconds only to age the 512 /* age the RIP routes */ 1202 * do not update age value. Do nothing. 1744 /* age route for interface address */ 1765 trace(1, "\troute found, age it\n"); 1825 /* age route for interface address */ 1838 trace(1, "\troute found, age it\n"); 1852 /* age route for p2p destination * 2802 time_t t, age; local in function:rtdump [all...] |
/src/sys/external/bsd/drm2/dist/drm/r128/ |
r128_drv.h | 71 unsigned int age; member in struct:drm_r128_freelist 139 u32 age; member in struct:drm_r128_buf_priv
|
/src/sys/external/bsd/drm2/dist/drm/savage/ |
savage_drv.h | 68 drm_savage_age_t age; member in struct:drm_savage_buf_priv 73 drm_savage_age_t age; member in struct:drm_savage_dma_page 574 #define SET_AGE( age, e, w ) do { \ 575 (age)->event = e; \ 576 (age)->wrap = w; \ 579 #define TEST_AGE( age, e, w ) \ 580 ( (age)->wrap < (w) || ( (age)->wrap == (w) && (age)->event <= (e) ) )
|
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
vmwgfx_drv.h | 228 size_t age; member in struct:vmw_cursor_snooper
|
/src/sys/external/bsd/drm2/dist/drm/mga/ |
mga_drv.h | 84 drm_mga_age_t age; member in struct:drm_mga_freelist 358 #define SET_AGE(age, h, w) \ 360 (age)->head = h; \ 361 (age)->wrap = w; \ 364 #define TEST_AGE(age, h, w) ((age)->wrap < w || \ 365 ((age)->wrap == w && \ 366 (age)->head < h)) 372 entry->age.head = (dev_priv->prim.tail + \ 374 entry->age.wrap = dev_priv->sarea_priv->last_wrap; [all...] |
/src/sys/net/ |
if_wg.c | 2902 uint32_t age; local in function:wg_handle_msg_data 2948 age = time_uptime32 - wgs->wgs_time_established; 2949 if (__predict_false(age >= wg_reject_after_time)) { 2951 wgmd->wgmd_receiver, age); 3509 uint32_t age; local in function:wg_task_destroy_prev_session 3524 ((age = (time_uptime32 - wgs->wgs_time_established)) >= 3526 WG_DLOG("destroying past session %"PRIu32" sec old\n", age); 3542 ((age = (time_uptime32 - wgs->wgs_time_established)) >= 3544 WG_DLOG("destroying current session %"PRIu32" sec old\n", age);
|