Lines Matching refs:type
163 int type; in __srandom_r() local
172 type = buf->rand_type; in __srandom_r()
173 if ((unsigned int) type >= MAX_TYPES) in __srandom_r()
181 if (type == TYPE_0) in __srandom_r()
246 int type; in weak_alias() local
248 type = n < BREAK_4 ? TYPE_3 : TYPE_4; in weak_alias()
254 type = TYPE_0; in weak_alias()
257 type = n < BREAK_2 ? TYPE_1 : TYPE_2; in weak_alias()
259 int degree = random_poly_info.degrees[type]; in weak_alias()
260 int separation = random_poly_info.seps[type]; in weak_alias()
262 buf->rand_type = type; in weak_alias()
274 if (type != TYPE_0) in weak_alias()
275 state[-1] = (buf->rptr - state) * MAX_TYPES + type; in weak_alias()
298 int type; in weak_alias() local
314 type = new_state[-1] % MAX_TYPES; in weak_alias()
315 if (type < TYPE_0 || type > TYPE_4) in weak_alias()
318 buf->rand_deg = degree = random_poly_info.degrees[type]; in weak_alias()
319 buf->rand_sep = separation = random_poly_info.seps[type]; in weak_alias()
320 buf->rand_type = type; in weak_alias()
322 if (type != TYPE_0) in weak_alias()