Lines Matching refs:TVR_BITS
63 #define TVR_BITS (CONFIG_BASE_SMALL ? 6 : 8) macro
65 #define TVR_SIZE (1 << TVR_BITS)
68 #define MAX_TVAL ((unsigned long)((1ULL << (TVR_BITS + 4*TVN_BITS)) - 1))
376 } else if (idx < 1 << (TVR_BITS + TVN_BITS)) { in __internal_add_timer()
377 int i = (expires >> TVR_BITS) & TVN_MASK; in __internal_add_timer()
379 } else if (idx < 1 << (TVR_BITS + 2 * TVN_BITS)) { in __internal_add_timer()
380 int i = (expires >> (TVR_BITS + TVN_BITS)) & TVN_MASK; in __internal_add_timer()
382 } else if (idx < 1 << (TVR_BITS + 3 * TVN_BITS)) { in __internal_add_timer()
383 int i = (expires >> (TVR_BITS + 2 * TVN_BITS)) & TVN_MASK; in __internal_add_timer()
401 i = (expires >> (TVR_BITS + 3 * TVN_BITS)) & TVN_MASK; in __internal_add_timer()
1171 #define INDEX(N) ((base->timer_jiffies >> (TVR_BITS + (N) * TVN_BITS)) & TVN_MASK)
1269 timer_jiffies >>= TVR_BITS; in __next_timer_interrupt()