Searched refs:quot (Results 1 – 3 of 3) sorted by relevance
20 u64 t, quot, rem; in perf_time_to_tsc() local23 quot = t / tc->time_mult; in perf_time_to_tsc()25 return (quot << tc->time_shift) + in perf_time_to_tsc()31 u64 quot, rem; in tsc_to_perf_time() local37 quot = cyc >> tc->time_shift; in tsc_to_perf_time()39 return tc->time_zero + quot * tc->time_mult + in tsc_to_perf_time()
1204 u64 quot, rem; in intel_pt_ns_to_ticks() local1206 quot = ns / pt->tc.time_mult; in intel_pt_ns_to_ticks()1208 return (quot << pt->tc.time_shift) + (rem << pt->tc.time_shift) / in intel_pt_ns_to_ticks()
66 u64 quot, rem; in mul_u64_u64_div64() local68 quot = a / c; in mul_u64_u64_div64()71 return quot * b + (rem * b) / c; in mul_u64_u64_div64()
Completed in 13 milliseconds