HomeSort by: relevance | last modified time | path
    Searched refs:oldest (Results 1 - 12 of 12) sorted by relevancy

  /src/sys/dev/qbus/
qduser.h 295 int oldest; /* index to oldest queue'd request */ member in struct:DMAreq_header
328 * or oldest (GET) request */
331 #define DMA_GETBEGIN(header) (&(header)->DMAreq[(header)->oldest])
335 #define DMA_GETEND(header) (++(header)->oldest >= (header)->size \
336 ? (header)->oldest = 0 : 0); \
qd.c 1104 * extract the oldest event from the event queue
2087 header->DMAreq[header->oldest].DMAdone |= HARD_ERROR;
2088 header->newest = header->oldest;
2109 header->DMAreq[header->oldest].DMAdone |= REQUEST_DONE;
2110 QDlast_DMAtype = header->DMAreq[header->oldest].DMAtype;
3327 DMAheader[unit]->oldest = 0;
  /src/sys/arch/vax/include/
qduser.h 302 int oldest; /* index to oldest queue'd request */ member in struct:DMAreq_header
335 * or oldest (GET) request */
338 #define DMA_GETBEGIN(header) (&(header)->DMAreq[(header)->oldest])
342 #define DMA_GETEND(header) (++(header)->oldest >= (header)->size \
343 ? (header)->oldest = 0 : 0); \
  /src/sys/dev/wscons/
wsdisplay_glyphcache.c 311 int i, oldest = 1; local in function:glyphcache_try
315 oldest = i;
321 b = &gc->gc_buckets[oldest];
325 gc->gc_attrmap[idx] = oldest;
  /src/usr.bin/systat/
bufcache.c 380 size_t i, oldest; local in function:vc_lookup
383 oldest = 0;
388 if (vcache[i].vc_age < vcache[oldest].vc_age)
389 oldest = i;
402 i = oldest;
  /src/usr.bin/netstat/
vtw.c 321 if (vtw_tcpv4[i].oldest.v4)
322 vtw_tcpv4[i].oldest.v4 += delta;
428 if (vtw_tcpv6[i].oldest.v6)
429 vtw_tcpv6[i].oldest.v6 += delta;
  /src/bin/ksh/
jobs.c 1049 Job *jl, *oldest; local in function:j_set_async
1060 oldest = (Job *) 0;
1063 && (!oldest || jl->age < oldest->age))
1064 oldest = jl;
1065 if (!oldest) {
1073 remove_job(oldest, "zombie");
  /src/sys/netatalk/
aarp.c 542 int oldest = -1; local in function:aarptnew
557 if ((int) aat->aat_timer > oldest) {
558 oldest = aat->aat_timer;
  /src/sys/netinet/
tcp_vtw.h 258 /**/ oldest; /* ^ to oldest */ member in struct:vtw_ctl
tcp_vtw.c 64 * runs out, VTW makes room by discarding old vestigial PCBs, oldest first.
685 /* We only delete the oldest entry.
687 if (vtw != ctl->oldest.v)
697 ctl->oldest.v = 0;
699 ctl->oldest.v = vtw_next(ctl, vtw);
1476 if (!ctl->oldest.v)
1477 ctl->oldest.v = vtw;
1491 if (!ctl->oldest.v) {
1496 for (vtw = ctl->oldest.v; vtw && ctl->nalloc; ) {
1508 ctl->oldest.v = vtw = vtw_next(ctl, vtw)
    [all...]
  /src/sys/dev/wsfb/
genfb.c 1151 int oldest = 1; local in function:genfb_putchar
1155 oldest = i;
1161 b = &scp->sc_buckets[oldest];
1165 scp->sc_attrmap[idx] = oldest;
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common_interceptors.inc 3571 // Workaround a bug in glibc where dlsym(RTLD_NEXT, ...) returns the oldest

Completed in 27 milliseconds