TIMER_TICKS_PER_SEC  405 src/w32proc.c    const int tscale = 10 * TIMER_TICKS_PER_SEC;
TIMER_TICKS_PER_SEC  456 src/w32proc.c    const DWORD max_sleep = MAX_SINGLE_SLEEP * 1000 / TIMER_TICKS_PER_SEC;
TIMER_TICKS_PER_SEC  501 src/w32proc.c  	  Sleep (sleep_time * 1000 / TIMER_TICKS_PER_SEC);
TIMER_TICKS_PER_SEC  764 src/w32proc.c    value->it_value.tv_sec    = expire / TIMER_TICKS_PER_SEC;
TIMER_TICKS_PER_SEC  766 src/w32proc.c      (expire % TIMER_TICKS_PER_SEC) * (__int64)1000000 / TIMER_TICKS_PER_SEC;
TIMER_TICKS_PER_SEC  768 src/w32proc.c    value->it_interval.tv_sec = reload / TIMER_TICKS_PER_SEC;
TIMER_TICKS_PER_SEC  770 src/w32proc.c      (reload % TIMER_TICKS_PER_SEC) * (__int64)1000000 / TIMER_TICKS_PER_SEC;
TIMER_TICKS_PER_SEC  827 src/w32proc.c    reload = value->it_interval.tv_sec * TIMER_TICKS_PER_SEC;
TIMER_TICKS_PER_SEC  831 src/w32proc.c        && usecs && usecs * TIMER_TICKS_PER_SEC < clocks_min * 1000000)
TIMER_TICKS_PER_SEC  835 src/w32proc.c        usecs *= TIMER_TICKS_PER_SEC;
TIMER_TICKS_PER_SEC  839 src/w32proc.c    expire = value->it_value.tv_sec * TIMER_TICKS_PER_SEC;
TIMER_TICKS_PER_SEC  842 src/w32proc.c        && usecs * TIMER_TICKS_PER_SEC < clocks_min * 1000000)
TIMER_TICKS_PER_SEC  846 src/w32proc.c        usecs *= TIMER_TICKS_PER_SEC;