| /netbsd-src/sys/dev/qbus/ |
| H A D | qduser.h | 295 int oldest; /* index to oldest queue'd request */ member 331 #define DMA_GETBEGIN(header) (&(header)->DMAreq[(header)->oldest]) 335 #define DMA_GETEND(header) (++(header)->oldest >= (header)->size \ 336 ? (header)->oldest = 0 : 0); \
|
| H A D | qd.c | 2087 header->DMAreq[header->oldest].DMAdone |= HARD_ERROR; in qddint() 2088 header->newest = header->oldest; in qddint() 2109 header->DMAreq[header->oldest].DMAdone |= REQUEST_DONE; in qddint() 2110 QDlast_DMAtype = header->DMAreq[header->oldest].DMAtype; in qddint() 3327 DMAheader[unit]->oldest = 0; in init_shared()
|
| /netbsd-src/sys/arch/vax/include/ |
| H A D | qduser.h | 302 int oldest; /* index to oldest queue'd request */ member 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); \
|
| /netbsd-src/usr.bin/systat/ |
| H A D | bufcache.c | 380 size_t i, oldest; in vc_lookup() local 383 oldest = 0; in vc_lookup() 388 if (vcache[i].vc_age < vcache[oldest].vc_age) in vc_lookup() 389 oldest = i; in vc_lookup() 402 i = oldest; in vc_lookup()
|
| /netbsd-src/sys/dev/wscons/ |
| H A D | wsdisplay_glyphcache.c | 311 int i, oldest = 1; in glyphcache_try() 315 oldest = i; in glyphcache_try() 321 b = &gc->gc_buckets[oldest]; in glyphcache_try() 325 gc->gc_attrmap[idx] = oldest; in glyphcache_try() 285 int i, oldest = 1; glyphcache_try() local
|
| /netbsd-src/usr.bin/netstat/ |
| H A D | vtw.c | 321 if (vtw_tcpv4[i].oldest.v4) in show_vtw_v4() 322 vtw_tcpv4[i].oldest.v4 += delta; in show_vtw_v4() 428 if (vtw_tcpv6[i].oldest.v6) in show_vtw_v6() 429 vtw_tcpv6[i].oldest.v6 += delta; in show_vtw_v6()
|
| /netbsd-src/external/bsd/unbound/dist/services/cache/ |
| H A D | infra.c | 909 int i, oldest; in infra_rate_find_second_or_none() local 916 oldest = 0; in infra_rate_find_second_or_none() 918 if(d->timestamp[i] < d->timestamp[oldest]) in infra_rate_find_second_or_none() 919 oldest = i; in infra_rate_find_second_or_none() 921 d->timestamp[oldest] = t; in infra_rate_find_second_or_none() 922 d->qps[oldest] = 0; in infra_rate_find_second_or_none() 923 return &(d->qps[oldest]); in infra_rate_find_second_or_none()
|
| /netbsd-src/bin/ksh/ |
| H A D | jobs.c | 1049 Job *jl, *oldest; local 1060 oldest = (Job *) 0; 1063 && (!oldest || jl->age < oldest->age)) 1064 oldest = jl; 1065 if (!oldest) { 1073 remove_job(oldest, "zombie");
|
| /netbsd-src/sys/netinet/ |
| H A D | tcp_vtw.c | 64 * runs out, VTW makes room by discarding old vestigial PCBs, oldest first. 685 /* We only delete the oldest entry. in vtw_del() 687 if (vtw != ctl->oldest.v) in vtw_del() 697 ctl->oldest.v = 0; in vtw_del() 699 ctl->oldest.v = vtw_next(ctl, vtw); 1476 if (!ctl->oldest.v) in vtw_alloc() 1477 ctl->oldest.v = vtw; in vtw_alloc() 1491 if (!ctl->oldest.v) { in vtw_age() 1496 for (vtw = ctl->oldest.v; vtw && ctl->nalloc; ) { in vtw_age() 1508 ctl->oldest in vtw_age() [all...] |
| H A D | tcp_vtw.h | 258 /**/ oldest; /* ^ to oldest */ member
|
| /netbsd-src/sys/netatalk/ |
| H A D | aarp.c | 542 int oldest = -1; in aarptnew() local 557 if ((int) aat->aat_timer > oldest) { in aarptnew() 558 oldest = aat->aat_timer; in aarptnew()
|
| /netbsd-src/external/mpl/bind/dist/lib/isc/ |
| H A D | log.c | 1316 * First find all the logfiles and remove the oldest ones in roll_increment() 1632 isc_time_t oldest; in isc_log_doit() 1640 * 'oldest' is the age of the oldest in isc_log_doit() 1644 oldest = isc_time_now(); in isc_log_doit() 1645 if (isc_time_subtract(&oldest, &interval, in isc_log_doit() 1646 &oldest) != ISC_R_SUCCESS) in isc_log_doit() 1660 &oldest) < 0) in isc_log_doit() 1664 isc_time_t oldest; isc_log_doit() local
|
| H A D | tls.c | 1484 /* Cache entries within the bucket (from the oldest to the newest). */ in isc_tlsctx_client_session_cache_detach() 1518 * LRU-manner, so that the oldest entry might be efficiently in ssl_session_seems_resumable() 1715 * Cache overrun. We need to remove the oldest entry from the 1718 client_session_cache_entry_t *restrict oldest; 1721 oldest = ISC_LIST_HEAD(cache->lru_entries); 1722 client_cache_entry_delete(cache, oldest); 1587 client_session_cache_entry_t *restrict oldest; isc_tlsctx_client_session_cache_keep() local
|
| /netbsd-src/external/mpl/dhcp/bind/dist/lib/isc/ |
| H A D | log.c | 1656 isc_time_t oldest; in isc_log_doit() local 1668 TIME_NOW(&oldest); in isc_log_doit() 1669 if (isc_time_subtract(&oldest, &interval, in isc_log_doit() 1670 &oldest) != ISC_R_SUCCESS) in isc_log_doit() 1684 &oldest) < 0) in isc_log_doit()
|
| /netbsd-src/sys/dev/wsfb/ |
| H A D | genfb.c | 1143 int oldest = 1; in genfb_putchar() local 1147 oldest = i; in genfb_putchar() 1153 b = &scp->sc_buckets[oldest]; in genfb_putchar() 1157 scp->sc_attrmap[idx] = oldest; in genfb_putchar()
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/gcn/ |
| H A D | gcn.c | 4640 int oldest = 0; in gcn_md_reorg() local 4666 for (int i = oldest; i < oldest + max_waits; i++) in gcn_md_reorg() 4744 for (int i = oldest + max_waits - 1; i > oldest; i--) in gcn_md_reorg() 4759 back[oldest].insn = insn; in gcn_md_reorg() 4760 back[oldest].unit = iunit; in gcn_md_reorg() 4761 back[oldest].delayeduse = idelayeduse; in gcn_md_reorg() 4762 back[oldest].writes = iwrites; in gcn_md_reorg() 4763 back[oldest].reads = ireads; in gcn_md_reorg() 4764 back[oldest].age = 0; in gcn_md_reorg() 4765 oldest = (oldest + 1) % max_waits; in gcn_md_reorg()
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/gcn/ |
| H A D | gcn.cc | 4893 int oldest = 0; in gcn_md_reorg() local 4919 for (int i = oldest; i < oldest + max_waits; i++) in gcn_md_reorg() 4997 for (int i = oldest + max_waits - 1; i > oldest; i--) in gcn_md_reorg() 5012 back[oldest].insn = insn; in gcn_md_reorg() 5013 back[oldest].unit = iunit; in gcn_md_reorg() 5014 back[oldest].delayeduse = idelayeduse; in gcn_md_reorg() 5015 back[oldest].writes = iwrites; in gcn_md_reorg() 5016 back[oldest].reads = ireads; in gcn_md_reorg() 5017 back[oldest].age = 0; in gcn_md_reorg() 5018 oldest = (oldest + 1) % max_waits; in gcn_md_reorg()
|
| /netbsd-src/external/lgpl3/gmp/dist/mpn/s390_64/ |
| H A D | README | 32 z10, and z196. The current GMP code was optimised for the two oldest,
|
| /netbsd-src/external/bsd/nsd/dist/ |
| H A D | ixfr.c | 1563 struct ixfr_data* oldest = ixfr_data_first(ixfr); in zone_ixfr_remove_oldest() local 1564 if(ixfr->oldest_serial == oldest->oldserial) { in zone_ixfr_remove_oldest() 1566 struct ixfr_data* next = ixfr_data_next(ixfr, oldest); in zone_ixfr_remove_oldest() 1570 else ixfr->oldest_serial = oldest->newserial; in zone_ixfr_remove_oldest() 1575 if(ixfr->newest_serial == oldest->oldserial) { in zone_ixfr_remove_oldest() 1578 zone_ixfr_remove(ixfr, oldest); in zone_ixfr_remove_oldest()
|
| /netbsd-src/external/mpl/bind/dist/lib/ns/ |
| H A D | client.c | 211 ns_client_t *oldest; in ns_client_extendederror() 215 oldest = ISC_LIST_HEAD(client->manager->recursing); in ns_client_extendederror() 216 if (oldest != NULL) { in ns_client_extendederror() 217 ISC_LIST_UNLINK(client->manager->recursing, oldest, rlink); in ns_client_extendederror() 218 ns_query_cancel(oldest); in ns_client_extendederror() 152 ns_client_t *oldest; ns_client_killoldestquery() local
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/ |
| H A D | io_context | 326 // Cancel oldest outstanding wait for __t 457 // Cancel the oldest wait operation initiated by __timer.
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/ |
| H A D | io_context | 331 // Cancel oldest outstanding wait for __t 462 // Cancel the oldest wait operation initiated by __timer.
|
| /netbsd-src/external/bsd/openldap/dist/libraries/liblmdb/ |
| H A D | mdb.c | 2103 txnid_t mr, oldest = txn->mt_txnid - 1; in mdb_find_oldest() local 2109 if (oldest > mr) in mdb_find_oldest() 2110 oldest = mr; in mdb_find_oldest() 2114 return oldest; in mdb_find_oldest() 2171 txnid_t oldest = 0, last; in mdb_page_alloc() local 2217 oldest = env->me_pgoldest; in mdb_page_alloc() 2232 if (oldest <= last) { in mdb_page_alloc() 2234 oldest = mdb_find_oldest(txn); in mdb_page_alloc() 2235 env->me_pgoldest = oldest; in mdb_page_alloc() 2238 if (oldest <= last) in mdb_page_alloc() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/ |
| H A D | NOTES.WIN | 47 the other hand oldest one is known not to work. Everything between
|
| /netbsd-src/external/apache2/llvm/dist/clang/docs/ |
| H A D | ReleaseNotes.rst | 125 - The oldest supported GNU libstdc++ is now 4.8.3 (released 2014-05-22).
|