Lines Matching refs:source
14 void f1(char *source) { in f1() argument
16 …memcpy(destination + 0, source, 10); // expected-warning{{Null pointer passed as 1st argument to m… in f1()
20 void f2(char *source) { in f2() argument
22 …memcpy(destination - 0, source, 10); // expected-warning{{Null pointer passed as 1st argument to m… in f2()
26 void f3(char *source) { in f3() argument
29 …memcpy(destination, source, 10); // expected-warning{{Null pointer passed as 1st argument to memor… in f3()
33 void f4(char *source) { in f4() argument
36 …memcpy(destination, source, 10); // expected-warning{{Null pointer passed as 1st argument to memor… in f4()
40 void f5(char *source) { in f5() argument
43 …memcpy(destination2, source, 10); // expected-warning{{Null pointer passed as 1st argument to memo… in f5()
47 void f6(char *source) { in f6() argument
50 …memcpy(destination2, source, 10); // expected-warning{{Null pointer passed as 1st argument to memo… in f6()