HomeSort by relevance Sort by last modified time
    Searched defs:seconds (Results 1 - 25 of 709) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/protobuf/objectivec/google/protobuf/
Duration.pbobjc.h 40 /// 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 = start.seconds + duration.seconds
83 @property(nonatomic, readwrite) int64_t seconds; variable
    [all...]
Timestamp.pbobjc.h 40 /// 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 of UTC time since Unix epoc
97 @property(nonatomic, readwrite) int64_t seconds; variable
    [all...]
  /system/chre/platform/slpi/
system_time_util.cc 28 uint64_t seconds = (ticks / kClockFreq); local
31 nsec = (seconds * kOneSecondInNanoseconds);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
timingmodule.c 27 seconds(PyObject *self) function
48 {"seconds", (PyCFunction)seconds, METH_NOARGS},
  /external/autotest/client/site_tests/power_LoadTest/extension/
params.js 5 // Convert seconds to milliseconds
6 function seconds(s) { function
12 return seconds(m * 60);
16 var test_startup_delay = seconds(5);
time.js 5 // Convert seconds to milliseconds
6 function seconds(s) { function
12 return seconds(m * 60);
  /external/python/cpython2/Modules/
timingmodule.c 27 seconds(PyObject *self) function
48 {"seconds", (PyCFunction)seconds, METH_NOARGS},
  /external/tensorflow/tensorflow/core/platform/cloud/
time_util.cc 37 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/
rrtr.cc 34 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/webrtc/webrtc/system_wrappers/source/
clock_unittest.cc 19 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);
  /prebuilts/misc/windows/sdl2/test/
testpower.c 20 int seconds, percent; local
21 const SDL_PowerState state = SDL_GetPowerInfo(&seconds, &percent);
54 if (seconds == -1) {
57 SDL_Log("Time left: %d minutes, %d seconds\n", (int) (seconds / 60),
58 (int) (seconds % 60));
  /bionic/libc/kernel/uapi/scsi/
scsi_netlink_fc.h 26 uint64_t seconds; member in struct:fc_nl_event
  /cts/libs/vogar-expect/src/vogar/util/
TimeUtilities.java 30 long seconds = duration % 60; local
45 result.append(seconds);
81 long seconds = duration % 60; local
102 result.append(seconds);
109 * Converts nanoseconds into (fractional) seconds.
  /development/samples/training/notify-user/src/com/example/android/pingme/
MainActivity.java 44 int seconds; local
54 // The number of seconds the timer should run.
60 seconds = R.string.seconds_default;
62 seconds = Integer.parseInt(input);
64 int milliseconds = (seconds * 1000);
  /external/icu/icu4c/source/i18n/
utmscale.cpp 19 #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/junit/src/main/java/org/junit/rules/
Timeout.java 60 * {@link Timeout#millis(long)}, or {@link Timeout#seconds(long)}.
107 * given duration, in seconds.
111 public static Timeout seconds(long seconds) { method in class:Timeout
112 return new Timeout(seconds, TimeUnit.SECONDS);
159 private TimeUnit timeUnit = TimeUnit.SECONDS;
  /external/kernel-headers/original/uapi/scsi/
scsi_netlink_fc.h 61 uint64_t seconds; member in struct:fc_nl_event
  /external/ltp/testcases/kernel/io/disktest/
sfunc.h 117 time_t seconds; member in struct:fmt_time
  /external/ltp/tools/pounder21/src/time_tests/
inconsistency-check.c 48 unsigned long seconds = -1; local
53 seconds = atol(argv[1]);
66 while (seconds == -1 || now - then < seconds) {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HeaderParser.java 54 long seconds = Long.parseLong(value); local
55 if (seconds > Integer.MAX_VALUE) {
57 } else if (seconds < 0) {
60 return (int) seconds;
  /external/perf_data_converter/src/quipper/
perf_stat_parser.cc 37 // "1.234 seconds time elapsed"
55 // Look for "1.234 seconds time elapsed"
56 if (tokens[1] == "seconds" &&
71 double seconds = strtod(str.c_str(), &endptr); local
75 if (seconds < 0) {
78 *out = (static_cast<uint64_t>(seconds * 1000.0 + 0.5));
  /external/protobuf/src/google/protobuf/stubs/
time_test.cc 68 int64 seconds; local
69 ASSERT_TRUE(DateTimeToSeconds(time, &seconds));
70 EXPECT_EQ(1, seconds);
79 ASSERT_TRUE(DateTimeToSeconds(time, &seconds));
80 EXPECT_EQ(-1, seconds);
100 ASSERT_TRUE(DateTimeToSeconds(time, &seconds));
101 EXPECT_EQ(start_time, seconds);
103 ASSERT_TRUE(DateTimeToSeconds(time, &seconds));
104 EXPECT_EQ(end_time, seconds);
180 int64 seconds; local
    [all...]
  /external/swiftshader/src/Common/
Timer.cpp 48 double Timer::seconds() function in class:sw::Timer
  /external/vogar/src/vogar/util/
TimeUtilities.java 30 long seconds = duration % 60; local
45 result.append(seconds);
81 long seconds = duration % 60; local
102 result.append(seconds);
109 * Converts nanoseconds into (fractional) seconds.
  /external/webrtc/webrtc/modules/audio_coding/test/
TimedTrace.cc 52 double seconds = _timeEllapsedSec - minutes * 60; local
56 minutes, seconds, message);

Completed in 992 milliseconds

1 2 3 4 5 6 7 8 91011>>