Home
last modified time | relevance | path

Searched refs:time_limit (Results 1 – 9 of 9) sorted by relevance

/third_party/boost/libs/math/tools/
Dhypergeometric_1F1_map_neg_b_fwd_recurrence.cpp63 double time_limit = 10.0; in main() local
78time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b + 1)… in main()
107 …mit = last_good == 0 ? 0 : boost::math::tools::bisect([&a, b, error_limit, time_limit](test_type z) in main()
111time_limit + 20) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b… in main()
130time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a - 1) }, { mpfr_float(b - 1)… in main()
158time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b + 1)… in main()
172 …mit = last_good == 0 ? 0 : boost::math::tools::bisect([&a, b, error_limit, time_limit](test_type z) in main()
176time_limit + 20) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a - 1) }, { mpfr_float(b… in main()
/third_party/boost/libs/chrono/example/
Dsimulated_thread_interface_demo.cpp174 system_clock::time_point time_limit = system_clock::now() + seconds(4) + milliseconds(500); in basic_examples() local
177 this_thread::sleep_until(time_limit); in basic_examples()
181 mut.try_lock_until(time_limit); in basic_examples()
185 cv.wait_until(m, time_limit); // real code would put this in a loop in basic_examples()
Dtime2_demo.cpp200 system_clock::time_point time_limit = system_clock::now() + seconds(4) + milliseconds(500); in basic_examples() local
203 this_thread::sleep_until(time_limit); in basic_examples()
207 mut.try_lock_until(time_limit); in basic_examples()
211 cv.wait_until(m, time_limit); // real code would put this in a loop in basic_examples()
/third_party/curl/tests/unit/
Dunit1606.c48 static int runawhile(long time_limit, in runawhile() argument
59 curl_easy_setopt(easy, CURLOPT_LOW_SPEED_TIME, time_limit); in runawhile()
/third_party/mesa3d/.gitlab-ci/lava/
Dlava_job_submitter.py254 time_limit = timedelta(minutes=DEVICE_HANGING_TIMEOUT_MIN)
255 if datetime.now() - last_time_logs > time_limit:
/third_party/grpc/src/python/grpcio_tests/tests_aio/interop/
Dmethods.py224 time_limit = datetime.timedelta(seconds=1)
226 call = stub.FullDuplexCall(timeout=time_limit.total_seconds())
232 interval_us=int(time_limit.total_seconds() * 2 * 10**6)),))
/third_party/gstreamer/gstplugins_base/gst/playback/
Dgsturisourcebin.c951 guint64 time_limit = 0; in get_queue_statistics() local
954 "current-level-time", &time_limit, NULL); in get_queue_statistics()
962 if (time_limit < min_time_level) in get_queue_statistics()
963 min_time_level = time_limit; in get_queue_statistics()
964 if (time_limit > max_time_level) in get_queue_statistics()
965 max_time_level = time_limit; in get_queue_statistics()
966 avg_time_level = (avg_time_level * i + time_limit) / (gdouble) (i + 1); in get_queue_statistics()
/third_party/grpc/test/cpp/end2end/
Dasync_end2end_test.cc482 std::chrono::system_clock::time_point time_limit( in TEST_P() local
491 Verifier().Expect(2, true).Verify(cq_.get(), time_limit); in TEST_P()
523 std::chrono::system_clock::time_point time_limit( in TEST_P() local
535 Verifier().Expect(2, true).Verify(cq_.get(), time_limit, lambda_2); in TEST_P()
/third_party/boost/libs/chrono/doc/
Dchrono.qbk2352 …chrono::__system_clock::time_point time_limit = chrono::__system_clock::now() + chrono::__seconds_…
2353 this_thread::sleep_until(time_limit);
2356 mut.try_lock_until(time_limit);
2359 cv.wait_until(m, time_limit); // real code would put this in a loop