/external/linux-kselftest/tools/testing/selftests/timers/ |
D | set-timer-lat.c | 123 int setup_timer(int clock_id, int flags, int interval, timer_t *tm1) in setup_timer() argument 139 err = timer_create(clock_id, &se, tm1); in setup_timer() 164 err = timer_settime(*tm1, flags, &its1, &its2); in setup_timer() 212 timer_t tm1; in do_timer() local 216 err = setup_timer(clock_id, flags, interval, &tm1); in do_timer() 224 timer_delete(tm1); in do_timer() 230 timer_t tm1; in do_timer_oneshot() local 235 err = setup_timer(clock_id, flags, interval, &tm1); in do_timer_oneshot() 246 timer_delete(tm1); in do_timer_oneshot()
|
D | alarmtimer-suspend.c | 121 timer_t tm1; in main() local 144 if (timer_create(alarm_clock_id, &se, &tm1) == -1) { in main() 159 timer_settime(tm1, TIMER_ABSTIME, &its1, &its2); in main() 173 timer_delete(tm1); in main()
|
D | leap-a-day.c | 177 timer_t tm1; in main() local 296 if (timer_create(CLOCK_REALTIME, &se, &tm1) == -1) { in main() 304 timer_settime(tm1, TIMER_ABSTIME, &its1, NULL); in main()
|
/external/wpa_supplicant_8/src/utils/ |
D | os_win32.c | 65 struct tm tm, *tm1; in os_mktime() local 85 tm1 = localtime(&t_local); in os_mktime() 86 if (tm1) { in os_mktime() 87 t1 = mktime(tm1); in os_mktime() 88 tm1 = gmtime(&t_local); in os_mktime() 89 if (tm1) { in os_mktime() 90 t2 = mktime(tm1); in os_mktime()
|
D | os_unix.c | 133 struct tm tm, *tm1; in os_mktime() local 153 tm1 = localtime(&t_local); in os_mktime() 154 if (tm1) { in os_mktime() 155 t1 = mktime(tm1); in os_mktime() 156 tm1 = gmtime(&t_local); in os_mktime() 157 if (tm1) { in os_mktime() 158 t2 = mktime(tm1); in os_mktime()
|
/external/u-boot/post/drivers/ |
D | rtc.c | 33 struct rtc_time tm1; in rtc_post_skip() local 38 rtc_get (&tm1); in rtc_post_skip() 44 if (tm1.tm_sec != tm2.tm_sec) in rtc_post_skip() 50 if (tm1.tm_sec != tm2.tm_sec) { in rtc_post_skip()
|
/external/skqp/gm/ |
D | shadertext3.cpp | 94 for (size_t tm1 = 0; tm1 < SK_ARRAY_COUNT(kTileModes); ++tm1) { in onDraw() local 104 kTileModes[tm1], &localM)); in onDraw()
|
/external/skia/gm/ |
D | shadertext3.cpp | 94 for (size_t tm1 = 0; tm1 < SK_ARRAY_COUNT(kTileModes); ++tm1) { in onDraw() local 104 kTileModes[tm1], &localM)); in onDraw()
|
/external/eigen/bench/perf_monitoring/gemm/ |
D | gemm.cpp | 35 double tm0 = 4, tm1 = 10; in bench() local 40 tm1 = 4; in bench() 45 long tries = std::max(tm0, std::min(tm1, up/flops) ); in bench()
|
D | lazy_gemm.cpp | 42 double tm0 = 10, tm1 = 20; in bench() local 46 long tries = std::max(tm0, std::min(tm1, up/flops) ); in bench()
|
/external/toybox/toys/pending/ |
D | last.c | 72 static void seize_duration(time_t tm0, time_t tm1) in seize_duration() argument 75 double diff = difftime(tm1, tm0); in seize_duration() 77 diff = (diff > 0) ? (tm1 - tm0) : 0; in seize_duration() 80 snprintf(toybuf+18, 8, "- %s", ctime(&tm1) + 11); // Logout Time. in seize_duration()
|
/external/eigen/test/ |
D | product.h | 50 OtherMajorMatrixType tm1 = m1; in product() local 131 tm1 = m1; in product() 132 VERIFY_IS_APPROX(tm1.transpose() * v1, m1.transpose() * v1); in product() 133 VERIFY_IS_APPROX(v1.transpose() * tm1, v1.transpose() * m1); in product()
|
D | product_extra.cpp | 35 OtherMajorMatrixType tm1 = m1; in product_extra() local
|
/external/testng/src/main/java/org/testng/reporters/ |
D | TestHTMLReporter.java | 341 ITestNGMethod tm1= o1.getMethod(); in compare() local 343 return annotationValue(tm2) - annotationValue(tm1); in compare()
|
/external/protobuf/ruby/tests/ |
D | basic.rb | 790 tm1 = TestMessage2.new(:foo => 100) 792 m.repeated_msg.push tm1 793 assert m.repeated_msg[-1] == tm1
|