HomeSort by relevance Sort by last modified time
    Searched full:timestamp (Results 26 - 50 of 4884) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/autotest/database/server_db_migrations/
003_correct_date_modified.py 3 MODIFY date_modified timestamp DEFAULT current_timestamp on update current_timestamp;
  /external/webrtc/webrtc/modules/video_coding/
timestamp_map.cc 27 void VCMTimestampMap::Add(uint32_t timestamp, VCMFrameInformation* data) {
28 ring_buffer_[next_add_idx_].timestamp = timestamp;
38 VCMFrameInformation* VCMTimestampMap::Pop(uint32_t timestamp) {
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 we are looking for is not in the list
    [all...]
inter_frame_delay.h 25 // Calculates the delay of a frame with the given timestamp.
29 // - timestamp : RTP timestamp of a received frame
36 bool CalculateDelay(uint32_t timestamp,
48 // Controls if the RTP timestamp counter has had a wrap around
52 // - timestmap : RTP timestamp of the current frame.
53 void CheckForWrapArounds(uint32_t timestamp);
55 int64_t _zeroWallClock; // Local timestamp of the first video packet received
57 // The previous timestamp passed to the delay estimate
59 // The previous wall clock timestamp used by the delay estimat
    [all...]
timing_unittest.cc 33 uint32_t timeStamp = 0;
37 timing.UpdateCurrentDelay(timeStamp);
41 timing.IncomingTimestamp(timeStamp, clock.TimeInMilliseconds());
44 timing.UpdateCurrentDelay(timeStamp);
47 timing.RenderTimeMs(timeStamp, clock.TimeInMilliseconds()),
54 timeStamp += 90000;
57 timing.UpdateCurrentDelay(timeStamp);
59 timing.RenderTimeMs(timeStamp, clock.TimeInMilliseconds()),
64 timeStamp += 90000;
66 timing.UpdateCurrentDelay(timeStamp);
135 uint32_t timestamp = 0xFFFFFFFFu - 3 * 90000 \/ kFramerate; local
    [all...]
inter_frame_delay.cc 28 // Calculates the delay of a frame with the given timestamp.
30 bool VCMInterFrameDelay::CalculateDelay(uint32_t timestamp,
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 clock has overflowed since the last timestam
    [all...]
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TimestampTest.java 20 import java.sql.Timestamp;
29 * JUnit Testcase for the java.sql.Timestamp class
34 static class MockTimestamp extends Timestamp {
137 Timestamp theTimestamp = new Timestamp(TIME_TEST1);
138 // The Timestamp should have been created
141 Timestamp mockTimestamp = new MockTimestamp(TIME_TEST1);
174 Timestamp theTimestamp = new Timestamp(element[0], element[1],
176 assertNotNull("Timestamp not generated: ", theTimestamp)
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/
JavaBeanWithSqlTimestamp.java 19 private java.sql.Timestamp timestamp; field in class:JavaBeanWithSqlTimestamp
22 public java.sql.Timestamp getTimestamp() {
23 return timestamp;
26 public void setTimestamp(java.sql.Timestamp timestamp) {
27 this.timestamp = timestamp;
JavaBeanWithNullValues.java 18 import java.sql.Timestamp;
29 private Timestamp timestamp; field in class:JavaBeanWithNullValues
91 public Timestamp getTimestamp() {
92 return timestamp;
95 public void setTimestamp(Timestamp timestamp) {
96 this.timestamp = timestamp;
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/playback/linux/
datalogger_outputs.c 47 * @param[out] timestamp Time when sensor was sampled.
49 void inv_get_sensor_type_gyro_raw_short(short *values, inv_time_t *timestamp)
55 if (timestamp)
56 *timestamp = pg->timestamp;
62 * @param[out] timestamp Time when sensor was sampled.
65 inv_time_t *timestamp)
81 if (timestamp)
82 *timestamp = pg->timestamp;
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
TestSensorEvent.java 31 public final long timestamp; field in class:TestSensorEvent
47 * Construct a TestSensorEvent from {@link SensorEvent} data and a received timestamp.
50 * @param receivedTimestamp the timestamp when
56 timestamp = event.timestamp;
65 public TestSensorEvent(Sensor sensor, long timestamp, int accuracy, float[] values) {
66 this(sensor, timestamp, timestamp, accuracy, values);
72 public TestSensorEvent(Sensor sensor, long timestamp, long receivedTimestamp, int accuracy,
75 this.timestamp = timestamp
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
TimestampTest.java 34 * Tests for <code>Timestamp</code> class fields and methods
47 new Timestamp(null, cpath);
53 new Timestamp(now, null);
64 Timestamp one = new Timestamp(now, cpath);
65 Timestamp two = new Timestamp(now, cpath);
73 Timestamp two1 = new Timestamp(new Date(9999), cpath);
79 assertSame(new Timestamp(now, cpath).getSignerCertPath(), cpath)
    [all...]
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
results_holder.h 27 void inv_store_gaming_quaternion(const long *quat, inv_time_t timestamp);
28 void inv_store_accel_quaternion(const long *quat, inv_time_t timestamp);
44 inv_error_t inv_get_6axis_quaternion(long *data, inv_time_t *timestamp);
47 void inv_get_quaternion_set(long *data, int *accuracy, inv_time_t *timestamp);
49 inv_error_t inv_get_geomagnetic_quaternion(long *data, inv_time_t *timestamp);
50 void inv_set_geomagnetic_compass_correction(const long *data, inv_time_t timestamp);
51 void inv_get_geomagnetic_compass_correction(long *data, inv_time_t *timestamp);
61 void inv_set_compass_correction(const long *data, inv_time_t timestamp);
62 void inv_get_compass_correction(long *data, inv_time_t *timestamp);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
TimeLineGraphItem.java 27 long timestamp; field in class:TimeLineGraphItem
33 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial,boolean isBaseline) {
34 this(title, description, value, color,display, timestamp,isSpecial);
38 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp, boolean isSpecial) {
39 this(title, description, value, color,display, timestamp);
43 TimeLineGraphItem(String title, String description,double value,Color color,boolean display, long timestamp) {
44 this(title, description, value, color,timestamp);
48 TimeLineGraphItem(String title, String description, double value, Color color,long timestamp) {
53 this.timestamp=timestamp;
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
handler_tracking.ipp 83 handler_tracking_timestamp timestamp;
91 timestamp.seconds, timestamp.microseconds,
107 handler_tracking_timestamp timestamp;
111 timestamp.seconds, timestamp.microseconds,
120 handler_tracking_timestamp timestamp;
124 timestamp.seconds, timestamp.microseconds, id_);
132 handler_tracking_timestamp timestamp;
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
wpamsg.h 20 timestamp = QDateTime::currentDateTime();
25 QDateTime getTimestamp() const { return timestamp; }
30 QDateTime timestamp; member in class:WpaMsg
  /external/libweave/src/states/
state_change_queue_unittest.cc 30 auto timestamp = base::Time::Now(); local
32 timestamp, *CreateDictionaryValue("{'prop': {'name': 23}}")));
35 EXPECT_EQ(timestamp, changes.front().timestamp);
53 EXPECT_EQ(timestamp1, changes[0].timestamp);
55 EXPECT_EQ(timestamp2, changes[1].timestamp);
61 base::Time timestamp = base::Time::Now(); local
65 timestamp, *CreateDictionaryValue("{'prop': {'name1': 1}}")));
68 timestamp, *CreateDictionaryValue("{'prop': {'name2': 2}}")));
71 timestamp, *CreateDictionaryValue("{'prop': {'name1': 3}}")))
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
timestamp_scaler_unittest.cc 34 // Test both sides of the timestamp wrap-around.
35 for (uint32_t timestamp = 0xFFFFFFFF - 5; timestamp != 5; ++timestamp) {
36 // Scale to internal timestamp.
37 EXPECT_EQ(timestamp, scaler.ToInternal(timestamp, kRtpPayloadType));
39 EXPECT_EQ(timestamp, scaler.ToExternal(timestamp));
55 // Test both sides of the timestamp wrap-around
297 uint32_t timestamp = 4711; \/\/ Some number. local
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultMessageLogFactory.java 16 String destination, String timeStamp, boolean isSender,
18 return new MessageLog(message, source, destination, timeStamp,
23 String destination, long timeStamp, boolean isSender,
25 return new MessageLog(message, source, destination, timeStamp,
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
timestamp.proto 37 option go_package = "github.com/golang/protobuf/ptypes/timestamp";
44 // A Timestamp represents a point in time independent of any time zone
56 // Example 1: Compute Timestamp from POSIX `time()`.
58 // Timestamp timestamp;
59 // timestamp.set_seconds(time(NULL));
60 // timestamp.set_nanos(0);
62 // Example 2: Compute Timestamp from POSIX `gettimeofday()`.
67 // Timestamp timestamp;
    [all...]
  /system/core/libutils/
SystemClock.cpp 65 * DEBUG_TIMESTAMP to 1 and call the timestamp routine from a single thread
71 static inline void checkTimeStamps(int64_t timestamp,
84 if (timestamp < prevTimestamp) {
93 timestamp, gettime_method_names[curMethod],
98 *prevTimestampPtr = timestamp;
102 #define checkTimeStamps(timestamp, prevTimestampPtr, prevMethodPtr, curMethod)
113 int64_t timestamp; local
132 timestamp = seconds_to_nanoseconds(ts.tv_sec) + ts.tv_nsec;
133 checkTimeStamps(timestamp, &prevTimestamp, &prevMethod, METHOD_IOCTL);
134 return timestamp;
    [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...]
  /external/webrtc/webrtc/system_wrappers/include/
clock.h 31 // Return a timestamp in milliseconds relative to some arbitrary source; the
35 // Return a timestamp in microseconds relative to some arbitrary source; the
39 // Retrieve an NTP absolute timestamp in seconds and fractions of a second.
42 // Retrieve an NTP absolute timestamp in milliseconds.
45 // Converts an NTP timestamp to a millisecond timestamp.
58 // Return a timestamp in milliseconds relative to some arbitrary source; the
62 // Return a timestamp in microseconds relative to some arbitrary source; the
66 // Retrieve an NTP absolute timestamp in milliseconds.
69 // Converts an NTP timestamp to a millisecond timestamp
    [all...]
  /packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
TestResultLogger.java 15 public long timeStamp; // ms precision Unix Time UTC.
18 timeStamp = t;
46 (last.timeStamp - first.timeStamp+1));
64 long firstTimeStamp = last.timeStamp - period;
65 if(first.timeStamp > firstTimeStamp || mResults.size() < 3) {
71 if(preFirst.timeStamp < firstTimeStamp) {
76 long timeError = period - (last.timeStamp-first.timeStamp);
81 /(preFirst.timeStamp - first.timeStamp+1)
    [all...]
  /packages/apps/Camera2/src/com/android/camera/burst/
EvictionHandler.java 31 * Return the timestamp of the image that should be dropped.
40 * @return the timestamp of the frame to drop.
47 * @param timestamp the timestamp of the frame, this frame may or may not be
51 void onFrameCaptureResultAvailable(long timestamp,
57 * @param timestamp the timestamp of the inserted frame in the image buffer.
59 void onFrameInserted(long timestamp);
64 * @param timestamp the timestamp of the dropped frame
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/util/
time_util.h 44 #include <google/protobuf/timestamp.pb.h>
51 typedef google::protobuf::Timestamp Timestamp;
55 // The min/max Timestamp/Duration values we support.
64 // Converts Timestamp to/from RFC 3339 date string format.
69 // Note that Timestamp can only represent time from
71 // a Timestamp outside of this range is undefined behavior.
79 static string ToString(const Timestamp& timestamp);
80 static bool FromString(const string& value, Timestamp* timestamp)
    [all...]

Completed in 810 milliseconds

12 3 4 5 6 7 8 91011>>