Searched refs:clock (Results 1 - 25 of 79) sorted by relevance

1234

/external/clang/test/Index/
H A Dprint-bitwidth.c4 unsigned clock : 1;
19 // CHECK: FieldDecl=clock:4:12 (Definition) bitwidth=1
/external/lldb/test/functionalities/longjmp/
H A Dmain.c19 if (!clock())
/external/google-breakpad/src/processor/
H A Dlogging.cc57 time_t clock; local
58 time(&clock);
61 localtime_s(&tm_struct, &clock);
63 localtime_r(&clock, &tm_struct);
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
H A DBitmapPreFillRunner.java59 private final Clock clock; field in class:BitmapPreFillRunner
71 BitmapPreFillRunner(BitmapPool bitmapPool, MemoryCache memoryCache, PreFillQueue allocationOrder, Clock clock, argument
76 this.clock = clock;
89 long start = clock.now();
113 return clock.now() - startTimeMs >= MAX_DURATION_MS;
/external/libcxx/test/std/utilities/time/time.clock/time.clock.system/
H A Dconsistency.pass.cpp19 // check clock invariants
32 static_assert((std::is_same<C::time_point::clock, C>::value), "");
/external/srtp/crypto/include/
H A Dkernel_compat.h65 #define clock() (jiffies) macro
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_clock_test.cc220 u64 clock[kThreads]; member in struct:__tsan::SimpleSyncClock
230 clock[i] = 0;
235 if (clock[i] != other->get(i))
239 if (i < size && clock[i] != 0)
249 u64 clock[kThreads]; member in struct:__tsan::SimpleThreadClock
257 clock[i] = 0;
261 clock[tid]++;
268 clock[i] = max(clock[i], src->clock[
[all...]
/external/drm_hwcomposer/
H A Ddrmmode.cpp28 clock_(m->clock),
68 return clock_ == m.clock && h_display_ == m.hdisplay &&
78 m->clock = clock_;
103 uint32_t DrmMode::clock() const { function in class:android::DrmMode
H A Ddrmmode.h38 uint32_t clock() const;
/external/deqp/execserver/tools/
H A DxsTest.cpp387 TestClock clock; local
391 if (clock.getMilliseconds() > timeout)
427 TestClock clock; local
434 if (clock.getMilliseconds() > timeout)
486 TestClock clock; local
494 if (clock.getMilliseconds() > timeout)
548 TestClock clock; local
556 if (clock.getMilliseconds() > timeout)
640 TestClock clock; local
648 if (clock
732 TestClock clock; local
[all...]
/external/expat/tests/benchmark/
H A Dbenchmark.c83 tstart = clock();
102 tend = clock();
/external/lldb/examples/summaries/cocoa/
H A Dmetrics.py24 self.enter_time = time.clock()
27 self.exit_time = time.clock()
/external/srtp/test/
H A Dreplay_driver.c174 #include <time.h> /* for clock() */
191 timer = clock();
206 timer = clock() - timer;
H A Drdbx_driver.c309 #include <time.h> /* for clock() */
327 timer = clock();
338 timer = clock() - timer;
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_rtl_mutex.cc164 AcquireImpl(thr, pc, &s->clock);
208 ReleaseStoreImpl(thr, pc, &s->clock);
246 AcquireImpl(thr, pc, &s->clock);
321 ReleaseImpl(thr, pc, &s->clock);
358 AcquireImpl(thr, pc, &s->clock);
366 thr->clock.set(tctx->tid, tctx->thr->fast_state.epoch());
368 thr->clock.set(tctx->tid, tctx->epoch1);
388 ReleaseImpl(thr, pc, &s->clock);
400 ReleaseStoreImpl(thr, pc, &s->clock);
428 thr->clock
[all...]
/external/kernel-headers/original/uapi/linux/
H A Dscc.h83 /* Tx/Rx clock sources */
89 /* modems without clock regeneration */
91 /* MODEMs without clock recovery */
152 long clock; /* clock */ member in struct:scc_hw_config
/external/libcxx/test/std/depr/depr.c.headers/
H A Dtime_h.pass.cpp29 static_assert((std::is_same<decltype(clock()), clock_t>::value), "");
/external/libcxx/test/std/language.support/support.runtime/
H A Dctime.pass.cpp29 static_assert((std::is_same<decltype(std::clock()), std::clock_t>::value), "");
/external/libcxx/test/std/utilities/date.time/
H A Dtested_elsewhere.pass.cpp29 static_assert((std::is_same<decltype(std::clock()), std::clock_t>::value), "");
/external/markdown/
H A Dtest-markdown.py189 start = time.clock()
191 construction_time = time.clock() - start
245 start = time.clock()
248 conversion_time = time.clock() - start
/external/opencv/
H A Dcvjni.cpp310 clock_t total_time_start = clock();
330 clock_t total_time_finish = clock() - total_time_start;
464 clock_t total_time_start = clock();
478 clock_t haar_detect_time_start = clock();
482 clock_t haar_detect_time_finish = clock() - haar_detect_time_start;
496 clock_t total_time_finish = clock() - total_time_start;
563 clock_t total_time_start = clock();
577 clock_t haar_detect_time_start = clock();
581 clock_t haar_detect_time_finish = clock() - haar_detect_time_start;
604 clock_t total_time_finish = clock()
[all...]
/external/lz4/programs/
H A Dlz4io.c58 #include <time.h> /* clock */
118 { g_time = clock(); DISPLAY(__VA_ARGS__); \
212 clock_t nCurrent = clock();
307 start = clock();
344 end = clock();
384 start = clock();
452 end = clock();
642 start = clock();
654 end = clock();
/external/skia/src/utils/android/
H A DSkHwuiRenderer.cpp23 (android::uirenderer::renderthread::TimeLord& clock) override {
24 return new android::uirenderer::AnimationContext(clock);
/external/srtp/crypto/test/
H A Dauth_driver.c188 timer = clock();
192 timer = clock() - timer;
/external/boringssl/linux-arm/crypto/sha/
H A Dsha512-armv4.S14 @ by gcc 3.4 and it spends ~72 clock cycles per byte [on single-issue

Completed in 1273 milliseconds

1234