/third_party/node/deps/npm/node_modules/@sigstore/verify/dist/ |
H A D | verifier.js | 35 const timestamps = this.verifyTimestamps(entity); 36 const signer = this.verifySigningKey(entity, timestamps); 44 // Checks that all of the timestamps in the entity are valid and returns them 48 const timestamps = entity.timestamps.map((timestamp) => { 58 // Check for duplicate timestamps 59 if (containsDupes(timestamps)) { 68 message: `expected ${this.options.tlogThreshold} tlog timestamps, got ${tlogCount}`, 74 message: `expected ${this.options.tsaThreshold} tsa timestamps, got ${tsaCount}`, 77 return timestamps [all...] |
/third_party/lwip/src/apps/sntp/ |
H A D | sntp.c | 128 * Treat NTP timestamps as signed two's-complement integers. This way, 129 * timestamps that have the MSB set simply become negative offsets from 158 /* Start offset of the timestamps to extract from the SNTP packet */ 286 sntp_process(const struct sntp_timestamps *timestamps) in sntp_process() argument 291 sec = (s32_t)lwip_ntohl(timestamps->xmit.sec); in sntp_process() 292 frac = lwip_ntohl(timestamps->xmit.frac); in sntp_process() 296 if (timestamps->recv.sec != 0 || timestamps->recv.frac != 0) in sntp_process() 315 t1 = SNTP_TIMESTAMP_TO_S64(timestamps->orig); in sntp_process() 316 t2 = SNTP_TIMESTAMP_TO_S64(timestamps in sntp_process() 441 struct sntp_timestamps timestamps; sntp_recv() local [all...] |
/third_party/node/deps/npm/node_modules/@sigstore/verify/dist/bundle/ |
H A D | index.js | 9 const timestamps = []; 11 timestamps.push({ 17 timestamps.push({ 26 timestamps,
|
/third_party/node/deps/npm/node_modules/@sigstore/verify/dist/key/ |
H A D | index.js | 25 function verifyPublicKey(hint, timestamps, trustMaterial) { 27 timestamps.forEach((timestamp) => { 38 function verifyCertificate(leaf, timestamps, trustMaterial) { 41 // Check that ALL certificates are valid for ALL of the timestamps 42 const validForDate = timestamps.every((timestamp) => path.every((cert) => cert.validForDate(timestamp)));
|
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglGetFrameTimestampsTests.cpp | 80 typedef EGLW_APICALL eglw::EGLBoolean (EGLW_APIENTRY* eglGetFrameTimestampsANDROIDFunc) (eglw::EGLDisplay dpy, eglw::EGLSurface surface, EGLuint64KHR frameId, eglw::EGLint numTimestamps, const eglw::EGLint *timestamps, EGLnsecsANDROID *values); 98 // Careful: This has microsecond precision, which can cause timestamps to 99 // appear non monotonic when compared to the nanosecond precision timestamps 101 // Current test expectations only make sure microsecond precision timestamps 102 // are less than the nanosecond precision timestamps, so this is okay. 523 TimestampInfoMap timestamps; in executeForConfig() local 524 timestamps[EGL_REQUESTED_PRESENT_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig() 525 timestamps[EGL_RENDERING_COMPLETE_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig() 526 timestamps[EGL_COMPOSITION_LATCH_TIME_ANDROID] = TimestampInfo(true, false, 0); in executeForConfig() 527 timestamps[EGL_FIRST_COMPOSITION_START_TIME_ANDROI in executeForConfig() [all...] |
/third_party/mesa3d/src/intel/vulkan/ |
H A D | anv_utrace.c | 211 anv_utrace_destroy_ts_buffer(struct u_trace_context *utctx, void *timestamps) in anv_utrace_destroy_ts_buffer() argument 215 struct anv_bo *bo = timestamps; in anv_utrace_destroy_ts_buffer() 222 void *timestamps, unsigned idx, in anv_utrace_record_ts() 228 struct anv_bo *bo = timestamps; in anv_utrace_record_ts() 239 void *timestamps, unsigned idx, void *flush_data) in anv_utrace_read_ts() 243 struct anv_bo *bo = timestamps; in anv_utrace_read_ts() 221 anv_utrace_record_ts(struct u_trace *ut, void *cs, void *timestamps, unsigned idx, bool end_of_pipe) anv_utrace_record_ts() argument 238 anv_utrace_read_ts(struct u_trace_context *utctx, void *timestamps, unsigned idx, void *flush_data) anv_utrace_read_ts() argument
|
/third_party/mesa3d/src/gallium/drivers/iris/ |
H A D | iris_utrace.c | 44 void *timestamps, unsigned idx, in iris_utrace_record_ts() 48 struct iris_resource *res = (void *) timestamps; in iris_utrace_record_ts() 67 void *timestamps, unsigned idx, void *flush_data) in iris_utrace_read_ts() 73 struct iris_resource *res = (void *) timestamps; in iris_utrace_read_ts() 43 iris_utrace_record_ts(struct u_trace *trace, void *cs, void *timestamps, unsigned idx, bool end_of_pipe) iris_utrace_record_ts() argument 66 iris_utrace_read_ts(struct u_trace_context *utctx, void *timestamps, unsigned idx, void *flush_data) iris_utrace_read_ts() argument
|
/third_party/mesa3d/src/intel/common/ |
H A D | intel_measure.c | 390 assert(batch->timestamps); in intel_measure_ready() 392 return (batch->timestamps[batch->index - 1] != 0); in intel_measure_ready() 408 uint64_t *timestamps = batch->timestamps; in intel_measure_push_result() local 409 assert(timestamps != NULL); in intel_measure_push_result() 410 assert(batch->index == 0 || timestamps[0] != 0); in intel_measure_push_result() 449 buffered_result->start_ts = timestamps[i]; in intel_measure_push_result() 450 buffered_result->end_ts = timestamps[i+1]; in intel_measure_push_result()
|
H A D | intel_measure.h | 152 uint64_t *timestamps; member
|
/third_party/mesa3d/src/util/perf/ |
H A D | u_trace.h | 48 * - GPU timestamps! A driver provided callback is used to emit timestamps 50 * GPU is not required), the timestamps are re-united with the trace 91 void *timestamps); 95 * stream to capture a 64b timestamp into the specified timestamps buffer, 103 void *timestamps, unsigned idx, 109 * the timestamps. (The timestamps will be read back in order, so it is 125 void *timestamps, unsigned idx, void *flush_data); 135 * cmdstream that records timestamps ha [all...] |
H A D | u_trace.c | 85 /* table of driver recorded 64b timestamps, index matches index 88 void *timestamps; member 278 chunk->utctx->delete_timestamp_buffer(chunk->utctx, chunk->timestamps); in free_chunk() 341 chunk->timestamps = ut->utctx->create_timestamp_buffer(ut->utctx, TIMESTAMP_BUF_SIZE); in get_chunk() 507 uint64_t ns = utctx->read_timestamp(utctx, chunk->timestamps, idx, chunk->flush_data); in process_chunk() 693 from_chunk->timestamps, from_idx, in u_trace_clone_append() 694 to_chunk->timestamps, to_chunk->num_traces, in u_trace_clone_append() 768 ut->utctx->record_timestamp(ut, cs, chunk->timestamps, tp_idx, tp->end_of_pipe); in u_trace_append()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
H A D | QueryHelper.cpp | 59 var<storage, read_write> timestamps : TimestampArr; 73 var timestamp = timestamps.t[index]; 77 timestamps.t[index].low = 0u; 78 timestamps.t[index].high = 0u; 82 // Multiply the values in timestamps buffer by the period. 90 timestamps.t[index].low = u32(round(f32(timestamp.low) * period)); 101 timestamps.t[index].low = result; 106 timestamps.t[index].high = u32(round(f32(timestamp.high) * period)) + w; 156 BufferBase* timestamps, in EncodeConvertTimestampsToNanoseconds() 172 {{0, timestamps}, { in EncodeConvertTimestampsToNanoseconds() 155 EncodeConvertTimestampsToNanoseconds(CommandEncoder* encoder, BufferBase* timestamps, BufferBase* availability, BufferBase* params) EncodeConvertTimestampsToNanoseconds() argument [all...] |
H A D | QueryHelper.h | 34 BufferBase* timestamps,
|
/third_party/mesa3d/src/gallium/auxiliary/util/ |
H A D | u_trace_gallium.c | 55 u_trace_pipe_delete_ts_buffer(struct u_trace_context *utctx, void *timestamps) in u_trace_pipe_delete_ts_buffer() argument 57 struct pipe_resource *buffer = timestamps; in u_trace_pipe_delete_ts_buffer()
|
/third_party/rust/crates/rustix/tests/fs/ |
H A D | y2038.rs | 23 let timestamps = Timestamps { in test_y2038_with_utimensat() 35 match utimensat(&dir, "foo", ×tamps, AtFlags::empty()) { in test_y2038_with_utimensat() 122 let timestamps = Timestamps { in test_y2038_with_futimens() 134 match futimens(&file, ×tamps) { in test_y2038_with_futimens()
|
/third_party/mesa3d/src/gallium/frontends/omx/ |
H A D | vid_dec_common.h | 104 OMX_TICKS timestamps[2]; \ 152 OMX_TICKS timestamps[2]; member
|
/third_party/skia/third_party/externals/dawn/src/tests/white_box/ |
H A D | QueryInternalShaderTests.cpp | 25 wgpu::Buffer timestamps, in EncodeConvertTimestampsToNanoseconds() 29 dawn_native::FromAPI(encoder.Get()), dawn_native::FromAPI(timestamps.Get()), in EncodeConvertTimestampsToNanoseconds() 89 kSentinelValue, // garbage data which is not written between timestamps 127 // The resolve buffer storing original timestamps and the converted values in RunTest() 141 // Write sentinel values and orignal timestamps to timestamps buffer in RunTest() 144 // The buffer indicating which values are available timestamps in RunTest() 171 // unsigned 64-bit integers (timestamps) multiplied by float (period). 173 // - The timestamps buffer contains the original timestamps resolve 24 EncodeConvertTimestampsToNanoseconds(wgpu::CommandEncoder encoder, wgpu::Buffer timestamps, wgpu::Buffer availability, wgpu::Buffer params) EncodeConvertTimestampsToNanoseconds() argument [all...] |
/third_party/mesa3d/src/amd/vulkan/radix_sort/ |
H A D | radix_sort_vk_ext.h | 46 // Number of timestamps is: 5 + (number of subpasses) 59 VkQueryPool timestamps; member
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/egl/ |
H A D | SurfaceEGL.cpp | 225 const EGLint *timestamps, in getFrameTimestamps() 232 mEGL->getFrameTimestampsANDROID(mSurface, frameId, numTimestamps, timestamps, values); in getFrameTimestamps() 223 getFrameTimestamps(EGLuint64KHR frameId, EGLint numTimestamps, const EGLint *timestamps, EGLnsecsANDROID *values) const getFrameTimestamps() argument
|
/third_party/mesa3d/src/gallium/drivers/freedreno/ |
H A D | freedreno_context.c | 452 fd_trace_record_ts(struct u_trace *ut, void *cs, void *timestamps, in fd_trace_record_ts() argument 457 struct pipe_resource *buffer = timestamps; in fd_trace_record_ts() 472 void *timestamps, unsigned idx, void *flush_data) in fd_trace_read_ts() 476 struct pipe_resource *buffer = timestamps; in fd_trace_read_ts() 471 fd_trace_read_ts(struct u_trace_context *utctx, void *timestamps, unsigned idx, void *flush_data) fd_trace_read_ts() argument
|
/third_party/mesa3d/src/gallium/frontends/omx/tizonia/ |
H A D | h264dprc.c | 138 priv->timestamps[0] = priv->timestamps[1]; in h264d_shift_buffers_left() 297 priv->timestamps[i] = in_buf->nTimeStamp; in decode_frame()
|
/third_party/typescript/tests/baselines/reference/tsbuild/outFile/ |
H A D | when-input-file-text-does-not-change-but-its-modified-time-changes.js | 630 [[90m12:00:44 AM[0m] Project 'src/first/tsconfig.json' is up to date but needs to update timestamps of output files that are older than input files
632 [[90m12:00:45 AM[0m] Updating output timestamps of project '/src/first/tsconfig.json'...
|
/third_party/typescript/tests/baselines/reference/tsbuild/sample1/ |
H A D | can-detect-when-and-what-to-rebuild.js | 503 [[90m12:00:51 AM[0m] Updating output timestamps of project '/src/logic/tsconfig.json'...
507 [[90m12:00:55 AM[0m] Updating output timestamps of project '/src/tests/tsconfig.json'...
|
/third_party/libinput/tools/ |
H A D | libinput-record.c | 129 } timestamps; member 1244 /* hidraw doesn't give us a timestamps, we have to make them up */ in handle_hidraw() 2154 if (ctx->timestamps.had_events_since_last_time) { in timefd_dispatch() 2156 ctx->timestamps.had_events_since_last_time = false; in timefd_dispatch() 2157 ctx->timestamps.skipped_timer_print = false; in timefd_dispatch() 2159 ctx->timestamps.skipped_timer_print = true; in timefd_dispatch() 2168 if (ctx->timestamps.skipped_timer_print) { in evdev_dispatch() 2170 ctx->timestamps.skipped_timer_print = false; in evdev_dispatch() 2174 ctx->timestamps.had_events_since_last_time = true; in evdev_dispatch() 2195 ctx->timestamps in hidraw_dispatch() [all...] |
/third_party/mesa3d/src/gallium/frontends/omx/bellagio/ |
H A D | vid_dec.c | 473 priv->timestamps[i] = buf->nTimeStamp; in vid_dec_DecodeBuffer() 527 priv->timestamps[0] = priv->timestamps[1]; in vid_dec_DecodeBuffer()
|