Lines Matching refs:z
146 WRITE_ONCE(z, 1);
152 WRITE_ONCE(z, 2);
158 the final value of r0 be 1, the final value of z be 2, and the final
180 WRITE_ONCE(z, 1);
186 WRITE_ONCE(z, 2);
255 int z;
256 int *y = &z;
426 smp_store_release(&z, 1);
431 r1 = smp_load_acquire(z);
443 before CPU1()'s store to z, but this is not the case:
455 smp_store_release(&z, 1);
460 WRITE_ONCE(z, 2);
466 of z is 2, then the final value of r1 must also be 1, but it really is