/external/grpc-grpc/src/cpp/server/load_reporter/ |
D | load_reporter.cc | 254 auto oldest = feedback_records_.begin(); in GenerateLoadBalancingFeedback() local 256 while (std::distance(oldest, newest) > 0 && in GenerateLoadBalancingFeedback() 257 (newest->cpu_limit == 0 || oldest->cpu_limit == 0)) { in GenerateLoadBalancingFeedback() 261 if (oldest->cpu_limit == 0) ++oldest; in GenerateLoadBalancingFeedback() 263 if (std::distance(oldest, newest) < 1 || in GenerateLoadBalancingFeedback() 264 oldest->end_time == newest->end_time || in GenerateLoadBalancingFeedback() 265 newest->cpu_limit == oldest->cpu_limit) { in GenerateLoadBalancingFeedback() 270 for (auto p = newest; p != oldest; --p) { in GenerateLoadBalancingFeedback() 276 double cpu_usage = newest->cpu_usage - oldest->cpu_usage; in GenerateLoadBalancingFeedback() 277 double cpu_limit = newest->cpu_limit - oldest->cpu_limit; in GenerateLoadBalancingFeedback() [all …]
|
/external/webrtc/webrtc/base/ |
D | diskcache.cc | 227 EntryMap::iterator oldest = map_.end(); in CheckLimit() local 231 oldest = it; in CheckLimit() 234 if (oldest == map_.end()) { in CheckLimit() 238 for (EntryMap::iterator it = oldest++; it != map_.end(); ++it) { in CheckLimit() 239 if (it->second.last_modified < oldest->second.last_modified) { in CheckLimit() 240 oldest = it; in CheckLimit() 243 if (!DeleteResource(oldest->first)) { in CheckLimit()
|
/external/libchrome/base/task/sequence_manager/ |
D | work_queue_sets.cc | 129 const OldestTaskEnqueueOrder& oldest = work_queue_heaps_[set_index].Min(); in GetOldestQueueAndEnqueueOrderInSet() local 130 *out_work_queue = oldest.value; in GetOldestQueueAndEnqueueOrderInSet() 131 *out_enqueue_order = oldest.key; in GetOldestQueueAndEnqueueOrderInSet() 133 DCHECK(oldest.value->GetFrontTaskEnqueueOrder(&enqueue_order) && in GetOldestQueueAndEnqueueOrderInSet() 134 oldest.key == enqueue_order); in GetOldestQueueAndEnqueueOrderInSet()
|
/external/dnsmasq/src/ |
D | forward.c | 843 struct frec *f, *oldest, *target; in get_new_frec() local 848 for (f = daemon->frec_list, oldest = NULL, target = NULL, count = 0; f; f = f->next, count++) in get_new_frec() 857 if (!oldest || difftime(f->time, oldest->time) <= 0) oldest = f; in get_new_frec() 867 if (oldest && ((int) difftime(now, oldest->time)) >= TIMEOUT) { in get_new_frec() 870 if (difftime(now, oldest->time) < 2 * TIMEOUT && count <= daemon->ftabsize && in get_new_frec() 875 free_frec(oldest); in get_new_frec() 876 oldest->time = now; in get_new_frec() 878 return oldest; in get_new_frec() 883 if (oldest && wait) *wait = oldest->time + (time_t) TIMEOUT - now; in get_new_frec()
|
/external/syzkaller/vendor/golang.org/x/net/internal/timeseries/ |
D | timeseries.go | 89 oldest int // index to oldest bucketed Observable member 98 l.oldest = 0 204 bucketNumber := (level.oldest + index) % ts.numBuckets 246 level.newest = level.oldest 247 level.oldest = (level.oldest + 1) % ts.numBuckets 426 srcValue := l.buckets[(srcIndex+l.oldest)%ts.numBuckets]
|
/external/u-boot/fs/yaffs2/ |
D | yaffs_yaffs2.c | 144 u32 oldest = 0; in yaffs2_find_refresh_block() local 149 return oldest; in yaffs2_find_refresh_block() 155 return oldest; in yaffs2_find_refresh_block() 164 return oldest; in yaffs2_find_refresh_block() 178 if (oldest < 1 || bi->seq_number < oldest_seq) { in yaffs2_find_refresh_block() 179 oldest = b; in yaffs2_find_refresh_block() 186 if (oldest > 0) { in yaffs2_find_refresh_block() 189 dev->refresh_count, oldest, oldest_seq); in yaffs2_find_refresh_block() 192 return oldest; in yaffs2_find_refresh_block()
|
/external/speex/libspeexdsp/ |
D | jitter.c | 477 spx_uint32_t oldest=0; in jitter_buffer_get() local 480 if (jitter->packets[i].data && (!found || LT32(jitter->packets[i].timestamp,oldest))) in jitter_buffer_get() 482 oldest = jitter->packets[i].timestamp; in jitter_buffer_get() 489 jitter->pointer_timestamp = oldest; in jitter_buffer_get() 490 jitter->next_stop = oldest; in jitter_buffer_get()
|
/external/tensorflow/tensorflow/python/training/ |
D | checkpoint_state.proto | 11 // Paths to all not-yet-deleted model checkpoints, sorted from oldest to
|
/external/xz-java/ |
D | build.properties | 17 # The source code is Java 5 compatible but the oldest -source/-target pair
|
/external/mksh/src/ |
D | jobs.c | 1062 Job *jl, *oldest; in j_set_async() local 1073 oldest = NULL; in j_set_async() 1076 (!oldest || jl->age < oldest->age)) in j_set_async() 1077 oldest = jl; in j_set_async() 1078 if (!oldest) { in j_set_async() 1087 remove_job(oldest, "zombie"); in j_set_async()
|
/external/webrtc/webrtc/p2p/base/ |
D | p2ptransportchannel.cc | 1270 Connection* oldest = nullptr; in FindNextPingableConnection() local 1284 if (!oldest || (conn->last_ping_sent() < oldest->last_ping_sent())) { in FindNextPingableConnection() 1285 oldest = conn; in FindNextPingableConnection() 1294 return oldest; in FindNextPingableConnection()
|
/external/python/cpython3/Misc/ |
D | README | 12 HISTORY News from previous releases -- oldest last
|
/external/u-boot/scripts/coccinelle/net/ |
D | mdio_register.cocci | 3 //# Stop using the oldest mii interface in drivers
|
/external/freetype/docs/ |
D | INSTALL.MAC | 16 should specify the oldest version of Mac OS you want the code to run
|
/external/python/cpython3/Doc/library/ |
D | gc.rst | 99 into the next older generation. Since generation ``2`` is the oldest 192 oldest generation. 242 "generation": The oldest generation being collected.
|
D | tracemalloc.rst | 653 Sequence of :class:`Frame` instances sorted from the oldest frame to the 667 Frames are now sorted from the oldest to the most recent, instead of most recent to oldest. 674 is positive. Otherwise, format the ``abs(limit)`` oldest frames.
|
/external/python/cpython2/Misc/ |
D | README | 18 HISTORY News from previous releases -- oldest last
|
/external/parameter-framework/upstream/tools/coverage/ |
D | README.md | 60 - A PFW start log line must be at the head of the oldest log: no
|
/external/perfetto/protos/perfetto/trace/ftrace/ |
D | ftrace_stats.proto | 44 // The timestamp for the oldest event still in the ring buffer.
|
/external/flatbuffers/android/jni/ |
D | build_flatc.bat | 27 rem Newest and oldest version of Visual Studio that it's possible to select.
|
/external/icu/icu4c/source/samples/ufortune/resources/ |
D | root.txt | 210 about whose profession was the oldest. In the course of their 212 the doctor said, \"The medical profession is clearly the oldest, because
|
/external/autotest/server/site_tests/firmware_Cr50Update/ |
D | control.post_install | 20 The test will rollback to the oldest Cr50 image and then verify each update to
|
D | control | 20 The test will rollback to the oldest Cr50 image and then verify each update to
|
/external/wpa_supplicant_8/src/p2p/ |
D | p2p.c | 417 struct p2p_device *dev, *oldest = NULL; in p2p_create_device() local 426 if (oldest == NULL || in p2p_create_device() 427 os_reltime_before(&dev->last_seen, &oldest->last_seen)) in p2p_create_device() 428 oldest = dev; in p2p_create_device() 430 if (count + 1 > p2p->cfg->max_peers && oldest) { in p2p_create_device() 432 dl_list_del(&oldest->list); in p2p_create_device() 433 p2p_device_free(p2p, oldest); in p2p_create_device()
|
/external/python/cpython2/Doc/library/ |
D | gc.rst | 85 into the next older generation. Since generation ``2`` is the oldest
|