| /external/rust/crates/chrono/src/ |
| D | oldtime.rs | 51 secs: i64, field 73 let secs = weeks.checked_mul(SECS_PER_WEEK).expect("Duration::weeks out of bounds"); in weeks() localVariable 82 let secs = days.checked_mul(SECS_PER_DAY).expect("Duration::days out of bounds"); in days() localVariable 91 let secs = hours.checked_mul(SECS_PER_HOUR).expect("Duration::hours ouf of bounds"); in hours() localVariable 100 let secs = minutes.checked_mul(SECS_PER_MINUTE).expect("Duration::minutes out of bounds"); in minutes() localVariable 210 let mut secs = try_opt!(self.secs.checked_add(rhs.secs)); in checked_add() localVariable 228 let mut secs = try_opt!(self.secs.checked_sub(rhs.secs)); in checked_sub() localVariable 319 let mut secs = self.secs + rhs.secs; in add() localVariable 333 let mut secs = self.secs - rhs.secs; in sub() localVariable 350 let secs = self.secs * rhs as i64 + extra_secs; in mul() localVariable [all …]
|
| /external/rust/crates/grpcio-sys/grpc/src/cpp/util/ |
| D | time_cc.cc | 34 seconds secs = duration_cast<seconds>(deadline); in Timepoint2Timespec() local 50 seconds secs = duration_cast<seconds>(deadline); in TimepointHR2Timespec() local
|
| /external/grpc-grpc/src/cpp/util/ |
| D | time_cc.cc | 34 seconds secs = duration_cast<seconds>(deadline); in Timepoint2Timespec() local 50 seconds secs = duration_cast<seconds>(deadline); in TimepointHR2Timespec() local
|
| /external/linux-kselftest/tools/testing/selftests/rtc/ |
| D | rtctest.c | 118 time_t secs, new; in TEST_F() local 172 time_t secs, new; in TEST_F() local 220 time_t secs, new; variable 274 time_t secs, new; variable
|
| /external/rust/crates/chrono/src/naive/ |
| D | time.rs | 183 secs: u32, field 388 let secs = hour * 3600 + min * 60 + sec; in from_hms_nano_opt() localVariable 533 let mut secs = self.secs; in overflowing_add_signed() localVariable 568 let mut secs = secs as i32 + rhssecs; in overflowing_add_signed() localVariable 693 let secs = i64::from(self.secs) - i64::from(rhs.secs); in signed_duration_since() localVariable 906 let secs = hour * 3600 + self.secs % 3600; in with_hour() localVariable 928 let secs = self.secs / 3600 * 3600 + min * 60 + self.secs % 60; in with_minute() localVariable 952 let secs = self.secs / 60 * 60 + sec; in with_second() localVariable
|
| /external/opencensus-java/api/src/main/java/io/opencensus/common/ |
| D | Timestamp.java | 86 long secs = floorDiv(epochMilli, MILLIS_PER_SECOND); in fromMillis() local 186 long secs = TimeUtils.checkedAdd(epochSecond, floorDiv(nanoAdjustment, NANOS_PER_SECOND)); in ofEpochSecond() local
|
| /external/libwebsockets/lib/core-net/ |
| D | wsi-timeout.c | 125 __lws_set_timeout(struct lws *wsi, enum pending_timeout reason, int secs) in __lws_set_timeout() 140 lws_set_timeout(struct lws *wsi, enum pending_timeout reason, int secs) in lws_set_timeout()
|
| /external/iperf3/src/ |
| D | iperf_time.h | 33 uint32_t secs; member
|
| /external/libcups/cups/ |
| D | testgetdests.c | 28 double secs; /* Total seconds to run cupsGetDests */ in main() local
|
| /external/rust/crates/grpcio-sys/grpc/src/core/lib/gpr/ |
| D | time_precise.cc | 117 const double secs = in gpr_cycle_counter_to_time() local 128 const double secs = static_cast<double>(a - b) / cycles_per_second; in gpr_cycle_counter_sub() local
|
| /external/autotest/client/site_tests/platform_ToolchainTests/src/ |
| D | clang-fortify-driver.cpp | 16 static void SetTimeout(int secs) { in SetTimeout()
|
| /external/skia/tools/viewer/ |
| D | AnimBlurSlide.cpp | 17 SkScalar get_anim_sin(double secs, SkScalar amplitude, SkScalar periodInSec, SkScalar phaseInSec) { in get_anim_sin()
|
| /external/ltp/testcases/lib/ |
| D | tst_sleep.c | 32 long interval, secs = 0, usecs = 0; in main() local
|
| /external/python/cpython3/Python/ |
| D | pytime.c | 459 _PyTime_t secs; in _PyTime_AsSecondsDouble() local 542 _PyTime_t secs, ns; in _PyTime_AsTimeval_impl() local 580 _PyTime_t secs, secs2; in _PyTime_AsTimevalStruct_impl() local 619 _PyTime_t secs; in _PyTime_AsTimevalTime_t() local 638 _PyTime_t secs, nsec; in _PyTime_AsTimespec() local
|
| /external/tcpdump/ |
| D | print-ptp.c | 478 uint64_t secs; in ptp_print_timestamp() local 498 uint64_t secs; in ptp_print_timestamp_identity() local 534 uint64_t secs; in ptp_print_announce_msg() local
|
| /external/python/cpython2/Modules/ |
| D | timemodule.c | 130 double secs; in time_time() local 203 double secs; in time_sleep() local 1035 floatsleep(double secs)
|
| /external/openscreen/platform/base/ |
| D | trivial_clock_traits.cc | 29 std::ostream& operator<<(std::ostream& out, const std::chrono::seconds& secs) { in operator <<()
|
| /external/grpc-grpc/src/core/lib/gpr/ |
| D | time_precise.cc | 63 double secs; in gpr_precise_clock_now() local
|
| /external/musl/src/time/ |
| D | __secs_to_tm.c | 13 long long days, secs, years; in __secs_to_tm() local
|
| /external/mtools/ |
| D | mpartition.c | 190 uint16_t *hds, uint16_t *secs) { in setsize() 219 uint16_t *hds, uint16_t *secs) in setsize0()
|
| /external/rust/crates/rustversion/src/ |
| D | time.rs | 33 let secs = since_epoch.as_secs(); in try_today() localVariable
|
| /external/curl/tests/libtest/ |
| D | testtrace.c | 97 time_t secs; in libtest_debug_cb() local
|
| /external/webrtc/modules/rtp_rtcp/source/rtcp_packet/ |
| D | sender_report.cc | 65 uint32_t secs = ByteReader<uint32_t>::ReadBigEndian(&payload[4]); in Parse() local
|
| /external/linux-kselftest/tools/testing/selftests/timers/ |
| D | clocksource-switch.c | 106 int run_tests(int secs) in run_tests()
|
| /external/curl/src/ |
| D | tool_cb_dbg.c | 55 time_t secs; in tool_debug_cb() local
|