Searched refs:new_ts (Results 1 - 7 of 7) sorted by relevance

/linux-master/kernel/time/
H A Dtime.c202 struct timespec64 new_ts; local
206 if (get_user(new_ts.tv_sec, &tv->tv_sec) ||
207 get_user(new_ts.tv_nsec, &tv->tv_usec))
210 if (new_ts.tv_nsec > USEC_PER_SEC || new_ts.tv_nsec < 0)
213 new_ts.tv_nsec *= NSEC_PER_USEC;
220 return do_sys_settimeofday64(tv ? &new_ts : NULL, tz ? &new_tz : NULL);
246 struct timespec64 new_ts; local
250 if (get_user(new_ts.tv_sec, &tv->tv_sec) ||
251 get_user(new_ts
[all...]
/linux-master/drivers/staging/media/meson/vdec/
H A Dvdec_helpers.c233 struct amvdec_timestamp *new_ts; local
236 new_ts = kzalloc(sizeof(*new_ts), GFP_KERNEL);
237 if (!new_ts)
240 new_ts->ts = ts;
241 new_ts->tc = tc;
242 new_ts->offset = offset;
243 new_ts->flags = vbuf_flags;
246 list_add_tail(&new_ts->list, &sess->timestamps);
/linux-master/drivers/hv/
H A Dhv_util.c358 struct timespec64 new_ts; local
361 new_ts = ns_to_timespec64(reftime_to_ns(host_time));
369 if (timespec64_compare(&new_ts, &threshold_ts) >= 0)
/linux-master/drivers/media/dvb-core/
H A Ddvb_net.c312 u8 ts_remain, how_much, new_ts; member in struct:dvb_net_ule_handle
524 h->new_ts = 1;
552 h->new_ts = 1;
774 .new_ts = 1,
784 if (h.new_ts) {
796 if (h.new_ts) {
852 h.new_ts = 0;
862 h.new_ts = 1;
/linux-master/tools/perf/util/
H A Dthread-stack.c178 struct thread_stack *ts = thread__ts(thread), *new_ts; local
186 new_ts = calloc(new_sz, sizeof(*ts));
187 if (!new_ts)
190 memcpy(new_ts, ts, old_sz * sizeof(*ts));
191 new_ts->arr_sz = new_sz;
193 thread__set_ts(thread, new_ts);
194 ts = new_ts;
/linux-master/drivers/net/ethernet/pensando/ionic/
H A Dionic_phc.c68 struct hwtstamp_config *new_ts)
84 if (new_ts) {
85 config = new_ts;
87 /* If called with new_ts == NULL, replay the previous request
67 ionic_lif_hwstamp_set_ts_config(struct ionic_lif *lif, struct hwtstamp_config *new_ts) argument
/linux-master/drivers/net/ethernet/aquantia/atlantic/
H A Daq_ptp.c1317 static bool aq_ptp_sync_ts_updated(struct aq_ptp_s *aq_ptp, u64 *new_ts) argument
1338 *new_ts = sync_ts;

Completed in 180 milliseconds