Searched refs:UPPER_MASK (Results 1 – 2 of 2) sorted by relevance
103 *upper1 = (pid >> UPPER1_SHIFT) & UPPER_MASK; in pid_split()104 *upper2 = (pid >> UPPER2_SHIFT) & UPPER_MASK; in pid_split()113 return ((upper1 & UPPER_MASK) << UPPER1_SHIFT) | in pid_join()114 ((upper2 & UPPER_MASK) << UPPER2_SHIFT) | in pid_join()290 for (; upper1 <= UPPER_MASK; upper1++, upper2 = 0) { in trace_pid_list_next()296 for (; upper2 <= UPPER_MASK; upper2++, lower = 0) { in trace_pid_list_next()310 if (upper1 > UPPER_MASK) in trace_pid_list_next()
57 #define UPPER_MASK (UPPER_MAX - 1) macro