Searched defs:seconds (Results 1 - 25 of 187) sorted by relevance

12345678

/external/protobuf/objectivec/google/protobuf/
H A DDuration.pbobjc.h40 /// as a count of seconds and fractions of seconds at nanosecond
52 /// duration.seconds = end.seconds - start.seconds;
55 /// if (duration.seconds < 0 && duration.nanos > 0) {
56 /// duration.seconds += 1;
58 /// } else if (durations.seconds > 0 && duration.nanos < 0) {
59 /// duration.seconds -= 1;
69 /// end.seconds
83 @property(nonatomic, readwrite) int64_t seconds; variable
[all...]
H A DTimestamp.pbobjc.h40 /// or calendar, represented as seconds and fractions of seconds at
44 /// seconds long, i.e. leap seconds are "smeared" so that no leap second
73 /// // is 11644473600 seconds before Unix epoch 1970-01-01T00:00:00Z.
89 /// seconds = int(now)
90 /// nanos = int((now - seconds) * 10**9)
91 /// timestamp = Timestamp(seconds=seconds, nanos=nanos)
94 /// Represents seconds o
97 @property(nonatomic, readwrite) int64_t seconds; variable
[all...]
/external/google-benchmark/src/
H A Dsleep.cc31 void SleepForSeconds(double seconds) { argument
32 SleepForMilliseconds(static_cast<int>(kNumMillisPerSecond * seconds));
47 void SleepForSeconds(double seconds) {
48 SleepForMicroseconds(static_cast<int>(seconds * kNumMicrosPerSecond));
/external/libcxx/utils/google-benchmark/src/
H A Dsleep.cc31 void SleepForSeconds(double seconds) { argument
32 SleepForMilliseconds(static_cast<int>(kNumMillisPerSecond * seconds));
47 void SleepForSeconds(double seconds) {
48 SleepForMicroseconds(static_cast<int>(seconds * kNumMicrosPerSecond));
/external/syslinux/com32/lib/sys/
H A Dsleep.c19 unsigned int sleep(unsigned int seconds) argument
21 return msleep(seconds * 1000);
/external/autotest/client/site_tests/power_LoadTest/extension/
H A Dparams.js5 // Convert seconds to milliseconds
6 function seconds(s) { function
12 return seconds(m * 60);
16 var test_startup_delay = seconds(5);
H A Dtime.js5 // Convert seconds to milliseconds
6 function seconds(s) { function
12 return seconds(m * 60);
/external/replicaisland/src/com/replica/replicaisland/
H A DVibrationSystem.java34 public void vibrate(float seconds) { argument
39 vibrator.vibrate((int)(seconds * 1000));
/external/webrtc/webrtc/system_wrappers/source/
H A Dclock_unittest.cc19 uint32_t seconds; local
21 clock->CurrentNtp(seconds, fractions);
24 EXPECT_GE(milliseconds, Clock::NtpToMs(seconds, fractions));
25 EXPECT_NEAR(milliseconds, Clock::NtpToMs(seconds, fractions), 100);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_nolibc.cc26 void SleepForSeconds(int seconds) { internal_sleep(seconds); } argument
/external/eigen/unsupported/test/
H A Dcxx11_tensor_notification.cpp18 void sleep(int seconds) { argument
19 Sleep(seconds*1000);
/external/python/cpython2/Modules/
H A Dtimingmodule.c27 seconds(PyObject *self) function
48 {"seconds", (PyCFunction)seconds, METH_NOARGS},
/external/tensorflow/tensorflow/core/platform/cloud/
H A Dtime_util.cc37 float seconds; local
40 &(parsed.tm_min), &seconds) != 6) {
44 const int int_seconds = floor(seconds);
51 floor((seconds - int_seconds) * kNanosecondsPerSecond));
/external/webrtc/webrtc/modules/rtp_rtcp/source/rtcp_packet/
H A Drrtr.cc34 uint32_t seconds = ByteReader<uint32_t>::ReadBigEndian(&buffer[4]); local
36 ntp_.Set(seconds, fraction);
44 ByteWriter<uint32_t>::WriteBigEndian(&buffer[4], ntp_.seconds());
/external/curl/tests/unit/
H A Dunit1399.c57 fprintf(stderr, "is %d us same as %d seconds? %s\n",
63 static void expect_timer_seconds(struct Curl_easy *data, int seconds) argument
66 snprintf(msg, sizeof(msg), "about %d seconds should have passed", seconds);
67 fail_unless(usec_matches_seconds(data->progress.t_nslookup, seconds), msg);
68 fail_unless(usec_matches_seconds(data->progress.t_connect, seconds), msg);
69 fail_unless(usec_matches_seconds(data->progress.t_appconnect, seconds), msg);
70 fail_unless(usec_matches_seconds(data->progress.t_pretransfer, seconds),
72 fail_unless(usec_matches_seconds(data->progress.t_starttransfer, seconds),
78 * E.g., if t_starttransfer took 2 seconds initiall
[all...]
/external/kernel-headers/original/uapi/scsi/
H A Dscsi_netlink_fc.h61 uint64_t seconds; member in struct:fc_nl_event
/external/ltp/testcases/kernel/io/disktest/
H A Dsfunc.h117 time_t seconds; member in struct:fmt_time
/external/ltp/tools/pounder21/src/time_tests/
H A Dinconsistency-check.c48 unsigned long seconds = -1; local
53 seconds = atol(argv[1]);
66 while (seconds == -1 || now - then < seconds) {
/external/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/
H A DDurationTest.cs106 public void ToTimeSpan_Invalid(long seconds, int nanoseconds) argument
108 var duration = new Duration { Seconds = seconds, Nanos = nanoseconds };
117 public void ToTimeSpan_Valid(long seconds, int nanoseconds) argument
120 var duration = new Duration { Seconds = seconds, Nanos = nanoseconds };
129 Assert.AreEqual("{ \"@warning\": \"Invalid Duration\", \"seconds\": \"1\", \"nanos\": -1 }", duration.ToString());
H A DTimestampTest.cs69 public void ToDateTime_OutOfRange(long seconds, int nanoseconds) argument
71 var value = new Timestamp { Seconds = seconds, Nanos = nanoseconds };
81 public void ToDateTime_ValidBoundaries(long seconds, int nanoseconds) argument
83 var value = new Timestamp { Seconds = seconds, Nanos = nanoseconds };
112 Assert.AreEqual("{ \"@warning\": \"Invalid Timestamp\", \"seconds\": \"1\", \"nanos\": -1 }", duration.ToString());
/external/swiftshader/src/Common/
H A DTimer.cpp48 double Timer::seconds() function in class:sw::Timer
/external/webrtc/webrtc/modules/audio_coding/test/
H A DTimedTrace.cc52 double seconds = _timeEllapsedSec - minutes * 60; local
56 minutes, seconds, message);
/external/icu/icu4c/source/i18n/
H A Dutmscale.cpp19 #define seconds (milliseconds * 1000) macro
20 #define minutes (seconds * 60)
28 {seconds, INT64_C(62135596800), INT64_C(-984472800485), INT64_C(860201606885), U_INT64_MIN, U_INT64_MAX, INT64_C(62135596801), INT64_C(62135596799), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)},
32 {seconds, INT64_C(60052752000), INT64_C(-982389955685), INT64_C(862284451685), U_INT64_MIN, U_INT64_MAX, INT64_C(60052752001), INT64_C(60052751999), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)},
33 {seconds, INT64_C(63113904000), INT64_C(-985451107685), INT64_C(859223299685), U_INT64_MIN, U_INT64_MAX, INT64_C(63113904001), INT64_C(63113903999), INT64_C(5000000), INT64_C(-9223372036849775808), INT64_C(9223372036849775807)},
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timescale/
H A DEpochOffsets.java41 private static final long seconds = milliseconds * 1000; field in class:EpochOffsets
42 private static final long minutes = seconds * 60;
H A DGenerateCTimeScaleData.java40 private static final long seconds = milliseconds * 1000; field in class:GenerateCTimeScaleData
41 private static final long minutes = seconds * 60;
84 } else if (units == seconds) {
85 cargs[0] = "seconds";

Completed in 1373 milliseconds

12345678