Lines Matching refs:pup
25 extern void **pup; in ref()
29 pqp = pup; in ref()
31 pup = &up; /* check-should-pass */ in ref()
33 pup = &qp; /* check-should-fail */ in ref()
34 pup = pqp; /* check-should-fail */ in ref()
40 extern void **pup; in bar()
44 prp = pup; in bar()
46 pup = &up; /* check-should-pass */ in bar()
48 pup = &rp; /* check-should-fail */ in bar()
49 pup = prp; /* check-should-fail */ in bar()
55 extern typeof(&up) pup; in baz()
59 prp = pup; in baz()
61 pup = &up; /* check-should-pass */ in baz()
63 pup = &rp; /* check-should-fail */ in baz()
64 pup = prp; /* check-should-fail */ in baz()