• Home
  • Raw
  • Download

Lines Matching refs:warning

21 …for (float x = 0.1f; x <= 1.0f; x += 0.1f) {} // expected-warning{{Variable 'x' with floating poin…
22 …for (float x = 100000001.0f; x <= 100000010.0f; x += 1.0f) {} // expected-warning{{Variable 'x' wi…
23 …for (float x = 100000001.0f; x <= 100000010.0f; x++ ) {} // expected-warning{{Variable 'x' with fl…
24 …for (double x = 100000001.0; x <= 100000010.0; x++ ) {} // expected-warning{{Variable 'x' with flo…
25 …for (double x = 100000001.0; ((x)) <= 100000010.0; ((x))++ ) {} // expected-warning{{Variable 'x' …
27 …for (double x = 100000001.0; 100000010.0 >= x; x = x + 1.0 ) {} // expected-warning{{Variable 'x' …
30 …for (double x = 100000001.0; ((x)) <= 100000010.0; ((x))++, ++i ) {} // expected-warning{{Variable…
33 …for (FooType x = 100000001.0f; x <= 100000010.0f; x++ ) {} // expected-warning{{Variable 'x' with …
42 …gets(buff); // expected-warning{{Call to function 'gets' is extremely insecure as it can always re…
49 …getpw(2, buff); // expected-warning{{The getpw() function is dangerous as it may overflow the prov…
67 …setuid(2); // expected-warning{{The return value from the call to 'setuid' is not checked. If an …
68 …setuid(0); // expected-warning{{The return value from the call to 'setuid' is not checked. If an …
75 int t = setuid(2); // no-warning
76 (void)setuid (2); // no-warning
78 check(setuid (2)); // no-warning
80 …setreuid(2,2); // expected-warning{{The return value from the call to 'setreuid' is not checked. …
81 …setregid(2,2); // expected-warning{{The return value from the call to 'setregid' is not checked. …
101 …rand(); // expected-warning{{Function 'rand' is obsolete because it implements a poor random numbe…
102 …drand48(); // expected-warning{{Function 'drand48' is obsolete because it implements a poor random…
103 …erand48(a); // expected-warning{{Function 'erand48' is obsolete because it implements a poor rando…
104 …jrand48(a); // expected-warning{{Function 'jrand48' is obsolete because it implements a poor rando…
105 …lcong48(a); // expected-warning{{Function 'lcong48' is obsolete because it implements a poor rando…
106 …lrand48(); // expected-warning{{Function 'lrand48' is obsolete because it implements a poor random…
107 …mrand48(); // expected-warning{{Function 'mrand48' is obsolete because it implements a poor random…
108 …nrand48(a); // expected-warning{{Function 'nrand48' is obsolete because it implements a poor rando…
109 …rand_r(&b); // expected-warning{{Function 'rand_r' is obsolete because it implements a poor random…
110 …random(); // expected-warning{{The 'random' function produces a sequence of values that an adversa…
116 …char *x = mktemp("/tmp/zxcv"); // expected-warning{{Call to function 'mktemp' is insecure as it al…
141 …strcpy(x, y); //expected-warning{{Call to function 'strcpy' is insecure as it does not provide bou…
165 …strcat(x, y); //expected-warning{{Call to function 'strcat' is insecure as it does not provide bou…
176 …vfork(); //expected-warning{{Call to function 'vfork' is insecure as it can lead to denial of serv…
189 …mkstemp("XX"); // expected-warning {{Call to 'mkstemp' should have at least 6 'X's in the format s…
193 mkstemps("XXXXXX", 1); // expected-warning {{5 'X's seen}}
194 …mkstemps("XXXXXX", 2); // expected-warning {{Call to 'mkstemps' should have at least 6 'X's in the…
195 mkdtemp("XX"); // expected-warning {{2 'X's seen}}
196 …mkstemp("X"); // expected-warning {{Call to 'mkstemp' should have at least 6 'X's in the format st…