TVR_BITS           57 kernel/timer.c #define TVR_SIZE (1 << TVR_BITS)
TVR_BITS          264 kernel/timer.c 	} else if (idx < 1 << (TVR_BITS + TVN_BITS)) {
TVR_BITS          265 kernel/timer.c 		int i = (expires >> TVR_BITS) & TVN_MASK;
TVR_BITS          267 kernel/timer.c 	} else if (idx < 1 << (TVR_BITS + 2 * TVN_BITS)) {
TVR_BITS          268 kernel/timer.c 		int i = (expires >> (TVR_BITS + TVN_BITS)) & TVN_MASK;
TVR_BITS          270 kernel/timer.c 	} else if (idx < 1 << (TVR_BITS + 3 * TVN_BITS)) {
TVR_BITS          271 kernel/timer.c 		int i = (expires >> (TVR_BITS + 2 * TVN_BITS)) & TVN_MASK;
TVR_BITS          288 kernel/timer.c 		i = (expires >> (TVR_BITS + 3 * TVN_BITS)) & TVN_MASK;
TVR_BITS          754 kernel/timer.c #define INDEX(N) ((base->timer_jiffies >> (TVR_BITS + (N) * TVN_BITS)) & TVN_MASK)
TVR_BITS          850 kernel/timer.c 	timer_jiffies >>= TVR_BITS;