HomeSort by relevance Sort by last modified time
    Searched refs:icount_time_shift (Results 1 - 3 of 3) sorted by null

  /external/qemu/
qemu-timer.c 59 int icount_time_shift; variable
299 && icount_time_shift > 0) {
301 icount_time_shift--;
305 && icount_time_shift < MAX_ICOUNT_SHIFT) {
307 icount_time_shift++;
310 qemu_icount_bias = cur_icount - (qemu_icount << icount_time_shift);
329 return (count + (1 << icount_time_shift) - 1) >> icount_time_shift;
743 icount_time_shift = strtol(option, NULL, 0);
752 icount_time_shift = 3
    [all...]
cpus.c 599 count = (count + (1 << icount_time_shift) - 1)
600 >> icount_time_shift;
qemu-timer.h 157 extern int icount_time_shift;

Completed in 690 milliseconds