Lines Matching refs:z
690 4 y=z;
691 5 z=0;
713 Line 4's "y=z" may seem odd, given that "z" has not yet been initialized.
714 But "y=z" does not set the value of "y" to that of "z", but instead
715 sets the value of "y" to the *address* of "z". Lines 4 and 5 therefore
716 create a simple linked list, with "y" pointing to "z" and "z" having a
726 from "y", replacing "z".
741 4 1:r0=z; 1:r1=0;
750 The only possible outcomes feature P1() loading a pointer to "z"
777 6 y=z; (* C *)
778 7 z=0;
825 6 int z = 1;
828 9 P0(int *x, int *z, int **y)
839 20 P1(int *z, int **y, int *c)
841 22 rcu_assign_pointer(*y, z);
845 26 P2(int *x, int *z, int **y, int *c)
858 "x". In addition, "z" is pre-initialized to prepare for P1(), which
859 will replace "x" with "z" in this list.
865 P1() on lines 20-24 updates the list header to instead reference "z",