Lines Matching defs:in_tstamp
251 * @in_tstamp: Ingress/egress 32b nanoseconds timestamp value
262 * 2) assume that the in_tstamp was captured 2^31 nanoseconds (~2.1
286 static u64 ice_ptp_extend_32b_ts(u64 cached_phc_time, u32 in_tstamp)
295 * time and the in_tstamp value
297 delta = (in_tstamp - phc_time_lo);
299 /* Do not assume that the in_tstamp is always more recent than the
301 * in_tstamp was taken in the past, and should be converted
306 delta = (phc_time_lo - in_tstamp);
318 * @in_tstamp: Ingress/egress 40b timestamp value
341 static u64 ice_ptp_extend_40b_ts(struct ice_pf *pf, u64 in_tstamp)
354 (in_tstamp >> 8) & mask);