HomeSort by relevance Sort by last modified time
    Searched full:timestamp (Results 101 - 125 of 4313) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformEvent.h 92 double timestamp() const { return m_timestamp; } function in class:WebCore::PlatformEvent
109 PlatformEvent(Type type, Modifiers modifiers, double timestamp)
112 , m_timestamp(timestamp)
116 PlatformEvent(Type type, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
119 , m_timestamp(timestamp)
PlatformMouseEvent.h 53 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, Modifiers modifiers, double timestamp)
54 : PlatformEvent(type, modifiers, timestamp)
64 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, Modifiers modifiers, SyntheticEventType synthesized, double timestamp)
65 : PlatformEvent(type, modifiers, timestamp)
75 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp)
76 : PlatformEvent(type, shiftKey, ctrlKey, altKey, metaKey, timestamp)
  /external/netperf/
hist.h 88 HIST_timestamp - take a timestamp suitable for use in a histogram.
92 void HIST_timestamp(hrtime_t *timestamp);
94 void HIST_timestamp(hrt_t *timestamp);
96 void HIST_timestamp(LARGE_INTEGER *timestamp);
98 void HIST_timestamp(struct timeval *timestamp);
  /external/srec/portable/include/
ptimestamp.h 43 * Seconds component of timestamp.
48 * Milliseconds component of timestamp.
58 PORTABLE_API void PTimeStampSet(PTimeStamp *timestamp);
63 * @param a First timestamp
64 * @param b Second timestamp
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/linux/
inv_sysfs_utils.h 61 int inv_read_buffer(int fd, long *data, long long *timestamp);
63 long long *timestamp);
65 long long *timestamp);
77 long long *timestamp);
79 long long *timestamp);
inv_sysfs_utils.c 67 * @timestamp: Time when data was read from device. Use NULL if unsupported.
70 int inv_read_buffer(int fd, long *data, long long *timestamp)
78 if (!timestamp)
82 &data[2], timestamp);
84 if (count < (timestamp?4:3))
93 * @timestamp: Time when data was read from device. Use NULL if unsupported.
97 long long *timestamp)
105 if (!timestamp)
109 &data[2], timestamp);
110 if (count < (timestamp?4:3)
    [all...]
  /hardware/invensense/60xx/libsensors_iio/software/core/mllite/
data_builder.h 88 inv_time_t timestamp; member in struct:inv_single_sensor_t
100 inv_time_t timestamp; member in struct:inv_quat_sensor_t
176 inv_error_t inv_build_gyro(const short *gyro, inv_time_t timestamp);
178 inv_time_t timestamp);
180 inv_time_t timestamp);
181 inv_error_t inv_build_temp(const long temp, inv_time_t timestamp);
182 inv_error_t inv_build_quat(const long *quat, int status, inv_time_t timestamp);
206 void inv_get_accel_set(long *data, int8_t *accuracy, inv_time_t * timestamp);
207 void inv_get_gyro_set(long *data, int8_t *accuracy, inv_time_t * timestamp);
208 void inv_get_gyro_set_raw(long *data, int8_t *accuracy, inv_time_t * timestamp);
    [all...]
hal_outputs.c 53 * @param[out] timestamp The timestamp for this sensor. Derived from the timestamp sent to
58 inv_time_t * timestamp)
65 inv_get_accel_set(accel, accuracy, timestamp);
80 * @param[out] timestamp The timestamp for this sensor. Derived from the timestamp sent to
85 inv_time_t * timestamp)
89 inv_get_accel_set(accel, accuracy, timestamp);
    [all...]
  /external/chromium_org/content/browser/resources/media/
manager.js 80 updatePlayerInfoNoRecord: function(id, timestamp, key, value) {
86 this.players_[id].addPropertyNoRecord(timestamp, key, value);
96 * @param timestamp The timestamp of when the change occured. This
97 * timestamp is *not* normalized.
101 updatePlayerInfo: function(id, timestamp, key, value) {
107 this.players_[id].addProperty(timestamp, key, value);
  /external/chromium_org/media/cast/logging/
logging_raw.cc 60 info.timestamp.push_back(clock_->NowTicks());
65 it->second.timestamp.push_back(clock_->NowTicks());
89 base_info.timestamp.push_back(clock_->NowTicks());
98 base_info.timestamp.push_back(clock_->NowTicks());
102 packet_it->second.timestamp.push_back(clock_->NowTicks());
111 event_data.timestamp.push_back(clock_->NowTicks());
120 it->second.timestamp.push_back(clock_->NowTicks());
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
data_builder.c 372 /** Get last timestamp across all 3 sensors that are on.
373 * This find out which timestamp has the largest value for sensors that are on.
378 inv_time_t timestamp = 0; local
380 timestamp = sensors.accel.timestamp;
383 if (timestamp < sensors.gyro.timestamp) {
384 timestamp = sensors.gyro.timestamp;
388 if (timestamp < sensors.compass.timestamp)
    [all...]
  /external/chromium/chrome/browser/importer/
toolbar_importer_unittest.cc 48 // 12. No <timestamp> in a <bookmark> section.
55 "<timestamp>1153328691085181</timestamp> "
76 "<timestamp>1153328691085181</timestamp> "
97 "<timestamp>1153328691085181</timestamp> "
118 "<timestamp>1153328691085181</timestamp> "
139 "<timestamp>1153328691085181</timestamp>
    [all...]
  /external/chromium_org/media/cdm/ppapi/
ffmpeg_cdm_audio_decoder.cc 229 base::TimeDelta timestamp = local
235 if (is_vorbis && timestamp < base::TimeDelta()) {
239 0.5 + -timestamp.InSecondsF() * samples_per_second_);
242 last_input_timestamp_ = timestamp;
244 } else if (timestamp != kNoTimestamp()) {
245 if (timestamp < last_input_timestamp_) {
246 base::TimeDelta diff = timestamp - last_input_timestamp_;
248 << " ts " << timestamp.InMicroseconds() << " us"
253 last_input_timestamp_ = timestamp;
287 << "Error decoding an audio frame with timestamp:
363 const int64 timestamp = output_timestamp.InMicroseconds(); local
    [all...]
  /external/valgrind/main/helgrind/
README_MSMProp2.txt 38 segment contains a vector timestamp. The expression "HB(SS, currS)"
43 where happens_before(S,T) means that S's vector timestamp is ordered
44 before-or-equal to T's vector timestamp.
50 is equivalent to saying that currS has a timestamp which is
68 update a single vector timestamp. The following two equivalences
73 adding a segment S join-ing S's vector timestamp
74 to the segment-set to the current vector timestamp
77 currS's timestamp,
78 current vector timestamp )
92 where LS is a lockset (as before) and VTS is a vector timestamp
    [all...]
  /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/
BandwidthTestUtil.java 78 * @param timestamp
82 String timestamp) {
84 "&timestamp=" + timestamp;
119 * Post a given file for a given device and timestamp to the server.
122 * @param timestamp {@link String} timestamp
126 public static boolean postFileToServer(String server, String deviceId, String timestamp,
140 new StringPart("timestamp", timestamp),
    [all...]
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
params.rsh 27 rsDebug("data timestamp ", pData->timestamp);
28 rsDebug("param timestamp", p->dataTimestamp);
36 rsDebug("timestamp", pTransform->timestamp);
37 rsDebug("param timestamp", p->transformTimestamp);
83 if (p->transformTimestamp == pTransform->timestamp) {
86 p->transformTimestamp = pTransform->timestamp;
88 if (p->dataTimestamp == pData->timestamp) {
91 p->dataTimestamp = pData->timestamp;
    [all...]
  /hardware/qcom/display/msm8974/libhwcomposer/
hwc_vsync.cpp 66 uint64_t timestamp[2]; local
127 // extract timestamp
129 timestamp[dpy] = strtoull(vdata + strlen("VSYNC="),
132 // send timestamp to SurfaceFlinger
134 "%s: timestamp %llu sent to SF for dpy=%d",
135 __FUNCTION__, timestamp[dpy], dpy);
136 ctx->proc->vsync(ctx->proc, dpy, timestamp[dpy]);
150 //the vsync timestamp node cannot be opened at bootup. There is no
156 timestamp[HWC_DISPLAY_PRIMARY] = systemTime();
158 timestamp[HWC_DISPLAY_PRIMARY])
    [all...]
  /external/linux-tools-perf/
builtin-sched.c 82 u64 timestamp; member in struct:sched_atom
234 get_new_event(struct task_desc *task, u64 timestamp)
240 event->timestamp = timestamp;
262 add_sched_event_run(struct task_desc *task, u64 timestamp, u64 duration)
276 event = get_new_event(task, timestamp);
285 add_sched_event_wakeup(struct task_desc *task, u64 timestamp,
290 event = get_new_event(task, timestamp);
313 add_sched_event_sleep(struct task_desc *task, u64 timestamp,
316 struct sched_atom *event = get_new_event(task, timestamp);
    [all...]
  /external/speex/libspeex/
jitter.c 139 spx_uint32_t pointer_timestamp; /**< Timestamp of what we will *get* next */
140 spx_uint32_t last_returned_timestamp; /**< Useful for getting the next packet with the same timestamp (for fragmented media) */
143 spx_int32_t buffered; /**< Amount of data we think is still buffered by the application (timestamp units)*/
146 spx_uint32_t arrival[SPEEX_JITTER_MAX_BUFFER_SIZE]; /**< Packet arrival time (0 means it was late, even though it's a valid timestamp) */
150 spx_int32_t delay_step; /**< Size of the steps when adjusting buffering (timestamp units) */
170 The optimised function is in timestamp units and is:
173 @param late_factor Equivalent cost of a late frame (in timestamp units)
311 /* Timestamp is actually undefined at this point */
372 /*fprintf (stderr, "put packet %d %d\n", timestamp, span);*/
380 if (jitter->packets[i].data && LE32(jitter->packets[i].timestamp + jitter->packets[i].span, jitter->pointer_timestamp)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TimeStampParser.java 33 * Parser for TimeStamp header.
46 * @param timeStamp the header to parse
48 public TimeStampParser(String timeStamp) {
49 super(timeStamp);
62 * @return SIPHeader (TimeStamp object)
69 TimeStamp timeStamp = new TimeStamp();
71 headerName(TokenTypes.TIMESTAMP);
73 timeStamp.setHeaderName(SIPHeaderNames.TIMESTAMP)
    [all...]
  /external/chromium-trace/trace-viewer/src/tracing/trace_model/
counter_series.js 14 function CounterSample(timestamp, value) {
16 this.timestamp_ = timestamp;
27 set timestamp(timestamp) {
28 this.timestamp_ = timestamp;
135 this.samples_[i].timestamp = this.timestamps_[i];
  /external/chromium_org/media/base/
audio_timestamp_helper_unittest.cc 19 // Adds frames to the helper and returns the current timestamp in
33 EXPECT_EQ(frame_count, FramesToTarget(i)) << " Failure for timestamp "
47 // Verify that the output timestamp is always rounded down to the
49 // which is why the timestamp sometimes increments by 23 microseconds
58 // Verify that adding frames one frame at a time matches the timestamp
112 // Note: The timestamp ranges must match the positive values
  /external/chromium_org/media/ffmpeg/
ffmpeg_common.h 83 // Converts an int64 timestamp in |time_base| units to a base::TimeDelta.
84 // For example if |timestamp| equals 11025 and |time_base| equals {1, 44100}
88 int64 timestamp);
90 // Converts a base::TimeDelta into an int64 timestamp in |time_base| units.
91 // For example if |timestamp| is 0.5 seconds and |time_base| is {1, 44100}, then
95 const base::TimeDelta& timestamp);
  /external/chromium_org/sync/engine/
traffic_recorder_unittest.cc 71 // Ensure that timestamp is recorded correctly in traffic record.
81 EXPECT_EQ(expect_time, record.timestamp);
98 EXPECT_EQ(sample_time_1, record_1.timestamp);
99 EXPECT_EQ(sample_time_2, record_2.timestamp);
102 // Ensure that timestamp is added to ListValue of DictionaryValues in ToValue().
119 EXPECT_TRUE(record_value->GetString("timestamp", &time_str));
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
MotionSensorWTime.java 54 .addOutputPort("timestamp", Signature.PORT_OPTIONAL, FrameType.single(long.class))
108 OutputPort timeOutPort = getConnectedOutputPort("timestamp");
110 long timestamp = System.nanoTime(); local
111 Log.v("MotionSensor", "Timestamp is: " + timestamp);
113 timeStampFrame.setValue(timestamp);

Completed in 839 milliseconds

1 2 3 45 6 7 8 91011>>