Searched refs:UPPER_MASK (Results 1 – 2 of 2) sorted by relevance
100 *upper1 = (pid >> UPPER1_SHIFT) & UPPER_MASK; in pid_split()101 *upper2 = (pid >> UPPER2_SHIFT) & UPPER_MASK; in pid_split()110 return ((upper1 & UPPER_MASK) << UPPER1_SHIFT) | in pid_join()111 ((upper2 & UPPER_MASK) << UPPER2_SHIFT) | in pid_join()293 for (; upper1 <= UPPER_MASK; upper1++, upper2 = 0) { in trace_pid_list_next()299 for (; upper2 <= UPPER_MASK; upper2++, lower = 0) { in trace_pid_list_next()313 if (upper1 > UPPER_MASK) in trace_pid_list_next()
57 #define UPPER_MASK (UPPER_MAX - 1) macro