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

/linux-master/arch/x86/kvm/
H A Di8254.c44 #define mod_64(x, y) ((x) - (y) * div64_u64(x, y)) macro
46 #define mod_64(x, y) ((x) % (y)) macro
133 counter = c->count - (mod_64((2 * d), c->count));
136 counter = c->count - mod_64(d, c->count);
160 out = ((mod_64(d, c->count) == 0) && (d != 0));
163 out = (mod_64(d, c->count) < ((c->count + 1) >> 1));
H A Dlapic.c50 #define mod_64(x, y) ((x) - (y) * div64_u64(x, y)) macro
52 #define mod_64(x, y) ((x) % (y)) macro
1549 ns = mod_64(ktime_to_ns(remaining), apic->lapic_timer.period);

Completed in 146 milliseconds