HomeSort by relevance Sort by last modified time
    Searched refs:monotonic (Results 1 - 25 of 94) sorted by null

1 2 3 4

  /external/autotest/client/site_tests/platform_TraceClockMonotonic/src/
Makefile 1 EXEC=ftrace-clock-monotonic
8 $(EXEC): ftrace-clock-monotonic.c
  /external/clang/test/OpenMP/
schedule_codegen.cpp 69 #pragma omp for schedule(monotonic: static)
74 #pragma omp for simd schedule(monotonic: static)
79 #pragma omp for schedule(monotonic: static, 2)
84 #pragma omp for simd schedule(monotonic: static, 2)
88 #pragma omp for schedule(monotonic: auto)
92 #pragma omp for simd schedule(monotonic: auto)
96 #pragma omp for schedule(monotonic: runtime)
100 #pragma omp for simd schedule(monotonic: runtime)
104 #pragma omp for schedule(monotonic: guided)
108 #pragma omp for simd schedule(monotonic: guided
    [all...]
for_schedule_messages.cpp 16 #pragma omp for schedule ( // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
18 #pragma omp for schedule () // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}}
22 #pragma omp for schedule (monotonic // expected-error {{expected ')'}} expected-error {{expected 'static', 'dynamic', 'guided', 'auto' or 'runtime' in OpenMP clause 'schedule'}} expected-warning {{missing ':' after schedule modifier - ignoring}} expected-note {{to match this '('}}
24 #pragma omp for schedule (auto_dynamic // expected-error {{expected 'static', 'dynamic', 'guided', 'auto', 'runtime', 'monotonic', 'nonmonotonic' or 'simd' in OpenMP clause 'schedule'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
30 #pragma omp for schedule (monotonic, auto // expected-error {{expected ')'}} expected-warning {{missing ':' after schedule modifier - ignoring}} expected-error {{expected 'simd' in OpenMP clause 'schedule'}} expected-note {{to match this '('}}
67 #pragma omp for schedule (monotonic, nonmonotonic: auto) // expected-error {{modifier 'nonmonotonic' cannot be used along with modifier 'monotonic'}}
69 #pragma omp for schedule (nonmonotonic, monotonic: auto) // expected-error {{modifier 'monotonic' cannot be used along with modifier 'nonmonotonic'}}
73 #pragma omp for schedule (monotonic, monotonic: auto) // expected-error {{modifier 'monotonic' cannot be used along with modifier 'mon (…)
    [all...]
  /frameworks/av/packages/MediaComponents/src/com/android/media/subtitle/
MediaTimeProvider.java 58 * @param monotonic Whether returned time should be monotonic: that is,
64 public long getCurrentTimeUs(boolean precise, boolean monotonic)
  /frameworks/base/media/java/android/media/
MediaTimeProvider.java 58 * @param monotonic Whether returned time should be monotonic: that is,
64 public long getCurrentTimeUs(boolean precise, boolean monotonic)
  /external/python/cpython3/Lib/test/
test_wait3.py 21 deadline = time.monotonic() + 10.0
22 while time.monotonic() <= deadline:
test_wait4.py 23 deadline = time.monotonic() + 10.0
24 while time.monotonic() <= deadline:
fork_wait.py 52 deadline = time.monotonic() + 10.0
55 if deadline < time.monotonic():
test_epoll.py 165 now = time.monotonic()
167 then = time.monotonic()
183 now = time.monotonic()
185 then = time.monotonic()
197 now = time.monotonic()
199 then = time.monotonic()
216 now = time.monotonic()
218 then = time.monotonic()
signalinterproctester.py 32 deadline = time.monotonic() + timeout
34 while time.monotonic() < deadline:
test_fork1.py 22 deadline = time.monotonic() + 10.0
23 while time.monotonic() <= deadline:
  /frameworks/support/media/src/main/java/androidx/media/subtitle/
MediaTimeProvider.java 66 * @param monotonic Whether returned time should be monotonic: that is,
72 long getCurrentTimeUs(boolean precise, boolean monotonic)
  /build/make/tools/releasetools/
test_rangelib.py 114 self.assertTrue(RangeSet("0-9").monotonic)
115 self.assertTrue(RangeSet("2-9").monotonic)
116 self.assertTrue(RangeSet("2-9 30 31 35").monotonic)
117 self.assertTrue(RangeSet("").monotonic)
118 self.assertTrue(RangeSet("0-4 5-9").monotonic)
119 self.assertFalse(RangeSet("5-9 0-4").monotonic)
120 self.assertFalse(RangeSet("258768-259211 196604").monotonic)
122 self.assertTrue(RangeSet(data=[0, 10]).monotonic)
123 self.assertTrue(RangeSet(data=[0, 10, 15, 20]).monotonic)
124 self.assertTrue(RangeSet(data=[2, 9, 30, 31, 31, 32, 35, 36]).monotonic)
    [all...]
rangelib.py 28 monotonic: Whether the input has all its integers in increasing order.
34 self.monotonic = False
41 self.monotonic = all(x < y for x, y in zip(self.data, self.data[1:]))
80 If the input has all its blocks in increasing order, then the 'monotonic'
82 input "10-20 30" is monotonic, but the input "15-20 30 10-14" is not, even
104 monotonic = True
113 monotonic = False
121 monotonic = False
124 self.monotonic = monotonic
    [all...]
  /external/python/cpython3/Lib/test/eintrdata/
eintr_tester.py 366 t0 = time.monotonic()
369 dt = time.monotonic() - t0
380 t0 = time.monotonic()
382 dt = time.monotonic() - t0
413 t0 = time.monotonic()
423 dt = time.monotonic() - t0
434 t0 = time.monotonic()
436 dt = time.monotonic() - t0
446 t0 = time.monotonic()
448 dt = time.monotonic() - t
    [all...]
  /system/core/logd/
LogKlog.h 60 void calculateCorrection(const log_time& monotonic, const char* real_string,
  /prebuilts/go/darwin-x86/src/runtime/
cputicks.go 14 // careful: cputicks is not guaranteed to be monotonic! In particular, we have
timeasm.go 7 // so that time.now and nanotime return the same monotonic clock readings.
  /prebuilts/go/linux-x86/src/runtime/
cputicks.go 14 // careful: cputicks is not guaranteed to be monotonic! In particular, we have
timeasm.go 7 // so that time.now and nanotime return the same monotonic clock readings.
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_cond_init/
s-c.c 106 long monotonic, pshared; local
109 monotonic = sysconf(_SC_MONOTONIC_CLOCK);
112 output("Support for monotonic clock : %li\n", monotonic);
144 * pca[3] = (if supported) monotonic clock cond attribute
145 * pca[4] = (if supported) pshared + monotonic
154 if ((monotonic > 0) && ((i == 2) || (i == 3))) {
160 "Set monotonic clock failed");
  /external/python/cpython3/Lib/test/libregrtest/
runtest_mp.py 120 self.start_time = time.monotonic()
172 dt = time.monotonic() - worker.start_time
232 wait_start = time.monotonic()
239 dt = time.monotonic() - wait_start
  /prebuilts/go/darwin-x86/src/time/
mono_test.go 16 t.Errorf("%s: missing monotonic clock reading", expr)
21 t.Errorf("%s: unexpected monotonic clock reading", expr)
78 t.Errorf("t3.mono = %d, want 0 (wall time out of range for monotonic reading)", GetMono(&t3))
86 t.Errorf("t4.mono = %d, want 0 (wall time out of range for monotonic reading)", GetMono(&t4))
123 t.Fatalf("AddDate didn't strip monotonic clock reading")
127 t.Fatalf("AddDate didn't strip monotonic clock reading")
131 t.Fatalf("AddDate didn't strip monotonic clock reading")
208 t.Errorf("Now().Add(maxDuration) has monotonic clock reading (%v => %v %d %d)", t0.String(), t1.String(), t0.Unix(), t1.Unix())
  /prebuilts/go/linux-x86/src/time/
mono_test.go 16 t.Errorf("%s: missing monotonic clock reading", expr)
21 t.Errorf("%s: unexpected monotonic clock reading", expr)
78 t.Errorf("t3.mono = %d, want 0 (wall time out of range for monotonic reading)", GetMono(&t3))
86 t.Errorf("t4.mono = %d, want 0 (wall time out of range for monotonic reading)", GetMono(&t4))
123 t.Fatalf("AddDate didn't strip monotonic clock reading")
127 t.Fatalf("AddDate didn't strip monotonic clock reading")
131 t.Fatalf("AddDate didn't strip monotonic clock reading")
208 t.Errorf("Now().Add(maxDuration) has monotonic clock reading (%v => %v %d %d)", t0.String(), t1.String(), t0.Unix(), t1.Unix())
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cond_signal/
1-2.c 105 #define USE_ALTCLK /* make tests with MONOTONIC CLOCK if supported */
124 int c_clock; /* 0: cond uses the default clock. ~ !0: Cond uses monotonic clock, if supported. */
298 long pshared, monotonic, cs, mf; local
315 monotonic = sysconf(_SC_MONOTONIC_CLOCK);
323 output(" MON : %li\n", monotonic);
327 if ((cs < 0) || (monotonic < 0))
332 if (monotonic < 0)
338 ("Implementation supports the MONOTONIC CLOCK but option is disabled in test.\n");
450 "[parent] Unable to set the monotonic clock for the cond");

Completed in 745 milliseconds

1 2 3 4