Searched defs:timestamp (Results 51 - 75 of 283) sorted by relevance

1234567891011>>

/external/webrtc/webrtc/modules/rtp_rtcp/source/
H A Drtp_packet_history_unittest.cc43 uint32_t timestamp, uint8_t* array, size_t* cur_pos) {
48 array[(*cur_pos)++] = timestamp >> 24;
49 array[(*cur_pos)++] = timestamp >> 16;
50 array[(*cur_pos)++] = timestamp >> 8;
51 array[(*cur_pos)++] = timestamp;
42 CreateRtpPacket(uint16_t seq_num, uint32_t ssrc, uint8_t payload, uint32_t timestamp, uint8_t* array, size_t* cur_pos) argument
/external/webrtc/webrtc/modules/video_coding/codecs/vp8/
H A Ddefault_temporal_layers.cc165 int DefaultTemporalLayers::EncodeFlags(uint32_t timestamp) { argument
243 uint32_t timestamp) {
277 if (vp8_info->temporalIdx == 0 && timestamp != timestamp_) {
278 timestamp_ = timestamp;
240 PopulateCodecSpecific( bool base_layer_sync, CodecSpecificInfoVP8* vp8_info, uint32_t timestamp) argument
/external/webrtc/webrtc/modules/video_coding/test/
H A Dstream_generator.cc38 uint32_t timestamp = 90 * (time_ms - start_time_); local
43 packets_.push_back(GeneratePacket(sequence_number_, timestamp, packet_size,
48 packets_.push_back(GeneratePacket(sequence_number_, timestamp, 0, false,
55 uint32_t timestamp,
63 packet.timestamp = timestamp;
54 GeneratePacket(uint16_t sequence_number, uint32_t timestamp, unsigned int size, bool first_packet, bool marker_bit, FrameType type) argument
/external/webrtc/webrtc/modules/video_coding/
H A Dvideo_coding_robustness_unittest.cc52 void InsertPacket(uint32_t timestamp, argument
61 rtp_info.header.timestamp = timestamp;
197 EXPECT_EQ(VCM_OK, vcm_->Decode(33)); // Decode timestamp 0.
211 EXPECT_EQ(VCM_OK, vcm_->Decode(0)); // Decode timestamp 3000 incomplete.
215 EXPECT_EQ(VCM_OK, vcm_->Decode(23)); // Decode timestamp 6000 complete.
224 EXPECT_EQ(VCM_OK, vcm_->Decode(33)); // Decode timestamp 9000 complete.
/external/webrtc/webrtc/voice_engine/
H A Dvoe_video_sync_impl.cc47 unsigned int& timestamp) {
59 return channel_ptr->GetPlayoutTimestamp(timestamp);
62 int VoEVideoSyncImpl::SetInitTimestamp(int channel, unsigned int timestamp) { argument
64 "SetInitTimestamp(channel=%d, timestamp=%lu)", channel,
65 timestamp);
78 return channelPtr->SetInitTimestamp(timestamp);
46 GetPlayoutTimestamp(int channel, unsigned int& timestamp) argument
/external/conscrypt/platform/src/main/java/org/conscrypt/ct/
H A DSignedCertificateTimestamp.java45 private final long timestamp; field in class:SignedCertificateTimestamp
54 long timestamp, byte[] extensions,
58 this.timestamp = timestamp;
71 return timestamp;
119 Serialization.writeNumber(output, timestamp, CTConstants.TIMESTAMP_LENGTH);
53 SignedCertificateTimestamp(Version version, byte[] logId, long timestamp, byte[] extensions, DigitallySigned signature, Origin origin) argument
/external/deqp/executor/
H A DxeBatchResult.hpp50 std::string timestamp; member in class:xe::SessionInfo
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
H A DBuildProperties.java42 private String timestamp; field in class:BuildProperties
43 // the name of the directory containing the builds, typically <buildType>-<buildType><build date>-<timestamp>
106 timestamp = buildProperties.get("timestamp").toString();
109 "Value for timestamp not found in monitor.properties");
205 * Returns the timestamp.
209 return timestamp;
221 * Sets the timestamp.
222 * @param timestamp The timestamp t
224 setTimestamp(String timestamp) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
H A DTimeLineGraph.java148 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp) { argument
149 addItem(groupName, name, description, value, col, display, timestamp,false);
152 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial) { argument
154 timestamp,isSpecial,false);
157 public void addItem(String groupName,String name, String description, double value, Color col, boolean display, long timestamp,boolean isSpecial,boolean drawBaseline) { argument
164 timestamp,isSpecial,drawBaseline));
212 if (graphItem.timestamp > mostRecentTimestamp) {
213 mostRecentTimestamp = graphItem.timestamp;
250 if (thisItem.timestamp==-1)
267 long minimumTimeDiffPreceding=thisItem.timestamp;
[all...]
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DCodeMangler.java42 private boolean timestamp; // true if we read/write timestamp field in class:CodeMangler
64 "-f[orce] - force reprocessing of files even if timestamp and headers match\n" +
65 "-t[imestamp] - expect/write timestamp in header\n" +
89 timestamp = false;
126 timestamp = true;
376 if (timestamp) {
422 if (timestamp) {
592 if (timestamp) {
593 outfile.setLastModified(outModTime); // synch with timestamp
[all...]
/external/iproute2/bridge/
H A Dbridge.c26 int timestamp; variable
149 } else if (matches(opt, "-timestamp") == 0) {
150 ++timestamp;
/external/iproute2/ip/
H A Dip.c36 int timestamp; variable
238 } else if (matches(opt, "-timestamp") == 0) {
239 ++timestamp;
241 ++timestamp;
/external/kernel-headers/original/uapi/linux/
H A Ddlm_netlink.h33 unsigned long timestamp; member in struct:dlm_lock_data
/external/libdrm/freedreno/kgsl/
H A Dkgsl_bo.c86 uint32_t timestamp = kgsl_bo_get_timestamp(to_kgsl_bo(bo)); local
103 if (timestamp > current)
109 if (timestamp)
110 fd_pipe_wait(pipe, timestamp);
251 * the timestamp of the last ISSUEIBCMDS on the buffer.
254 * 1) Only set the timestamp for buffers w/ an flink name, ie.
257 * 2) Only set the timestamp for buffers submitted to the 3d ring
264 * The waiting on timestamp happens before flush, and setting of
265 * timestamp happens after flush. It is transparent to the user
271 uint32_t timestamp)
270 kgsl_bo_set_timestamp(struct kgsl_bo *kgsl_bo, uint32_t timestamp) argument
292 uint32_t timestamp = 0; local
[all...]
H A Dkgsl_pipe.c59 static int kgsl_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp, argument
64 .timestamp = timestamp,
75 kgsl_pipe_process_pending(kgsl_pipe, timestamp);
80 uint32_t *timestamp)
91 *timestamp = req.timestamp;
148 uint32_t timestamp = kgsl_bo_get_timestamp(kgsl_bo); local
149 if (timestamp)
150 fd_pipe_wait(kgsl_pipe->p3d, timestamp);
79 kgsl_pipe_timestamp(struct kgsl_pipe *kgsl_pipe, uint32_t *timestamp) argument
155 kgsl_pipe_post_submit(struct kgsl_pipe *kgsl_pipe, uint32_t timestamp) argument
174 kgsl_pipe_process_pending(struct kgsl_pipe *kgsl_pipe, uint32_t timestamp) argument
[all...]
/external/libnl/lib/netfilter/
H A Dqueue_msg.c101 struct nfqnl_msg_packet_timestamp *timestamp = nla_data(attr); local
104 tv.tv_sec = ntohll(timestamp->sec);
105 tv.tv_usec = ntohll(timestamp->usec);
/external/mesa3d/src/gallium/drivers/llvmpipe/
H A Dlp_texture.h119 unsigned timestamp; member in struct:llvmpipe_resource
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/
H A DJavaBeanWithNullValues.java29 private Timestamp timestamp; field in class:JavaBeanWithNullValues
92 return timestamp;
95 public void setTimestamp(Timestamp timestamp) { argument
96 this.timestamp = timestamp;
/external/speex/include/speex/
H A Dspeex_jitter.h63 spx_uint32_t timestamp; /**< Timestamp for the packet */ member in struct:_JitterBufferPacket
64 spx_uint32_t span; /**< Time covered by the packet (same units as timestamp) */
112 /** Equivalent cost of one percent late packet in timestamp units */
154 /** Used right after jitter_buffer_get() to obtain another packet that would have the same timestamp.
162 /** Get pointer timestamp of jitter buffer
176 * @param rem Amount of data buffered by the application (timestamp units)
/external/toolchain-utils/
H A Dsetup_chromeos.py85 def TimeToCommonVersion(timestamp):
86 """Convert timestamp to common image version."""
87 tdt = datetime.fromtimestamp(float(timestamp))
95 logger.GetLogger().LogFatal('No common version for timestamp')
112 (4) 'lkgm' for the lkgm release before timestamp
114 (6) 'common' for the team common stable version before timestamp
116 parser.add_argument('--timestamp',
117 dest='timestamp',
121 ' before the timestamp. Use in combination with'
150 if not options.timestamp
151 timestamp = '' variable
153 timestamp = options.timestamp.strip() variable
[all...]
/external/toybox/toys/posix/
H A Dcpio.c112 unsigned size, mode, uid, gid, timestamp; local
132 timestamp = x8u(toybuf+46); // unsigned 32 bit, so year 2100 problem
186 // Set ownership and timestamp.
205 // set timestamp
210 times[0].tv_sec = times[1].tv_sec = timestamp;
/external/webrtc/webrtc/base/
H A Dasyncpacketsocket.h48 PacketTime() : timestamp(-1), not_before(-1) {}
49 PacketTime(int64_t timestamp, int64_t not_before) argument
50 : timestamp(timestamp), not_before(not_before) {}
52 int64_t timestamp; // Receive time after socket delivers the data. member in struct:rtc::PacketTime
55 // potential error in the |timestamp| value, in case the system, is busy. For
/external/webrtc/webrtc/common_video/
H A Di420_video_frame_unittest.cc48 EXPECT_EQ(123u, frame.timestamp());
72 uint32_t timestamp = 1; local
84 small_frame.set_timestamp(timestamp);
118 uint32_t timestamp = 1; local
140 frame1.set_timestamp(timestamp);
157 EXPECT_EQ(frame2.timestamp(), frame1.timestamp());
162 frame2.set_timestamp(timestamp + 1);
167 EXPECT_NE(frame2.timestamp(), frame1.timestamp());
[all...]
/external/webrtc/webrtc/modules/audio_coding/codecs/red/
H A Daudio_encoder_copy_red_unittest.cc87 AudioEncoder::EncodedInfo Encode(uint32_t timestamp, argument
/external/webrtc/webrtc/modules/audio_coding/neteq/
H A Dnack.cc53 uint32_t timestamp) {
54 // Just record the value of sequence number and timestamp if this is the
58 timestamp_last_received_rtp_ = timestamp;
64 timestamp_last_decoded_rtp_ = timestamp;
79 UpdateSamplesPerPacket(sequence_number, timestamp);
84 timestamp_last_received_rtp_ = timestamp;
135 uint32_t timestamp = EstimateTimestamp(n); local
136 NackElement nack_element(TimeToPlay(timestamp), timestamp, is_missing); local
151 uint32_t timestamp) {
52 UpdateLastReceivedPacket(uint16_t sequence_number, uint32_t timestamp) argument
150 UpdateLastDecodedPacket(uint16_t sequence_number, uint32_t timestamp) argument
[all...]

Completed in 1339 milliseconds

1234567891011>>