Home
last modified time | relevance | path

Searched refs:min_time (Results 1 – 14 of 14) sorted by relevance

/external/chromium_org/mojo/public/utility/
Drun_loop.cc185 MojoTimeTicks min_time = kInvalidTimeTicks; in GetWaitState() local
191 (min_time == kInvalidTimeTicks || i->second.deadline < min_time)) { in GetWaitState()
192 min_time = i->second.deadline; in GetWaitState()
195 if (min_time != kInvalidTimeTicks) { in GetWaitState()
197 if (min_time < now) in GetWaitState()
200 wait_state.deadline = static_cast<MojoDeadline>(min_time - now); in GetWaitState()
/external/chromium_org/mojo/common/
Dmessage_pump_mojo.cc207 base::TimeTicks min_time = run_state_->delayed_work_time; in GetDeadlineForWait() local
210 if (min_time.is_null() && i->second.deadline < min_time) in GetDeadlineForWait()
211 min_time = i->second.deadline; in GetDeadlineForWait()
213 return min_time.is_null() ? MOJO_DEADLINE_INDEFINITE : in GetDeadlineForWait()
216 (min_time - base::TimeTicks::Now()).InMicroseconds())); in GetDeadlineForWait()
/external/chromium_org/cc/debug/
Drasterize_and_record_benchmark_impl.cc86 base::TimeDelta min_time = in RunOnLayer() local
105 if (duration < min_time) in RunOnLayer()
106 min_time = duration; in RunOnLayer()
111 rasterize_results_.total_best_time += min_time; in RunOnLayer()
Drasterize_and_record_benchmark.cc121 base::TimeDelta min_time = in RunOnLayer() local
128 if (duration < min_time) in RunOnLayer()
129 min_time = duration; in RunOnLayer()
134 record_results_.total_best_time += min_time; in RunOnLayer()
/external/chromium_org/content/common/
Dcc_messages_perftest.cc39 base::TimeDelta min_time; in RunTest() local
49 if (now - start < min_time || min_time == base::TimeDelta()) in RunTest()
50 min_time = now - start; in RunTest()
58 min_time.InMillisecondsF() / kTimeCheckInterval * 1000, in RunTest()
/external/chromium/chrome/browser/chromeos/cros/
Dcros_library_loader.cc21 static const base::TimeDelta min_time = base::TimeDelta::FromMilliseconds(1); in addLibcrosTimeHistogram() local
27 min_time, in addLibcrosTimeHistogram()
/external/bluetooth/bluedroid/stack/gap/
Dgap_api.c463 UINT16 GAP_StartPeriodicInquiry (tGAP_INQ_PARMS *p_inq_parms, UINT16 min_time, in GAP_StartPeriodicInquiry() argument
476 min_time <= p_inq_parms->duration || in GAP_StartPeriodicInquiry()
477 min_time < GAP_PER_INQ_MIN_MIN_PERIOD || in GAP_StartPeriodicInquiry()
478 min_time > GAP_PER_INQ_MAX_MIN_PERIOD || in GAP_StartPeriodicInquiry()
479 max_time <= min_time || in GAP_StartPeriodicInquiry()
491 btm_status = BTM_SetPeriodicInquiryMode(p_inq_parms, max_time, min_time, in GAP_StartPeriodicInquiry()
/external/icu4c/tools/tzcode/
Dzic.c203 static zic_t min_time; variable
825 min_time = -1; in setboundaries()
827 min_time *= 2; in setboundaries()
828 max_time = -(min_time + 1); in setboundaries()
1233 z.z_untiltime > min_time &&
1235 zones[nzones - 1].z_untiltime > min_time &&
1317 if (dayoff < min_time / SECSPERDAY) {
1632 while (fromi < timecnt && attypes[fromi].at < min_time)
2194 usestart = i > 0 && (zp - 1)->z_untiltime > min_time;
2196 if (useuntil && zp->z_untiltime <= min_time)
[all …]
/external/chromium_org/third_party/icu/source/tools/tzcode/
Dzic.c203 static zic_t min_time; variable
825 min_time = -1; in setboundaries()
827 min_time *= 2; in setboundaries()
828 max_time = -(min_time + 1); in setboundaries()
1233 z.z_untiltime > min_time &&
1235 zones[nzones - 1].z_untiltime > min_time &&
1317 if (dayoff < min_time / SECSPERDAY) {
1632 while (fromi < timecnt && attypes[fromi].at < min_time)
2194 usestart = i > 0 && (zp - 1)->z_untiltime > min_time;
2196 if (useuntil && zp->z_untiltime <= min_time)
[all …]
/external/chromium_org/chrome/browser/history/
Dweb_history_service.cc273 const std::string& min_time, in CreateDeletion() argument
280 deletion->SetString("min_timestamp_usec", min_time); in CreateDeletion()
/external/chromium_org/chrome/browser/chromeos/policy/
Ddevice_status_collector.cc264 Time min_time = in PruneStoredActivityPeriods() local
268 TrimStoredActivityPeriods(TimestampToDayKey(min_time), 0, in PruneStoredActivityPeriods()
/external/bluetooth/bluedroid/stack/include/
Dgap_api.h308 UINT16 min_time,
/external/chromium_org/chrome/browser/chromeos/login/
Duser_image_manager_impl.cc136 static const base::TimeDelta min_time = base::TimeDelta::FromMilliseconds(1); in AddProfileImageTimeHistogram() local
141 histogram_name, min_time, max_time, bucket_count, in AddProfileImageTimeHistogram()
/external/chromium_org/sync/engine/
Dsync_scheduler_unittest.cc504 TimeTicks min_time = TimeTicks::Now(); in TEST_F() local
512 EXPECT_GE(times[0], min_time); in TEST_F()