Lines Matching refs:p_priority_offset
105 static long p_priority_offset = 0; variable
169 p_priority_offset = -atol($3.buf);
172 if (errno != 0 || p_priority_offset < INT32_MIN)
178 p_priority = PRIORITY_DEFAULT + (u_int32_t) p_priority_offset;
190 p_priority_offset = atol($4.buf);
192 if (errno != 0 || p_priority_offset > INT32_MAX)
200 p_priority = PRIORITY_DEFAULT + (u_int32_t) p_priority_offset;
223 p_priority_offset = atol($5.buf);
225 if (errno != 0 || p_priority_offset > PRIORITY_OFFSET_NEGATIVE_MAX)
233 p_priority = $3 - (u_int32_t) p_priority_offset;
245 p_priority_offset = atol($5.buf);
247 if (errno != 0 || p_priority_offset > PRIORITY_OFFSET_POSITIVE_MAX)
255 p_priority = $3 + (u_int32_t) p_priority_offset;