/third_party/node/deps/v8/base/trace_event/common/ |
D | trace_event_common.h | 359 timestamp) \ 361 TRACE_EVENT_PHASE_INSTANT, category_group, name, timestamp, \ 365 timestamp, arg_name, arg_val) \ 367 TRACE_EVENT_PHASE_INSTANT, category_group, name, timestamp, \ 408 thread_id, timestamp) \ 411 timestamp, TRACE_EVENT_FLAG_NONE) 413 category_group, name, id, thread_id, timestamp) \ 416 timestamp, TRACE_EVENT_FLAG_COPY) 418 category_group, name, id, thread_id, timestamp, arg1_name, arg1_val) \ 421 timestamp, TRACE_EVENT_FLAG_COPY, arg1_name, arg1_val) [all …]
|
/third_party/node/src/tracing/ |
D | trace_event_common.h | 263 timestamp) \ argument 265 TRACE_EVENT_PHASE_INSTANT, category_group, name, timestamp, \ 269 timestamp, arg_name, arg_val) \ argument 271 TRACE_EVENT_PHASE_INSTANT, category_group, name, timestamp, \ 312 thread_id, timestamp) \ argument 315 timestamp, TRACE_EVENT_FLAG_NONE) 317 category_group, name, id, thread_id, timestamp) \ argument 320 timestamp, TRACE_EVENT_FLAG_COPY) 322 category_group, name, id, thread_id, timestamp, arg1_name, arg1_val) \ argument 325 timestamp, TRACE_EVENT_FLAG_COPY, arg1_name, arg1_val) [all …]
|
/third_party/ffmpeg/libavformat/ |
D | seek.c | 33 void avpriv_update_cur_dts(AVFormatContext *s, AVStream *ref_st, int64_t timestamp) in avpriv_update_cur_dts() argument 40 av_rescale(timestamp, in avpriv_update_cur_dts() 63 int64_t pos, int64_t timestamp, in ff_add_index_entry() argument 72 if (timestamp == AV_NOPTS_VALUE) in ff_add_index_entry() 78 …if (is_relative(timestamp)) //FIXME this maintains previous behavior but we should shift by the co… in ff_add_index_entry() 79 timestamp -= RELATIVE_TS_BASE; in ff_add_index_entry() 91 timestamp, AVSEEK_FLAG_ANY); in ff_add_index_entry() 95 av_assert0(index == 0 || ie[-1].timestamp < timestamp); in ff_add_index_entry() 98 if (ie->timestamp != timestamp) { in ff_add_index_entry() 99 if (ie->timestamp <= timestamp) in ff_add_index_entry() [all …]
|
D | rtmppkt.c | 169 int channel_id, timestamp, size; in rtmp_packet_read_one_chunk() local 223 timestamp = AV_RB32(buf); in rtmp_packet_read_one_chunk() 225 timestamp = ts_field; in rtmp_packet_read_one_chunk() 228 timestamp += prev_pkt[channel_id].timestamp; in rtmp_packet_read_one_chunk() 239 if ((ret = ff_rtmp_packet_create(p, channel_id, type, timestamp, in rtmp_packet_read_one_chunk() 245 prev_pkt[channel_id].timestamp = timestamp; in rtmp_packet_read_one_chunk() 257 p->timestamp = prev->timestamp; in rtmp_packet_read_one_chunk() 316 uint32_t timestamp; // full 32-bit timestamp or delta value in ff_rtmp_packet_write() local 326 pkt->timestamp >= prev_pkt[pkt->channel_id].timestamp; in ff_rtmp_packet_write() 328 timestamp = pkt->timestamp; in ff_rtmp_packet_write() [all …]
|
D | rtpdec_qcelp.c | 51 AVStream *st, AVPacket *pkt, uint32_t *timestamp, 55 AVStream *st, AVPacket *pkt, uint32_t *timestamp, in store_packet() argument 104 data->next_timestamp = *timestamp; in store_packet() 105 *timestamp = RTP_NOTS_VALUE; in store_packet() 108 return return_stored_frame(ctx, data, st, pkt, timestamp, buf, len); in store_packet() 152 AVStream *st, AVPacket *pkt, uint32_t *timestamp, in return_stored_frame() argument 159 *timestamp = data->next_timestamp; in return_stored_frame() 160 ret = store_packet(ctx, data, st, pkt, timestamp, data->next_data, in return_stored_frame() 202 AVStream *st, AVPacket *pkt, uint32_t *timestamp, in qcelp_parse_packet() argument 207 return store_packet(ctx, data, st, pkt, timestamp, buf, len); in qcelp_parse_packet() [all …]
|
D | rtpdec_vp8.c | 37 uint32_t timestamp; member 66 AVStream *st, AVPacket *pkt, uint32_t *timestamp, in vp8_handle_packet() argument 83 *timestamp = vp8->timestamp; in vp8_handle_packet() 196 old_timestamp = vp8->timestamp; in vp8_handle_packet() 206 vp8->timestamp = *timestamp; in vp8_handle_packet() 216 if (vp8->timestamp != *timestamp) { in vp8_handle_packet() 244 *timestamp = old_timestamp; in vp8_handle_packet()
|
D | rtpdec_svq3.c | 39 int64_t timestamp; member 45 uint32_t *timestamp, in svq3_parse_packet() argument 84 sv->timestamp = *timestamp; in svq3_parse_packet() 97 *timestamp = sv->timestamp; in svq3_parse_packet()
|
/third_party/libcoap/tests/ |
D | test_sendqueue.c | 24 static coap_tick_t timestamp[] = { variable 49 CU_ASSERT(node[1]->t == timestamp[1]); in t_sendqueue1() 62 CU_ASSERT(ctx->sendqueue->t == timestamp[1]); in t_sendqueue2() 63 CU_ASSERT(node[2]->t == timestamp[2] - timestamp[1]); in t_sendqueue2() 75 CU_ASSERT(node[3]->t == timestamp[3]); in t_sendqueue3() 80 CU_ASSERT(ctx->sendqueue->next->t == timestamp[1] - timestamp[3]); in t_sendqueue3() 81 CU_ASSERT(ctx->sendqueue->next->next->t == timestamp[2] - timestamp[1]); in t_sendqueue3() 104 CU_ASSERT(ctx->sendqueue->next->t == timestamp[1] - timestamp[3]); in t_sendqueue4() 105 CU_ASSERT(add_timestamps(ctx->sendqueue, 1) == timestamp[3]); in t_sendqueue4() 106 CU_ASSERT(add_timestamps(ctx->sendqueue, 2) == timestamp[1]); in t_sendqueue4() [all …]
|
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/ |
D | Timestamps.java | 142 public static boolean isValid(Timestamp timestamp) { in isValid() argument 143 return isValid(timestamp.getSeconds(), timestamp.getNanos()); in isValid() 168 public static Timestamp checkValid(Timestamp timestamp) { in checkValid() argument 169 long seconds = timestamp.getSeconds(); in checkValid() 170 int nanos = timestamp.getNanos(); in checkValid() 179 return timestamp; in checkValid() 203 public static String toString(Timestamp timestamp) { in toString() argument 204 checkValid(timestamp); in toString() 206 long seconds = timestamp.getSeconds(); in toString() 207 int nanos = timestamp.getNanos(); in toString() [all …]
|
/third_party/libdrm/freedreno/kgsl/ |
D | kgsl_pipe.c | 60 static int kgsl_pipe_wait(struct fd_pipe *pipe, uint32_t timestamp, in kgsl_pipe_wait() argument 65 .timestamp = timestamp, in kgsl_pipe_wait() 76 kgsl_pipe_process_pending(kgsl_pipe, timestamp); in kgsl_pipe_wait() 81 uint32_t *timestamp) in kgsl_pipe_timestamp() argument 92 *timestamp = req.timestamp; in kgsl_pipe_timestamp() 149 uint32_t timestamp = kgsl_bo_get_timestamp(kgsl_bo); in kgsl_pipe_pre_submit() local 150 if (timestamp) in kgsl_pipe_pre_submit() 151 fd_pipe_wait(kgsl_pipe->p3d, timestamp); in kgsl_pipe_pre_submit() 157 uint32_t timestamp) in kgsl_pipe_post_submit() argument 165 kgsl_bo->timestamp[pipe->id] = timestamp; in kgsl_pipe_post_submit() [all …]
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_sensor.js | 23 timestamp: '[PC preview] unknown timestamp' property 29 timestamp: '[PC preview] unknown timestamp' property 38 timestamp: '[PC preview] unknown timestamp' property 44 timestamp: '[PC preview] unknown timestamp' property 50 timestamp: '[PC preview] unknown timestamp' property 57 timestamp: '[PC preview] unknown timestamp' property 63 timestamp: '[PC preview] unknown timestamp' property 72 timestamp: '[PC preview] unknown timestamp' property 76 timestamp: '[PC preview] unknown timestamp' property 80 timestamp: '[PC preview] unknown timestamp' property [all …]
|
/third_party/node/deps/npm/node_modules/tuf-js/dist/ |
D | store.js | 20 get timestamp() { getter in TrustedMetadataStore 21 return this.trustedSet.timestamp; 64 if (this.timestamp) { 67 if (newTimestamp.signed.version < this.timestamp.signed.version) { 68 …sion ${newTimestamp.signed.version} is less than current version ${this.timestamp.signed.version}`… 71 if (newTimestamp.signed.version === this.timestamp.signed.version) { 72 …rsion ${newTimestamp.signed.version} is equal to current version ${this.timestamp.signed.version}`… 76 const snapshotMeta = this.timestamp.signed.snapshotMeta; 84 this.trustedSet.timestamp = newTimestamp; 90 if (!this.timestamp) { [all …]
|
/third_party/curl/scripts/ |
D | mk-ca-bundle.pl | 561 my @timestamp; 568 push @timestamp, chr(oct); 571 scalar(@timestamp) == 13 or die "Failed parsing timestamp"; 573 if($timestamp[12] ne "Z") { 579 timegm($timestamp[10] . $timestamp[11], # second 580 $timestamp[8] . $timestamp[9], # minute 581 $timestamp[6] . $timestamp[7], # hour 582 $timestamp[4] . $timestamp[5], # day 583 ($timestamp[2] . $timestamp[3]) - 1, # month 584 "20" . $timestamp[0] . $timestamp[1]); # year
|
/third_party/node/deps/npm/node_modules/@sigstore/verify/dist/timestamp/ |
D | tsa.js | 8 function verifyRFC3161Timestamp(timestamp, data, timestampAuthorities) { argument 9 const signingTime = timestamp.signingTime; 17 serialNumber: timestamp.signerSerialNumber, 18 issuer: timestamp.signerIssuer, 24 verifyTimestampForCA(timestamp, data, ca); 39 function verifyTimestampForCA(timestamp, data, ca) { argument 42 const signingTime = timestamp.signingTime; 66 timestamp.verify(data, signingKey);
|
D | index.js | 9 function verifyTSATimestamp(timestamp, data, timestampAuthorities) { argument 10 (0, tsa_1.verifyRFC3161Timestamp)(timestamp, data, timestampAuthorities); 13 logID: timestamp.signerSerialNumber, 14 timestamp: timestamp.signingTime, 38 timestamp: new Date(Number(entry.integratedTime) * 1000),
|
/third_party/typescript/tests/baselines/reference/ |
D | declarationEmitMappedTypeTemplateTypeofSymbol.js | 14 export const timestamp = x.now(); constant 19 export const timestamp = now(); constant 24 exports.timestamp = void 0; 26 exports.timestamp = x.now(); 30 exports.timestamp = void 0; 32 exports.timestamp = (0, a_1.now)();
|
/third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/ |
D | TimeUtilTest.java | 364 Timestamp timestamp = TimeUtil.parseTimestamp("1970-01-01T00:00:01.111111111Z"); in testTimestampConversion() local 365 assertEquals(1111111111, TimeUtil.toNanos(timestamp)); in testTimestampConversion() 366 assertEquals(1111111, TimeUtil.toMicros(timestamp)); in testTimestampConversion() 367 assertEquals(1111, TimeUtil.toMillis(timestamp)); in testTimestampConversion() 368 timestamp = TimeUtil.createTimestampFromNanos(1111111111); in testTimestampConversion() 369 assertEquals("1970-01-01T00:00:01.111111111Z", TimeUtil.toString(timestamp)); in testTimestampConversion() 370 timestamp = TimeUtil.createTimestampFromMicros(1111111); in testTimestampConversion() 371 assertEquals("1970-01-01T00:00:01.111111Z", TimeUtil.toString(timestamp)); in testTimestampConversion() 372 timestamp = TimeUtil.createTimestampFromMillis(1111); in testTimestampConversion() 373 assertEquals("1970-01-01T00:00:01.111Z", TimeUtil.toString(timestamp)); in testTimestampConversion() [all …]
|
/third_party/mesa3d/src/freedreno/vulkan/ |
D | tu_kgsl.c | 25 uint32_t timestamp; member 273 timestamp_to_fd(struct tu_queue *queue, uint32_t timestamp) in timestamp_to_fd() argument 279 .timestamp = timestamp, in timestamp_to_fd() 327 ret.timestamp = sync->timestamp; in sync_merge() 329 ret.timestamp = max_ts(ret.timestamp, sync->timestamp); in sync_merge() 331 ret.timestamp = min_ts(ret.timestamp, sync->timestamp); in sync_merge() 471 .timestamp = s.timestamp, in tu_QueueSubmit2() 500 sem->timestamp = req.timestamp; in tu_QueueSubmit2() 506 int fd = timestamp_to_fd(queue, req.timestamp); in tu_QueueSubmit2() 519 fence->timestamp = req.timestamp; in tu_QueueSubmit2() [all …]
|
/third_party/skia/third_party/externals/oboe/apps/OboeTester/app/src/main/java/com/mobileer/miditools/ |
D | MidiEventScheduler.java | 39 public void onSend(byte[] msg, int offset, int count, long timestamp) in onSend() argument 41 MidiEvent event = createScheduledEvent(msg, offset, count, timestamp); in onSend() 57 private MidiEvent(byte[] msg, int offset, int count, long timestamp) { in MidiEvent() argument 58 super(timestamp); in MidiEvent() 78 long timestamp) { in createScheduledEvent() argument 81 event = new MidiEvent(msg, offset, count, timestamp); in createScheduledEvent() 89 event.setTimestamp(timestamp); in createScheduledEvent()
|
/third_party/ffmpeg/libavformat/tests/ |
D | seek.c | 63 int64_t timestamp; in main() local 143 timestamp= (i*19362894167LL) % (duration*AV_TIME_BASE) - AV_TIME_BASE; in main() 146 timestamp= av_rescale_q(timestamp, AV_TIME_BASE_Q, st->time_base); in main() 149 if(i&1) ret = avformat_seek_file(ic, stream_id, INT64_MIN, timestamp, timestamp, 0); in main() 150 else ret = avformat_seek_file(ic, stream_id, timestamp, timestamp, INT64_MAX, 0); in main() 151 ts_str(ts_buf, timestamp, stream_id < 0 ? AV_TIME_BASE_Q : st->time_base); in main()
|
/third_party/mesa3d/src/gallium/frontends/clover/core/ |
D | timestamp.cpp | 30 timestamp::query::query(command_queue &q) : in query() 36 timestamp::query::query(query &&other) : in query() 42 timestamp::query::~query() { in ~query() 48 timestamp::query::operator()() const { in operator ()() 57 timestamp::current::current(command_queue &q) : in current() 62 timestamp::current::operator()() const { in operator ()()
|
/third_party/node/deps/v8/tools/ |
D | parse-processor.mjs | 106 console.error('Compile < execution timestamp', this); 116 addCompilationCacheHit(timestamp) { argument 117 this.compilationCacheHits.push(timestamp); 120 // Returns the smallest timestamp from the given list, ignoring 133 'Invalid timestamp min:', {result, timestamps, script: this}); 144 'Invalid timestamp max:', {result, timestamps, script: this}); 437 let timestamp = funktionOrScript[timestampPropertyName]; 438 if (timestamp === undefined) continue; 439 if (timestamp < start || end < timestamp) continue; 440 timestamp -= start; [all …]
|
/third_party/mesa3d/android/ |
D | mesa3d_cross.mk | 64 MESON_GEN_FILES_TARGET := $(MESON_GEN_DIR)/.timestamp 261 $(MESON_OUT_DIR)/.build.timestamp: MESON_GEN_NINJA:=$(MESON_GEN_NINJA) 262 $(MESON_OUT_DIR)/.build.timestamp: MESON_BUILD:=$(MESON_BUILD) 263 $(MESON_OUT_DIR)/.build.timestamp: $(MESON_GEN_FILES_TARGET) $(link_deps) 283 $(MESON_OUT_DIR)/install/.install.timestamp: MESON_COPY_LIBGALLIUM:=$(MESON_COPY_LIBGALLIUM) 284 $(MESON_OUT_DIR)/install/.install.timestamp: MESON_BUILD:=$(MESON_BUILD) 285 $(MESON_OUT_DIR)/install/.install.timestamp: $(MESON_OUT_DIR)/.build.timestamp 292 …M_TARGET_PREFIX)MESA3D_LIBGBM_BIN) $(MESA3D_GLES_BINS): $(MESON_OUT_DIR)/install/.install.timestamp 298 …ll/usr/local/lib/libvulkan_$(MESA_VK_LIB_SUFFIX_$1).so: $(MESON_OUT_DIR)/install/.install.timestamp 305 $($(M_TARGET_PREFIX)TARGET_OUT_VENDOR_SHARED_LIBRARIES)/dri/.targets.timestamp: MESA3D_GALLIUM_DRI_… [all …]
|
/third_party/mesa3d/src/util/ |
D | disk_cache.h | 98 disk_cache_get_function_timestamp(void *ptr, uint32_t* timestamp) in disk_cache_get_function_timestamp() argument 115 *timestamp = st.st_mtime; in disk_cache_get_function_timestamp() 123 uint32_t timestamp; in disk_cache_get_function_identifier() local 131 if (disk_cache_get_function_timestamp(ptr, ×tamp)) { in disk_cache_get_function_identifier() 132 _mesa_sha1_update(ctx, ×tamp, sizeof(timestamp)); in disk_cache_get_function_identifier() 179 disk_cache_create(const char *gpu_name, const char *timestamp, 285 disk_cache_create(const char *gpu_name, const char *timestamp, in disk_cache_create() argument
|
/third_party/libinput/doc/user/ |
D | timestamps.rst | 14 Most libinput events provide a timestamp in millisecond and/or microsecond 15 resolution. These timestamp usually increase monotonically, but libinput 17 to receive an event with a timestamp earlier than the previous event. 20 lower timestamp than an event from a different device. Tapping requires the 38 **LIBINPUT_EVENT_POINTER_MOTION** with the timestamp t3. 40 **LIBINPUT_EVENT_POINTER_BUTTON** (press) with a timestamp t1 and an event 41 **LIBINPUT_EVENT_POINTER_BUTTON** (release) with a timestamp t2.
|