Home
last modified time | relevance | path

Searched refs:MAX_TIME (Results 1 – 15 of 15) sorted by relevance

/external/llvm-project/openmp/runtime/test/worksharing/for/
Domp_for_schedule_static.c8 #define MAX_TIME 0.01 macro
67 while (notout && (count < MAX_TIME) && (maxiter == j)) { in test_omp_for_schedule_static()
Domp_for_schedule_guided.c25 #define MAX_TIME 0.005 macro
85 while (notout && (count < MAX_TIME) && (maxiter == j)) { in test_omp_for_schedule_guided()
Domp_for_schedule_static_3.c8 #define MAX_TIME 0.01 macro
74 while (notout && (count < MAX_TIME) && (maxiter == j)) { in test_omp_for_schedule_static_3()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DVTimeZone.java414 private static final long MAX_TIME = Long.MAX_VALUE; field in VTimeZone
584 long firstStart = MAX_TIME; // the earliest rule start time in parse()
1429 dstMonth, dstWeekInMonth, dstDayOfWeek, dstStartTime, MAX_TIME); in writeZone()
1464 stdMonth, stdWeekInMonth, stdDayOfWeek, stdStartTime, MAX_TIME); in writeZone()
1552 if (untilTime != MAX_TIME) { in writeZonePropsByDOM()
1573 if (untilTime != MAX_TIME) { in writeZonePropsByDOW()
1613 …EQ_DOM_sub(writer, prevMonth, -prevMonthDays, dayOfWeek, prevMonthDays, MAX_TIME /* Do not use UNT… in writeZonePropsByDOW_GEQ_DOM()
1625 …ePropsByDOW_GEQ_DOM_sub(writer, nextMonth, 1, dayOfWeek, nextMonthDays, MAX_TIME /* Do not use UNT… in writeZonePropsByDOW_GEQ_DOM()
1658 if (untilTime != MAX_TIME) { in writeZonePropsByDOW_GEQ_DOM_sub()
1711 dtrule.getRuleMonth(), dtrule.getRuleDayOfMonth(), startTime, MAX_TIME); in writeFinalRule()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/util/
DVTimeZone.java383 private static final long MAX_TIME = Long.MAX_VALUE; field in VTimeZone
553 long firstStart = MAX_TIME; // the earliest rule start time in parse()
1398 dstMonth, dstWeekInMonth, dstDayOfWeek, dstStartTime, MAX_TIME); in writeZone()
1433 stdMonth, stdWeekInMonth, stdDayOfWeek, stdStartTime, MAX_TIME); in writeZone()
1521 if (untilTime != MAX_TIME) { in writeZonePropsByDOM()
1542 if (untilTime != MAX_TIME) { in writeZonePropsByDOW()
1582 …EQ_DOM_sub(writer, prevMonth, -prevMonthDays, dayOfWeek, prevMonthDays, MAX_TIME /* Do not use UNT… in writeZonePropsByDOW_GEQ_DOM()
1594 …ePropsByDOW_GEQ_DOM_sub(writer, nextMonth, 1, dayOfWeek, nextMonthDays, MAX_TIME /* Do not use UNT… in writeZonePropsByDOW_GEQ_DOM()
1627 if (untilTime != MAX_TIME) { in writeZonePropsByDOW_GEQ_DOM_sub()
1680 dtrule.getRuleMonth(), dtrule.getRuleDayOfMonth(), startTime, MAX_TIME); in writeFinalRule()
[all …]
/external/libaom/libaom/av1/encoder/
Dlevel.c415 #define MAX_TIME 1e16 macro
421 double buf_free_time = MAX_TIME; in time_next_buffer_is_free()
435 return buf_free_time < MAX_TIME ? buf_free_time : INVALID_TIME; in time_next_buffer_is_free()
437 #undef MAX_TIME
/external/iperf3/src/
Diperf.h395 #define MAX_TIME 86400 macro
Diperf_error.c149 snprintf(errstr, len, "test duration too long (maximum = %d seconds)", MAX_TIME); in iperf_strerror()
Diperf_api.c1084 if (test->duration > MAX_TIME) { in iperf_parse_arguments()
/external/perfetto/ui/src/frontend/
Drecord_page.ts33 import {MAX_TIME, RecordMode} from '../common/state';
1111 if (time > MAX_TIME) {
1112 time = MAX_TIME;
/external/perfetto/ui/src/common/
Dstate.ts52 export const MAX_TIME = 180; constant
/external/libxml2/
Dtestlimits.c43 #define MAX_TIME 2 /* seconds */ macro
55 if (((tnow - t0) / CLOCKS_PER_SEC) > MAX_TIME) { in check_time()
/external/deqp/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineCreationCacheControlTests.cpp239 template <ElapsedTime MAX_TIME, qpTestResult FAIL_RESULT = QP_TEST_RESULT_FAIL>
252 static constexpr microseconds ALLOWED_TIME = microseconds{MAX_TIME}; in checkElapsedTime()
/external/rust/crates/chrono/src/naive/
Ddatetime.rs19 use naive::time::{MAX_TIME, MIN_TIME};
34 pub const MAX_DATETIME: NaiveDateTime = NaiveDateTime { date: MAX_DATE, time: MAX_TIME };
Dtime.rs20 pub const MAX_TIME: NaiveTime = NaiveTime { secs: 23 * 3600 + 59 * 60 + 59, frac: 999_999_999 }; constant