Home
last modified time | relevance | path

Searched refs:mod_64 (Results 1 – 2 of 2) sorted by relevance

/linux-4.1.27/arch/x86/kvm/
Di8254.c43 #define mod_64(x, y) ((x) - (y) * div64_u64(x, y)) macro
45 #define mod_64(x, y) ((x) % (y)) macro
69 res.l.low = div64_u64(((mod_64(rh, c) << 32) + (rl & 0xffffffff)), c); in muldiv64()
160 counter = c->count - (mod_64((2 * d), c->count)); in pit_get_count()
163 counter = c->count - mod_64(d, c->count); in pit_get_count()
190 out = ((mod_64(d, c->count) == 0) && (d != 0)); in pit_get_out()
193 out = (mod_64(d, c->count) < ((c->count + 1) >> 1)); in pit_get_out()
Dlapic.c46 #define mod_64(x, y) ((x) - (y) * div64_u64(x, y)) macro
48 #define mod_64(x, y) ((x) % (y)) macro
956 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period); in apic_get_tmcct()