Searched defs:timestamp (Results 1 - 25 of 283) sorted by relevance

1234567891011>>

/external/webrtc/talk/app/webrtc/objc/public/
H A DRTCStatsReport.h36 @property(nonatomic, readonly) CFTimeInterval timestamp; variable
/external/webrtc/webrtc/api/objc/
H A DRTCStatsReport.h19 @property(nonatomic, readonly) CFTimeInterval timestamp; variable
/external/v8/src/profiler/
H A Dtick-sample.h21 base::TimeTicks timestamp; member in struct:v8::internal::TickSample
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_screen.h48 unsigned timestamp; member in struct:softpipe_screen
H A Dsp_texture.h67 unsigned timestamp; member in struct:softpipe_resource
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_screen.h56 unsigned timestamp; member in struct:llvmpipe_screen
/external/snakeyaml/src/test/java/examples/jodatime/
H A DJodaTimeFlowStylesTest.java37 private static final long timestamp = 1000000000000L; field in class:JodaTimeFlowStylesTest
45 DateTime etalon = new DateTime(timestamp, DateTimeZone.UTC);
76 * 'date' must be used only with the explicit '!!timestamp' tag.
86 * '!!timestamp' tag.
106 * !!timestamp must be used, without it the implicit tag will be ignored
109 * Since the timestamp contains ':' character it cannot use plain scalar
111 * style and that is why the explicit '!!timestamp' is present in the YAML
120 DateTime etalon = new DateTime(timestamp, DateTimeZone.UTC);
128 "!!examples.jodatime.MyBean {date: !!timestamp '2001-09-09T01:46:40Z', id: id123}\n",
143 if (nnode.getTag().equals(new Tag("tag:yaml.org,2002:timestamp"))) {
[all...]
H A DJodaTimeExampleTest.java34 private static final long timestamp = 1000000000000L; field in class:JodaTimeExampleTest
37 DateTime time = new DateTime(timestamp, DateTimeZone.UTC);
40 String date = new Yaml().dump(new Date(timestamp));
48 assertEquals(new DateTime(timestamp, DateTimeZone.UTC), time);
57 String timestamp = yaml.dump(someDate);
58 assertEquals("0009-02-22T23:40:28Z\n", timestamp);
59 // System.out.println(timestamp);
60 Object o = yaml.load(timestamp);
72 if (nnode.getTag().equals("tag:yaml.org,2002:timestamp")) {
94 // Whenever we see an explicit timestamp ta
[all...]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
H A DJavaBeanWithSqlTimestamp.java19 private java.sql.Timestamp timestamp; field in class:JavaBeanWithSqlTimestamp
23 return timestamp;
26 public void setTimestamp(java.sql.Timestamp timestamp) { argument
27 this.timestamp = timestamp;
/external/webrtc/webrtc/modules/video_coding/
H A Dtimestamp_map.h29 void Add(uint32_t timestamp, VCMFrameInformation* data);
30 VCMFrameInformation* Pop(uint32_t timestamp);
34 uint32_t timestamp; member in struct:webrtc::VCMTimestampMap::TimestampDataTuple
H A Dinter_frame_delay.cc28 // Calculates the delay of a frame with the given timestamp.
30 bool VCMInterFrameDelay::CalculateDelay(uint32_t timestamp, argument
36 _prevTimestamp = timestamp;
42 CheckForWrapArounds(timestamp);
51 if ((wrapAroundsSincePrev == 0 && timestamp < _prevTimestamp) ||
57 // Compute the compensated timestamp difference and convert it to ms and
60 (timestamp + wrapAroundsSincePrev * (static_cast<int64_t>(1) << 32) -
66 // the wall clock time difference and the timestamp difference between
70 _prevTimestamp = timestamp;
84 // Investigates if the timestamp cloc
87 CheckForWrapArounds(uint32_t timestamp) argument
[all...]
H A Dtimestamp_map.cc27 void VCMTimestampMap::Add(uint32_t timestamp, VCMFrameInformation* data) { argument
28 ring_buffer_[next_add_idx_].timestamp = timestamp;
38 VCMFrameInformation* VCMTimestampMap::Pop(uint32_t timestamp) { argument
40 if (ring_buffer_[next_pop_idx_].timestamp == timestamp) {
41 // Found start time for this timestamp.
46 } else if (IsNewerTimestamp(ring_buffer_[next_pop_idx_].timestamp,
47 timestamp)) {
48 // The timestamp w
[all...]
H A Dtiming_unittest.cc135 uint32_t timestamp = 0xFFFFFFFFu - 3 * 90000 / kFramerate; local
137 timing.IncomingTimestamp(timestamp, clock.TimeInMilliseconds());
139 timestamp += 90000 / kFramerate;
/external/webrtc/webrtc/system_wrappers/source/
H A Drtp_to_ntp_unittest.cc40 uint32_t timestamp = 0; local
43 rtcp.push_front(RtcpMeasurement(ntp_sec, ntp_frac, timestamp));
45 timestamp -= kTimestampTicksPerMs;
46 rtcp.push_front(RtcpMeasurement(ntp_sec, ntp_frac, timestamp));
48 timestamp -= kTimestampTicksPerMs;
51 // has a much smaller RTP timestamp than the newer.
52 EXPECT_FALSE(RtpToNtpMs(timestamp, rtcp, &timestamp_in_ms));
59 uint32_t timestamp = 0xFFFFFFFF; local
62 rtcp.push_front(RtcpMeasurement(ntp_sec, ntp_frac, timestamp));
64 timestamp
79 uint32_t timestamp = 0xFFFFFFFF - 2 * kTimestampTicksPerMs; local
99 uint32_t timestamp = 0; local
116 uint32_t timestamp = 0xFFFFFFFF; local
136 uint32_t timestamp = 0; local
[all...]
/external/webrtc/webrtc/test/
H A Dfake_texture_frame.cc19 uint32_t timestamp,
24 timestamp, render_time_ms, rotation);
16 CreateFrame(FakeNativeHandle* native_handle, int width, int height, uint32_t timestamp, int64_t render_time_ms, VideoRotation rotation) argument
/external/ImageMagick/MagickCore/
H A Dmodule.h52 timestamp; member in struct:_ModuleInfo
/external/curl/lib/
H A Dhostip.h68 /* timestamp == 0 -- CURLOPT_RESOLVE entry, doesn't timeout */
69 time_t timestamp; member in struct:Curl_dns_entry
/external/kernel-headers/original/uapi/linux/iio/
H A Devents.h18 * @timestamp: best estimate of time of event occurrence (often from
23 __s64 timestamp; member in struct:iio_event_data
/external/libdrm/freedreno/
H A Dfreedreno_pipe.c73 int fd_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp) argument
75 return fd_pipe_wait_timeout(pipe, timestamp, ~0);
78 int fd_pipe_wait_timeout(struct fd_pipe *pipe, uint32_t timestamp, argument
81 return pipe->funcs->wait(pipe, timestamp, timeout);
/external/protobuf/csharp/src/Google.Protobuf.Test/WellKnownTypes/
H A DTimestampTest.cs87 private static void AssertRoundtrip(Timestamp timestamp, DateTime dateTime) argument
89 Assert.AreEqual(timestamp, Timestamp.FromDateTime(dateTime));
90 Assert.AreEqual(dateTime, timestamp.ToDateTime());
91 Assert.AreEqual(DateTimeKind.Utc, timestamp.ToDateTime().Kind);
/external/syslinux/gpxe/src/include/gpxe/
H A Dprofile.h19 uint64_t timestamp; member in union:profiler
54 uint64_t last_timestamp = profiler->timestamp;
59 return ( profiler->timestamp - last_timestamp );
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/
H A DStatsReport.java53 public final double timestamp; field in class:StatsReport
56 public StatsReport(String id, String type, double timestamp, Value[] values) { argument
59 this.timestamp = timestamp;
66 .append(", timestamp: ").append(timestamp).append(", values: ");
/external/webrtc/webrtc/audio/
H A Daudio_sink.h34 uint32_t timestamp)
39 timestamp(timestamp) {}
45 uint32_t timestamp; // The RTP timestamp of the first sample. member in struct:webrtc::AudioSinkInterface::Data
30 Data(int16_t* data, size_t samples_per_channel, int sample_rate, size_t channels, uint32_t timestamp) argument
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dpacket_buffer.h67 // Gets the timestamp for the first packet in the buffer and writes it to the
73 // Gets the timestamp for the first packet in the buffer with a timestamp no
74 // lower than the input limit |timestamp|. The result is written to the output
78 virtual int NextHigherTimestamp(uint32_t timestamp,
88 // Subsequent packets with the same timestamp as the one extracted will be
100 // to zero implies that the horizon is set to half the timestamp range. That
134 // Static method returning true if |timestamp| is older than |timestamp_limit|
136 // with timestamp_limit = 100 and horizon_samples = 10, a timestamp in the
139 // half the 32-bit timestamp rang
140 IsObsoleteTimestamp(uint32_t timestamp, uint32_t timestamp_limit, uint32_t horizon_samples) argument
[all...]
/external/webrtc/webrtc/modules/remote_bitrate_estimator/
H A Dinter_arrival.h22 // between two timestamp groups. A timestamp is a 32 bit unsigned number with
26 // A timestamp group is defined as all packets with a timestamp which are at
27 // most timestamp_group_length_ticks older than the first timestamp in that
35 // |timestamp| is the timestamp.
38 // |timestamp_delta| (output) is the computed timestamp delta.
41 bool ComputeDeltas(uint32_t timestamp,
53 timestamp(
62 uint32_t timestamp; member in struct:webrtc::InterArrival::TimestampGroup
[all...]

Completed in 587 milliseconds

1234567891011>>