Lines Matching refs:x1
18 struct X1 { virtual void f(); } x1;
22 memset(&x1, 0, sizeof x1); // \
29 memmove(&x1, 0, sizeof x1); // \
32 memmove(0, &x1, sizeof x1); // \
35 memcpy(&x1, 0, sizeof x1); // \
38 memcpy(0, &x1, sizeof x1); // \
42 __builtin_memset(&x1, 0, sizeof x1); // \
49 __builtin_memmove(&x1, 0, sizeof x1); // \
52 __builtin_memmove(0, &x1, sizeof x1); // \
55 __builtin_memcpy(&x1, 0, sizeof x1); // \
58 __builtin_memcpy(0, &x1, sizeof x1); // \
62 __builtin___memset_chk(&x1, 0, sizeof x1, sizeof x1); // \
69 __builtin___memmove_chk(&x1, 0, sizeof x1, sizeof x1); // \
72 __builtin___memmove_chk(0, &x1, sizeof x1, sizeof x1); // \
75 __builtin___memcpy_chk(&x1, 0, sizeof x1, sizeof x1); // \
78 __builtin___memcpy_chk(0, &x1, sizeof x1, sizeof x1); // \
99 (void)sizeof memset(&x1, 0, sizeof x1);
102 if (false) memset(&x1, 0, sizeof x1);
108 N::memset(&x1, 0, sizeof x1);