/linux/tools/testing/selftests/bpf/prog_tests/ |
H A D | time_tai.c | 37 __u64 ts1, ts2, now; in test_time_tai() local 51 ts1 = skb.tstamp; in test_time_tai() 55 ASSERT_NEQ(ts1, 0, "tai_ts1"); in test_time_tai() 59 ASSERT_GE(ts2, ts1, "tai_forward"); in test_time_tai() 66 ASSERT_TRUE(now > ts1, "tai_future_ts1"); in test_time_tai() 70 ASSERT_TRUE(now - ts1 < TAI_THRESHOLD, "tai_range_ts1"); in test_time_tai()
|
H A D | fexit_sleep.c | 14 struct timespec ts1 = { .tv_nsec = 1 }; in do_sleep() local 18 (void)syscall(__NR_nanosleep, &ts1, NULL); in do_sleep()
|
/linux/drivers/media/pci/cx23885/ |
H A D | cx23885-cards.c | 2163 struct cx23885_tsport *ts1 = &dev->ts1; in cx23885_card_setup() local 2226 ts1->gen_ctrl_val = 0x4; /* Parallel */ in cx23885_card_setup() 2227 ts1->ts_clk_en_val = 0x1; /* Enable TS_CLK */ in cx23885_card_setup() 2228 ts1->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO; in cx23885_card_setup() 2243 ts1->gen_ctrl_val = 0xc; /* Serial bus + punctured clock */ in cx23885_card_setup() 2244 ts1->ts_clk_en_val = 0x1; /* Enable TS_CLK */ in cx23885_card_setup() 2245 ts1->src_sel_val = CX23885_SRC_SEL_PARALLEL_MPEG_VIDEO; in cx23885_card_setup() 2251 ts1->gen_ctrl_val = 0x10e; in cx23885_card_setup() 2252 ts1 in cx23885_card_setup() [all...] |
H A D | cx23885-417.c | 1013 dev->ts1.height = 480; in cx23885_codec_settings() 1015 dev->ts1.height = 576; in cx23885_codec_settings() 1019 dev->ts1.height, dev->ts1.width); in cx23885_codec_settings() 1021 dev->cxhdl.width = dev->ts1.width; in cx23885_codec_settings() 1022 dev->cxhdl.height = dev->ts1.height; in cx23885_codec_settings() 1129 dev->ts1.ts_packet_size = mpeglinesize; in queue_setup() 1130 dev->ts1.ts_packet_count = mpeglines; in queue_setup() 1144 return cx23885_buf_prepare(buf, &dev->ts1); in buffer_prepare() 1164 cx23885_buf_queue(&dev->ts1, bu in buffer_queue() [all...] |
H A D | cx23885-core.c | 977 cx23885_init_tsport(dev, &dev->ts1, 1); in cx23885_dev_setup() 1055 dev->ts1.num_frontends = in cx23885_dev_setup() 1057 if (cx23885_dvb_register(&dev->ts1) < 0) { in cx23885_dev_setup() 1113 cx23885_dvb_unregister(&dev->ts1); in cx23885_dev_unregister() 1676 struct cx23885_tsport *port = &dev->ts1; in cx23885_irq_417() 1783 struct cx23885_tsport *ts1 = &dev->ts1; in cx23885_irq() local 1818 ts1_count = cx_read(ts1->reg_gpcnt); in cx23885_irq() 1905 handled += cx23885_irq_ts(ts1, ts1_status); in cx23885_irq()
|
H A D | cimax2.c | 382 port = &dev->ts1; in netup_ci_slot_status()
|
H A D | cx23885.h | 383 struct cx23885_tsport ts1, ts2; member
|
H A D | cx23885-video.c | 1051 fe = &dev->ts1.analog_fe; in cx23885_set_freq_via_ops()
|
/linux/tools/testing/selftests/timers/ |
H A D | freq-step.c | 43 static double diff_timespec(struct timespec *ts1, struct timespec *ts2) in diff_timespec() argument 45 return ts1->tv_sec - ts2->tv_sec + (ts1->tv_nsec - ts2->tv_nsec) / 1e9; in diff_timespec() 51 struct timespec ts1, ts2, ts3; in get_sample() local 55 clock_gettime(CLOCK_MONOTONIC_RAW, &ts1); in get_sample() 59 ts1.tv_sec -= mono_raw_base; in get_sample() 63 delay = diff_timespec(&ts3, &ts1); in get_sample() 70 sample->offset = diff_timespec(&ts2, &ts1); in get_sample() 72 sample->time = ts1.tv_sec + ts1 in get_sample() [all...] |
/linux/drivers/pps/generators/ |
H A D | pps_gen_parport.c | 57 struct timespec64 expire_time, ts1, ts2, ts3, dts; in hrtimer_event() local 75 ktime_get_real_ts64(&ts1); in hrtimer_event() 81 if (expire_time.tv_sec != ts1.tv_sec || ts1.tv_nsec > lim) { in hrtimer_event() 84 (s64)ts1.tv_sec, ts1.tv_nsec); in hrtimer_event() 117 dts = timespec64_sub(ts1, expire_time); in hrtimer_event()
|
/linux/tools/testing/selftests/bpf/progs/ |
H A D | test_time_tai.c | 12 __u64 ts1, ts2; in time_tai() local 15 ts1 = bpf_ktime_get_tai_ns(); in time_tai() 19 skb->tstamp = ts1; in time_tai()
|
/linux/drivers/crypto/intel/qat/qat_common/ |
H A D | adf_clock.c | 43 struct timespec64 ts1, ts2, ts3, ts4; in measure_clock() local 50 ktime_get_real_ts64(&ts1); in measure_clock() 58 delta_us = timespec_to_us(&ts2) - timespec_to_us(&ts1); in measure_clock() 85 delta_us = timespec_to_us(&ts3) - timespec_to_us(&ts1); in measure_clock()
|
/linux/lib/math/ |
H A D | test_div64.c | 303 struct timespec64 ts, ts0, ts1; in test_div64_init() local 313 ktime_get_ts64(&ts1); in test_div64_init() 314 ts = timespec64_sub(ts1, ts0); in test_div64_init()
|
/linux/drivers/media/usb/cx231xx/ |
H A D | cx231xx-417.c | 1084 dev->ts1.height, dev->ts1.width); in cx231xx_codec_settings() 1086 dev->mpeg_ctrl_handler.width = dev->ts1.width; in cx231xx_codec_settings() 1087 dev->mpeg_ctrl_handler.height = dev->ts1.height; in cx231xx_codec_settings() 1223 dev->ts1.ts_packet_size = mpeglinesize; in queue_setup() 1224 dev->ts1.ts_packet_count = mpeglines; in queue_setup() 1493 s->r.width = dev->ts1.width; in vidioc_g_selection() 1494 s->r.height = dev->ts1.height; in vidioc_g_selection() 1525 dev->ts1.height = 480; in vidioc_s_std() 1530 dev->ts1 in vidioc_s_std() [all...] |
H A D | cx231xx.h | 707 struct cx231xx_tsport ts1, ts2; member
|
/linux/drivers/mmc/core/ |
H A D | mmc_test.c | 559 struct timespec64 *ts1, struct timespec64 *ts2) in mmc_test_print_rate() argument 564 ts = timespec64_sub(*ts2, *ts1); in mmc_test_print_rate() 583 unsigned int count, struct timespec64 *ts1, in mmc_test_print_avg_rate() argument 590 ts = timespec64_sub(*ts2, *ts1); in mmc_test_print_avg_rate() 1442 struct timespec64 ts1, ts2; in mmc_test_area_io_seq() local 1467 ktime_get_ts64(&ts1); in mmc_test_area_io_seq() 1483 mmc_test_print_avg_rate(test, sz, count, &ts1, &ts2); in mmc_test_area_io_seq() 1746 struct timespec64 ts1, ts2; in mmc_test_profile_trim_perf() local 1757 ktime_get_ts64(&ts1); in mmc_test_profile_trim_perf() 1762 mmc_test_print_rate(test, sz, &ts1, in mmc_test_profile_trim_perf() 1778 struct timespec64 ts1, ts2; mmc_test_seq_read_perf() local 1817 struct timespec64 ts1, ts2; mmc_test_seq_write_perf() local 1863 struct timespec64 ts1, ts2; mmc_test_profile_seq_trim_perf() local 1911 struct timespec64 ts1, ts2, ts; mmc_test_rnd_perf() local 2010 struct timespec64 ts1, ts2; mmc_test_seq_perf() local [all...] |
/linux/tools/testing/selftests/kvm/lib/ |
H A D | test_util.c | 95 struct timespec timespec_add(struct timespec ts1, struct timespec ts2) in timespec_add() argument 97 int64_t ns1 = timespec_to_ns(ts1); in timespec_add() 102 struct timespec timespec_sub(struct timespec ts1, struct timespec ts2) in timespec_sub() argument 104 int64_t ns1 = timespec_to_ns(ts1); in timespec_sub()
|
/linux/kernel/ |
H A D | smp.c | 231 static bool csd_lock_wait_toolong(call_single_data_t *csd, u64 ts0, u64 *ts1, int *bug_id, unsigned long *nmessages) in csd_lock_wait_toolong() argument 253 ts_delta = ts2 - *ts1; in csd_lock_wait_toolong() 263 *ts1 = ts2; in csd_lock_wait_toolong() 308 *ts1 = ts2; in csd_lock_wait_toolong() 324 u64 ts0, ts1; in __csd_lock_wait() local 326 ts1 = ts0 = ktime_get_mono_fast_ns(); in __csd_lock_wait() 328 if (csd_lock_wait_toolong(csd, ts0, &ts1, &bug_id, &nmessages)) in __csd_lock_wait()
|
/linux/tools/testing/selftests/mm/ |
H A D | migration.c | 70 struct timespec ts1, ts2; in migrate() local 73 if (clock_gettime(CLOCK_MONOTONIC, &ts1)) in migrate() 80 if (ts2.tv_sec - ts1.tv_sec >= RUNTIME) in migrate()
|
/linux/tools/testing/selftests/bpf/benchs/ |
H A D | bench_sockmap.c | 438 struct timespec ts1, ts2; in producer() local 462 clock_gettime(CLOCK_MONOTONIC, &ts1); in producer() 474 if (ts2.tv_sec - ts1.tv_sec > ctx.prod_run_time) in producer()
|
/linux/fs/ext4/ |
H A D | ioctl.c | 315 struct timespec64 ts1, ts2; in swap_inode_data() local 322 ts1 = inode_get_atime(inode1); in swap_inode_data() 325 inode_set_atime_to_ts(inode2, ts1); in swap_inode_data() 327 ts1 = inode_get_mtime(inode1); in swap_inode_data() 330 inode_set_mtime_to_ts(inode2, ts1); in swap_inode_data()
|
/linux/drivers/ptp/ |
H A D | ptp_idt82p33.c | 732 struct timespec64 ts1 = {0, 0}; in idt82p33_measure_settime_gettime_gap_overhead() local 738 err = _idt82p33_settime(channel, &ts1); in idt82p33_measure_settime_gettime_gap_overhead() 746 *overhead_ns = timespec64_to_ns(&ts2) - timespec64_to_ns(&ts1); in idt82p33_measure_settime_gettime_gap_overhead()
|
/linux/drivers/net/ethernet/mellanox/mlx5/core/ |
H A D | cmd.c | 1049 ent->ts1 = ktime_get_ns(); in cmd_work_handler() 1264 ds = ent->ts2 - ent->ts1; in mlx5_cmd_invoke() 1737 ds = ent->ts2 - ent->ts1; in mlx5_cmd_comp_handler()
|
/linux/include/linux/mlx5/ |
H A D | driver.h | 839 u64 ts1; member
|
/linux/Documentation/trace/ |
H A D | histogram.rst | 1736 # echo 'hist:keys=next_pid:ts1=common_timestamp ...' >> event/trigger
|