Lines Matching refs:x1
24 struct X1 { virtual void f(); } x1, x1arr[2]; variable
33 memset(&x1, 0, sizeof x1); // \ in test_warn()
44 memmove(&x1, 0, sizeof x1); // \ in test_warn()
47 memmove(0, &x1, sizeof x1); // \ in test_warn()
50 memcpy(&x1, 0, sizeof x1); // \ in test_warn()
53 memcpy(0, &x1, sizeof x1); // \ in test_warn()
56 memcmp(&x1, 0, sizeof x1); // \ in test_warn()
59 memcmp(0, &x1, sizeof x1); // \ in test_warn()
63 __builtin_memset(&x1, 0, sizeof x1); // \ in test_warn()
70 __builtin_memmove(&x1, 0, sizeof x1); // \ in test_warn()
73 __builtin_memmove(0, &x1, sizeof x1); // \ in test_warn()
76 __builtin_memcpy(&x1, 0, sizeof x1); // \ in test_warn()
79 __builtin_memcpy(0, &x1, sizeof x1); // \ in test_warn()
83 __builtin___memset_chk(&x1, 0, sizeof x1, sizeof x1); // \ in test_warn()
90 __builtin___memmove_chk(&x1, 0, sizeof x1, sizeof x1); // \ in test_warn()
93 __builtin___memmove_chk(0, &x1, sizeof x1, sizeof x1); // \ in test_warn()
96 __builtin___memcpy_chk(&x1, 0, sizeof x1, sizeof x1); // \ in test_warn()
99 __builtin___memcpy_chk(0, &x1, sizeof x1, sizeof x1); // \ in test_warn()
132 (void)sizeof memset(&x1, 0, sizeof x1); in test_nowarn()
135 if (false) memset(&x1, 0, sizeof x1); in test_nowarn()
141 N::memset(&x1, 0, sizeof x1); in test_nowarn()