Lines Matching refs:z
10 PetscComplex z = x; in TestComplexOperators() local
13 (void)z; in TestComplexOperators()
14 z = x; in TestComplexOperators()
15 z += x; in TestComplexOperators()
16 z = z + x; in TestComplexOperators()
17 z = x + z; in TestComplexOperators()
18 z = x; in TestComplexOperators()
19 z -= x; in TestComplexOperators()
20 z = z - x; in TestComplexOperators()
21 z = x - z; in TestComplexOperators()
22 z = x; in TestComplexOperators()
23 z *= x; in TestComplexOperators()
24 z = z * x; in TestComplexOperators()
25 z = x * z; in TestComplexOperators()
26 z = x; in TestComplexOperators()
27 z /= x; in TestComplexOperators()
28 z = z / x; in TestComplexOperators()
29 z = x / z; in TestComplexOperators()
30 (void)(z == x); in TestComplexOperators()
31 (void)(x == z); in TestComplexOperators()
32 (void)(z != x); in TestComplexOperators()
33 (void)(x != z); in TestComplexOperators()
34 res = PetscRealPartComplex(z); in TestComplexOperators()