Lines Matching refs:TVR_BITS
65 #define TVR_BITS (CONFIG_BASE_SMALL ? 6 : 8) macro
67 #define TVR_SIZE (1 << TVR_BITS)
70 #define MAX_TVAL ((unsigned long)((1ULL << (TVR_BITS + 4*TVN_BITS)) - 1))
383 } else if (idx < 1 << (TVR_BITS + TVN_BITS)) { in __internal_add_timer()
384 int i = (expires >> TVR_BITS) & TVN_MASK; in __internal_add_timer()
386 } else if (idx < 1 << (TVR_BITS + 2 * TVN_BITS)) { in __internal_add_timer()
387 int i = (expires >> (TVR_BITS + TVN_BITS)) & TVN_MASK; in __internal_add_timer()
389 } else if (idx < 1 << (TVR_BITS + 3 * TVN_BITS)) { in __internal_add_timer()
390 int i = (expires >> (TVR_BITS + 2 * TVN_BITS)) & TVN_MASK; in __internal_add_timer()
408 i = (expires >> (TVR_BITS + 3 * TVN_BITS)) & TVN_MASK; in __internal_add_timer()
1196 #define INDEX(N) ((base->timer_jiffies >> (TVR_BITS + (N) * TVN_BITS)) & TVN_MASK)
1298 timer_jiffies >>= TVR_BITS; in __next_timer_interrupt()