Home
last modified time | relevance | path

Searched refs:TVN_BITS (Results 1 – 1 of 1) sorted by relevance

/linux-2.6.39/kernel/
Dtimer.c60 #define TVN_BITS (CONFIG_BASE_SMALL ? 4 : 6) macro
62 #define TVN_SIZE (1 << TVN_BITS)
342 } else if (idx < 1 << (TVR_BITS + TVN_BITS)) { in internal_add_timer()
345 } else if (idx < 1 << (TVR_BITS + 2 * TVN_BITS)) { in internal_add_timer()
346 int i = (expires >> (TVR_BITS + TVN_BITS)) & TVN_MASK; in internal_add_timer()
348 } else if (idx < 1 << (TVR_BITS + 3 * TVN_BITS)) { in internal_add_timer()
349 int i = (expires >> (TVR_BITS + 2 * TVN_BITS)) & TVN_MASK; in internal_add_timer()
366 i = (expires >> (TVR_BITS + 3 * TVN_BITS)) & TVN_MASK; in internal_add_timer()
1084 #define INDEX(N) ((base->timer_jiffies >> (TVR_BITS + (N) * TVN_BITS)) & TVN_MASK)
1206 timer_jiffies >>= TVN_BITS; in __next_timer_interrupt()