Home | History | Annotate | Download | only in Analysis

Lines Matching refs:np

5   char  *np = nullptr;
6 *np = 0; // expected-warning{{Dereference of null pointer}}
24 char *np = nullptr;
26 int *ip = &(((struct foo *)np)->f);
29 // *np = 0;
34 char *np = nullptr;
35 if (np != 0)
36 *np = 0; // no-warning
38 if (np != cp)
39 *np = 0; // no-warning