Searched refs:time_limit (Results 1 – 9 of 9) sorted by relevance
/third_party/boost/libs/math/tools/ |
D | hypergeometric_1F1_map_neg_b_fwd_recurrence.cpp | 63 double time_limit = 10.0; in main() local 78 …time_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() 111 …time_limit + 20) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a + 1) }, { mpfr_float(b… in main() 130 …time_limit) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a - 1) }, { mpfr_float(b - 1)… in main() 158 …time_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() 176 …time_limit + 20) / boost::math::hypergeometric_pFq_precision({ mpfr_float(a - 1) }, { mpfr_float(b… in main()
|
/third_party/boost/libs/chrono/example/ |
D | simulated_thread_interface_demo.cpp | 174 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()
|
D | time2_demo.cpp | 200 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/ |
D | unit1606.c | 48 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/ |
D | lava_job_submitter.py | 254 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/ |
D | methods.py | 224 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/ |
D | gsturisourcebin.c | 951 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/ |
D | async_end2end_test.cc | 482 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/ |
D | chrono.qbk | 2352 …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
|