Home
last modified time | relevance | path

Searched refs:raw_time (Results 1 – 25 of 153) sorted by relevance

1234567

/dports/sysutils/moreutils/moreutils-0.66/
H A Dmoreutils-ts100 my $raw_time = Time::HiRes::clock_gettime(CLOCK_MONOTONIC);
102 $lastmicroseconds = int(1000000 * ($raw_time - int($raw_time)));
103 $monodelta = $lastseconds - int($raw_time);
120 my $raw_time =
123 $seconds = int($raw_time);
124 $microseconds = int(1000000 * ($raw_time - $seconds));
/dports/print/lout/lout-3.40/
H A Dz27.c161 { int i; time_t raw_time; in ProfileOn() local
173 time(&raw_time); profstack[proftop].label = str; in ProfileOn()
174 profstack[proftop++].time = raw_time; in ProfileOn()
187 { int i; time_t raw_time; in ProfileOff() local
198 time(&raw_time); profstore[i].calls += 1; in ProfileOff()
199 profstore[i].time += (raw_time - profstack[--proftop].time); in ProfileOff()
/dports/devel/indi/indi-1.9.1/drivers/auxiliary/
H A Dgps_simulator.cpp59 time_t raw_time; in updateGPS() local
60 time(&raw_time); in updateGPS()
62 utc = gmtime(&raw_time); in updateGPS()
66 local = localtime(&raw_time); in updateGPS()
/dports/textproc/xlnt/xlnt-1.5.0-92-g20f3dac2/source/utils/
H A Dtime.cpp30 std::tm safe_localtime(std::time_t raw_time) in safe_localtime() argument
34 localtime_s(&result, &raw_time); in safe_localtime()
38 return *localtime(&raw_time); in safe_localtime()
46 time time::from_number(double raw_time) in from_number() argument
51 double fractional_part = std::modf(static_cast<double>(raw_time), &integer_part); in from_number()
H A Dtimedelta.cpp54 timedelta timedelta::from_number(double raw_time) in from_number() argument
58 result.days = static_cast<int>(raw_time); in from_number()
59 double fractional_part = raw_time - result.days; in from_number()
H A Ddate.cpp30 std::tm safe_localtime(std::time_t raw_time) in safe_localtime() argument
34 localtime_s(&result, &raw_time); in safe_localtime()
38 return *localtime(&raw_time); in safe_localtime()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/spec/lib/gitlab/quick_actions/
H A Dspend_time_and_date_separator_spec.rb67 let(:valid_arg) { "#{raw_time} #{raw_date}" }
69 let(:time) { Gitlab::TimeTrackingFormatter.parse(raw_time) }
78 let(:valid_arg) { "#{raw_time} #{raw_date}" }
80 let(:time) { Gitlab::TimeTrackingFormatter.parse(raw_time) }
/dports/devel/grpc134/grpc-1.34.1/include/grpcpp/
H A Dalarm.h52 SetInternal(cq, ::grpc::TimePoint<T>(deadline).raw_time(), tag); in Alarm()
61 SetInternal(cq, ::grpc::TimePoint<T>(deadline).raw_time(), tag); in Set()
86 SetInternal(::grpc::TimePoint<T>(deadline).raw_time(), std::move(f)); in Set()
102 alarm_->SetInternal(::grpc::TimePoint<T>(deadline).raw_time(), in Set()
/dports/devel/grpc130/grpc-1.30.2/include/grpcpp/
H A Dalarm_impl.h52 SetInternal(cq, ::grpc::TimePoint<T>(deadline).raw_time(), tag); in Alarm()
61 SetInternal(cq, ::grpc::TimePoint<T>(deadline).raw_time(), tag); in Set()
86 SetInternal(::grpc::TimePoint<T>(deadline).raw_time(), std::move(f)); in Set()
102 alarm_->SetInternal(::grpc::TimePoint<T>(deadline).raw_time(), in Set()
/dports/sysutils/fusefs-simple-mtpfs/simple-mtpfs-0.4.0/src/
H A Dsimple-mtpfs-log.cpp32 time_t raw_time; in timestamp() local
34 time(&raw_time); in timestamp()
35 time_info = localtime(&raw_time); in timestamp()
/dports/games/endgame-singularity/singularity-1.00/singularity/code/
H A Dg.py216 def to_time(raw_time): argument
217 if raw_time//60 > 48:
218 time_number = raw_time // (24*60)
220 if raw_time//60 > 1:
221 time_number = raw_time // 60
223 return ngettext("{0} minute", "{0} minutes", raw_time).format(raw_time)
/dports/devel/grpc130/grpc-1.30.2/include/grpcpp/impl/codegen/
H A Dtime.h47 gpr_timespec raw_time() = delete;
54 gpr_timespec raw_time() { return time_; } in raw_time() function
79 gpr_timespec raw_time() const { return time_; } in raw_time() function
/dports/devel/grpc134/grpc-1.34.1/include/grpcpp/impl/codegen/
H A Dtime.h47 gpr_timespec raw_time() = delete;
54 gpr_timespec raw_time() { return time_; } in raw_time() function
79 gpr_timespec raw_time() const { return time_; } in raw_time() function
/dports/devel/grpc/grpc-1.42.0/include/grpcpp/impl/codegen/
H A Dtime.h49 gpr_timespec raw_time() = delete;
57 gpr_timespec raw_time() { return time_; } in raw_time() function
83 gpr_timespec raw_time() const { return time_; } in raw_time() function
/dports/devel/py-grpcio-tools/grpcio-tools-1.43.0/grpc_root/include/grpcpp/impl/codegen/
H A Dtime.h49 gpr_timespec raw_time() = delete;
57 gpr_timespec raw_time() { return time_; } in raw_time() function
83 gpr_timespec raw_time() const { return time_; } in raw_time() function
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/grpc/src/include/grpcpp/impl/codegen/
H A Dtime.h43 gpr_timespec raw_time() { in raw_time() function
56 gpr_timespec raw_time() { return time_; } in raw_time() function
81 gpr_timespec raw_time() const { return time_; } in raw_time() function
/dports/science/pcmsolver/pcmsolver-1.3.0/src/utils/
H A DLogger.hpp104 time_t raw_time; in getTime() local
106 std::time(&raw_time); in getTime()
107 time_str = std::ctime(&raw_time); in getTime()
/dports/devel/grpc/grpc-1.42.0/include/grpcpp/
H A Dalarm.h52 SetInternal(cq, ::grpc::TimePoint<T>(deadline).raw_time(), tag); in Alarm()
65 SetInternal(cq, ::grpc::TimePoint<T>(deadline).raw_time(), tag); in Set()
89 SetInternal(::grpc::TimePoint<T>(deadline).raw_time(), std::move(f)); in Set()
/dports/databases/jdb/jdb-1.14/
H A Dtcpdump_to_db106 my($proto, $raw_time, $src, $dummy, $dest, $flags, $ack, $win, $start, $end, $len) = ("-") x 20;
107 $raw_time = shift @F;
133 print conv_time($raw_time) . " $proto $src $dest $flags $start $end $len $ack $win\n";
/dports/devel/py-grpcio-tools/grpcio-tools-1.43.0/grpc_root/include/grpcpp/
H A Dalarm.h52 SetInternal(cq, ::grpc::TimePoint<T>(deadline).raw_time(), tag); in Alarm()
65 SetInternal(cq, ::grpc::TimePoint<T>(deadline).raw_time(), tag); in Set()
89 SetInternal(::grpc::TimePoint<T>(deadline).raw_time(), std::move(f)); in Set()
/dports/net/tcpflow/tcpflow-1.5.0/src/netviz/
H A Dtime_histogram.h90 uint64_t raw_time = ts.tv_sec * (1000LL * 1000LL) + ts.tv_usec; in scale_timeval() local
92 … base_time = raw_time - (bucket_width * ((uint64_t)(span.bucket_count * underflow_pad_factor))); in scale_timeval()
97 if (raw_time < base_time) return -1; // underflow in scale_timeval()
98 return (raw_time - base_time) / bucket_width; in scale_timeval()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/grpc/src/include/grpcpp/
H A Dalarm_impl.h52 SetInternal(cq, ::grpc::TimePoint<T>(deadline).raw_time(), tag); in Alarm()
61 SetInternal(cq, ::grpc::TimePoint<T>(deadline).raw_time(), tag); in Set()
92 alarm_->SetInternal(::grpc::TimePoint<T>(deadline).raw_time(), in Set()
/dports/games/flightgear/flightgear-2020.3.11/utils/GPSsmooth/
H A DGPSsmooth.cxx52 double raw_time = atof(tokens[1].c_str()); in load() local
53 GPSTime gps_time = GPSTime( raw_time ); in load()
88 double raw_time = atof(tokens[1].c_str()); in load() local
89 GPSTime gps_time = GPSTime( raw_time ); in load()
/dports/games/el/Eternal-Lands-1.9.5.9-1/engine/
H A Dlogging.cpp84 std::time_t raw_time; in log_message() local
91 std::time(&raw_time); in log_message()
94 std::localtime(&raw_time)); in log_message()
270 std::time_t raw_time; in get_local_time_string() local
272 std::time(&raw_time); in get_local_time_string()
276 std::localtime(&raw_time)); in get_local_time_string()
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/quick_actions/
H A Dspend_time_and_date_separator.rb31 raw_time = @spend_arg.gsub(DATE_REGEX, '')
32 Gitlab::TimeTrackingFormatter.parse(raw_time)

1234567