HomeSort by relevance Sort by last modified time
    Searched defs:timestamp (Results 176 - 200 of 435) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/core/command/
InvocationRecordTest.java 211 Date timestamp = invocationRecord.getTime(); local
212 long timeInMillis = timestamp.getTime();
213 timestamp.setTime(12345L);
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/core/command/
InvocationRecordTest.java 213 Date timestamp = invocationRecord.getTime(); local
214 long timeInMillis = timestamp.getTime();
215 timestamp.setTime(12345L);
  /external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/trace/
RecordEventsSpanImplTest.java 22 import io.opencensus.common.Timestamp;
62 private final Timestamp timestamp = Timestamp.create(1234, 5678); field in class:RecordEventsSpanImplTest
63 private final TestClock testClock = TestClock.create(timestamp);
110 assertThat(spanData.getStartTimestamp()).isEqualTo(timestamp);
116 assertThat(spanData.getEndTimestamp()).isEqualTo(timestamp);
177 .isEqualTo(timestamp.addNanos(100));
181 .isEqualTo(timestamp.addNanos(200));
187 .isEqualTo(timestamp.addNanos(300))
    [all...]
  /external/perfetto/src/trace_processor/
proto_trace_tokenizer.cc 196 auto timestamp = decoder.has_timestamp() local
197 ? static_cast<int64_t>(decoder.timestamp())
199 latest_timestamp_ = std::max(timestamp, latest_timestamp_);
232 context_->sorter->PushTracePacket(timestamp, std::move(packet));
367 int64_t timestamp; local
372 timestamp = state->IncrementAndGetTrackEventTimeNs(
377 timestamp = ts_absolute_field.as_int64() * 1000;
379 PERFETTO_ELOG("TrackEvent without timestamp");
394 context_->sorter->PushTrackEventPacket(timestamp, thread_timestamp, state,
432 // Speculate on the fact that the timestamp is often the 1st field of th
454 int64_t timestamp = static_cast<int64_t>(raw_timestamp); local
    [all...]
trace_sorter.h 46 // either (1) the (max - min) timestamp > window_size; (2) trace EOF.
59 // the chaos begun, (2) the timestamp that broke the ordering.
131 timestamp(ts),
141 return x.timestamp < ts;
146 return timestamp < o.timestamp ||
147 (timestamp == o.timestamp && packet_idx_ < o.packet_idx_);
154 int64_t timestamp; member in struct:perfetto::trace_processor::TraceSorter::TimestampedTracePiece
162 inline void PushTracePacket(int64_t timestamp, TraceBlobView packet)
233 const int64_t timestamp = ttp.timestamp; local
    [all...]
  /external/protobuf/src/google/protobuf/util/internal/
protostream_objectwriter_test.cc 36 #include <google/protobuf/timestamp.pb.h>
872 descriptors.push_back(google::protobuf::Timestamp::descriptor());
884 TimestampDuration timestamp; local
885 google::protobuf::Timestamp* ts = timestamp.mutable_ts();
892 CheckOutput(timestamp);
897 TimestampDuration timestamp; local
898 google::protobuf::Timestamp* ts = timestamp.mutable_ts();
905 CheckOutput(timestamp);
910 TimestampDuration timestamp; local
923 TimestampDuration timestamp; local
936 TimestampDuration timestamp; local
949 TimestampDuration timestamp; local
964 TimestampDuration timestamp; local
981 TimestampDuration timestamp; local
998 TimestampDuration timestamp; local
1014 TimestampDuration timestamp; local
1027 TimestampDuration timestamp; local
1040 TimestampDuration timestamp; local
1056 TimestampDuration timestamp; local
1072 TimestampDuration timestamp; local
1089 TimestampDuration timestamp; local
1106 TimestampDuration timestamp; local
1123 TimestampDuration timestamp; local
1218 TimestampDuration timestamp; local
    [all...]
  /external/python/apitools/apitools/base/py/
base_api_test.py 50 timestamp = message_types.DateTimeField(1) variable in class:MessageWithTime
212 request_type_name='MessageWithTime', query_params=['timestamp'])
215 timestamp=datetime.datetime(2014, 10, 0o7, 12, 53, 13))
218 url_timestamp = urllib_parse.quote(request.timestamp.isoformat())
223 request_type_name='MessageWithTime', query_params=['timestamp'])
226 timestamp=datetime.datetime(2014, 10, 0o7, 12, 53, 13))
  /external/python/cpython3/Lib/
poplib.py 311 timestamp = re.compile(br'\+OK.[^<]*(<.*>)') variable in class:POP3
316 - only possible if server has supplied a timestamp in initial greeting.
325 m = self.timestamp.match(self.welcome)
  /external/skia/src/gpu/ccpr/
GrCCPathCache.cpp 265 // Mark the per-flush timestamp as needing to be updated with a newer clock reading.
279 // Evict every entry from our local path cache whose timestamp is older than purgeTime.
282 // Verify that fLRU is sorted by timestamp.
283 auto timestamp = fLRU.tail()->fTimestamp; local
284 SkASSERT(timestamp >= lastTimestamp);
285 lastTimestamp = timestamp;
  /external/skqp/src/gpu/ccpr/
GrCCPathCache.cpp 265 // Mark the per-flush timestamp as needing to be updated with a newer clock reading.
279 // Evict every entry from our local path cache whose timestamp is older than purgeTime.
282 // Verify that fLRU is sorted by timestamp.
283 auto timestamp = fLRU.tail()->fTimestamp; local
284 SkASSERT(timestamp >= lastTimestamp);
285 lastTimestamp = timestamp;
  /external/swiftshader/third_party/SPIRV-Tools/source/comp/
move_to_front.h 104 // Timestamp from a logical clock which updates every time the element is
106 uint32_t timestamp = 0; member in struct:spvtools::comp::MoveToFront::Node
125 uint32_t CreateNode(uint32_t timestamp, uint32_t value);
143 // Returns timestamp of |node|.
146 return nodes_.at(node).timestamp;
179 // Returns mutable reference to timestamp of |node|.
182 return nodes_.at(node).timestamp;
269 // Incremented counters for next timestamp and value.
  /external/tcpdump/
print-mpcp.c 34 uint8_t timestamp[MPCP_TIMESTAMP_LEN]; member in struct:mpcp_common_header_t
147 ND_PRINT((ndo, ", Timestamp %u ticks", EXTRACT_32BITS(mpcp.common_header->timestamp)));
  /external/tensorflow/tensorflow/core/grappler/costs/
graph_memory.cc 148 : timestamp(_timestamp), allocated(_allocated), tensor(_tensor) {}
150 int64 timestamp; member in struct:tensorflow::grappler::__anon45064::Event
155 return timestamp < other.timestamp;
263 VLOG(1) << "At time " << event.timestamp << " allocated "
269 VLOG(1) << "At time " << event.timestamp << " deallocated "
276 event.timestamp != events[i + 1].timestamp) {
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
object_tracker_jni.cc 71 jfloat x2, jfloat y2, jlong timestamp);
109 jlong timestamp,
126 JNIEnv* env, jobject thiz, jlong timestamp, jfloat position_x1,
195 jfloat x2, jfloat y2, jlong timestamp) {
201 id_str, x1, y1, x2, y2, static_cast<int64_t>(timestamp));
204 id_str, BoundingBox(x1, y1, x2, y2), timestamp);
299 jlong timestamp,
325 timestamp, vg_matrix_2x3 != NULL ? vision_gyro_matrix_array : NULL); local
402 JNIEnv* env, jobject thiz, jlong timestamp, jfloat position_x1,
409 timestamp);
    [all...]
  /external/tensorflow/tensorflow/lite/examples/android/app/src/main/java/org/tensorflow/demo/
DetectorActivity.java 86 private long timestamp = 0; field in class:DetectorActivity
206 ++timestamp;
207 final long currTimestamp = timestamp;
215 timestamp);
  /external/u-boot/arch/arm/mach-orion5x/
timer.c 78 #define timestamp gd->arch.tbl macro
87 timestamp += lastdec - now;
90 timestamp += lastdec +
95 return timestamp;
149 /* init the timestamp and lastdec value */
151 timestamp = 0;
  /external/v4l2_codec2/cmds/
codec2.cpp 256 (work->worklets.front()->output.ordinal.timestamp * 1000ll).peekll());
259 (work->worklets.front()->output.ordinal.timestamp * 1000ll).peekll(), false,
292 int64_t timestamp = 0u; local
312 CHECK(meta.findInt64(kKeyTime, &timestamp));
331 work->input.ordinal.timestamp = timestamp;
  /external/vogar/src/vogar/
OutcomeStore.java 163 String timestamp = dateFormat.format(date); local
164 return new File(resultsDir, timestamp + ".json");
XmlReportPrinter.java 78 String timestamp = getGMTTimestamp(); local
82 suite.printReport(timestamp, fileName);
126 private void print(KXmlSerializer serializer, String timestamp) throws IOException {
133 serializer.attribute(ns, XmlReportConstants.TIMESTAMP, timestamp);
175 void printReport(String timestamp, String fileName) {
185 print(serializer, timestamp);
  /external/webrtc/talk/app/webrtc/test/
mockpeerconnectionobservers.h 132 stats_.timestamp = r->timestamp();
142 stats_.timestamp = r->timestamp();
146 stats_.timestamp = r->timestamp();
157 double timestamp() const { return stats_.timestamp; } function in class:webrtc::MockStatsObserver
219 timestamp = 0;
230 double timestamp; member in struct:webrtc::MockStatsObserver::__anon49537
    [all...]
  /external/webrtc/talk/media/base/
rtpdump.cc 145 // Read the elapsed time for this packet (different than RTP timestamp).
250 // sequence number and timestamp.
258 // Get the RTP sequence number and timestamp of the dump packet.
285 // If we have only one packet or frame, we use the default timestamp
301 // Get the old RTP sequence number and timestamp.
304 uint32_t timestamp = 0; local
305 packet->GetRtpTimestamp(&timestamp);
306 // Increase the RTP sequence number and timestamp.
308 timestamp += loop_count_ * rtp_timestamp_increase_;
309 // Write the updated sequence number and timestamp back to the RTP packet
    [all...]
testutils.h 68 // sequence number and timestamp, which should be the same as the specified
79 uint32_t timestamp; member in struct:cricket::RawRtpPacket
109 // stream is a RTP stream, verify the RTP sequence number, timestamp, and
  /external/webrtc/webrtc/base/
event_tracer.cc 93 uint64_t timestamp,
98 {name, category_enabled, phase, timestamp, 1, thread_id});
129 e.phase, e.timestamp, e.pid, e.tid);
179 uint64_t timestamp; member in struct:rtc::tracing::__anon49585::final::TraceEvent
  /external/webrtc/webrtc/modules/audio_coding/neteq/
packet_buffer_unittest.cc 55 packet->header.timestamp = ts_;
71 uint32_t timestamp; member in struct:webrtc::PacketsToInsert
151 EXPECT_EQ(packet->header.timestamp, next_ts);
267 packet_facts[i].timestamp,
360 EXPECT_EQ(current_ts, packet->header.timestamp);
446 // Testing wrap-around case; 'a' is earlier but has a larger timestamp value.
447 a->header.timestamp = 0xFFFFFFFF - 10;
464 a->header.timestamp = b->header.timestamp;
519 // half the timestamp range
    [all...]
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/
inter_arrival_unittest.cc 46 // Test that neither inter_arrival instance complete the timestamp group from
57 // Test that both inter_arrival instances complete the timestamp group from
59 // timestamp delta, which is rounded from us to different ranges and must
115 // than the initial timestamp of the group.
163 uint32_t timestamp, int64_t arrival_time_ms,
168 bool computed = inter_arrival->ComputeDeltas(timestamp,
181 uint32_t timestamp, int64_t arrival_time_ms,
190 bool computed = inter_arrival->ComputeDeltas(timestamp,
268 int64_t timestamp = kTriggerNewGroupUs; local
272 timestamp += kMinStep
289 int64_t timestamp = 0; local
323 int64_t timestamp = 0; local
364 int64_t timestamp = kTriggerNewGroupUs; local
390 int64_t timestamp = kTriggerNewGroupUs; local
    [all...]

Completed in 1881 milliseconds

1 2 3 4 5 6 78 91011>>