Home
last modified time | relevance | path

Searched refs:z (Results 1 – 25 of 38) sorted by relevance

12

/tools/testing/selftests/ftrace/test.d/instances/
A Dinstance.tc7 rmdir x y z 2>/dev/null
31 mkdir z
34 rmdir z
71 mkdir x y z
72 ls x y z
73 rmdir x y z
74 for d in x y z; do
A Dinstance-event.tc91 mkdir z
94 rmdir z
131 mkdir x y z
132 ls x y z
133 rmdir x y z
134 for d in x y z; do
/tools/testing/selftests/bpf/progs/
A Dget_func_args_test.c14 __u64 a = 0, z = 0, ret = 0; in BPF_PROG() local
33 err = bpf_get_func_arg(ctx, 1, &z); in BPF_PROG()
47 __u64 a = 0, b = 0, z = 0, ret = 0; in BPF_PROG() local
60 err = bpf_get_func_arg(ctx, 2, &z); in BPF_PROG()
74 __u64 a = 0, b = 0, z = 0, ret = 0; in BPF_PROG() local
87 err = bpf_get_func_arg(ctx, 2, &z); in BPF_PROG()
103 __u64 a = 0, b = 0, z = 0, ret = 0; in BPF_PROG() local
116 err = bpf_get_func_arg(ctx, 2, &z); in BPF_PROG()
A Dtest_subprogs.c29 static __noinline int sub3(int z) in sub3() argument
31 return z + 3 + sub1(4); in sub3()
A Dbtf_dump_test_case_namespacing.c66 enum Z *z; in f()
A Dcore_reloc_types.h828 struct { int x; int y; int z; } struct_field; member
932 int z; member
937 typedef struct { int x, y, z; } anon_struct_typedef; member
997 int z; member
1003 typedef struct { int z, x, y; } anon_struct_typedef___diff; member
1046 char z; member
1098 int z; member
A Dtest_core_reloc_type_based.c32 int z; member
37 typedef struct { int x, y, z; } anon_struct_typedef; member
A Dtest_skeleton.c58 struct my_value { int x, y, z; }; member
A Dtest_core_reloc_type_id.c25 int z; member
A Dbtf_dump_test_case_syntax.c150 int z; member
/tools/testing/selftests/powerpc/math/
A Dmma.c20 uint32_t z[4*4]; in mma() local
29 test_mma(&x, &y, &z); in mma()
32 printf("MMA[%d] = %d ", i, z[i]); in mma()
34 if (z[i] == exp[i]) { in mma()
/tools/memory-model/litmus-tests/
A DZ6.0+pooncelock+pooncelock+pombonce.litmus21 P1(int *y, int *z, spinlock_t *mylock)
27 WRITE_ONCE(*z, 1);
31 P2(int *x, int *z)
35 WRITE_ONCE(*z, 2);
40 exists (1:r0=1 /\ z=2 /\ 2:r1=0)
A DISA2+pooncelock+pooncelock+pombonce.litmus20 P1(int *y, int *z, spinlock_t *mylock)
26 WRITE_ONCE(*z, 1);
30 P2(int *x, int *z)
35 r2 = READ_ONCE(*z);
A DISA2+poonceonces.litmus20 P1(int *y, int *z)
25 WRITE_ONCE(*z, 1);
28 P2(int *x, int *z)
33 r0 = READ_ONCE(*z);
A DZ6.0+pooncerelease+poacquirerelease+fencembonceonce.litmus25 P1(int *y, int *z)
30 smp_store_release(z, 1);
33 P2(int *x, int *z)
37 WRITE_ONCE(*z, 2);
42 exists (1:r0=1 /\ z=2 /\ 2:r1=0)
A DISA2+pooncerelease+poacquirerelease+poacquireonce.litmus22 P1(int *y, int *z)
27 smp_store_release(z, 1);
30 P2(int *x, int *z)
35 r0 = smp_load_acquire(z);
/tools/perf/util/
A Ds390-cpumsf-kernel.h19 unsigned int z:2; /* zeros */ member
/tools/net/sunrpc/xdrgen/grammars/
A Dxdr.lark108 identifier : /([a-z]|[A-Z])(_|[a-z]|[A-Z]|[0-9])*/
/tools/testing/selftests/hid/tests/
A Dtest_sony.py64 for z in range(-32000, 32000, 4000):
65 r = uhdev.event(accel=(None, None, z))
71 assert z - 1 <= value <= z + 1
/tools/memory-model/Documentation/
A Drecipes.txt146 WRITE_ONCE(z, 1);
152 WRITE_ONCE(z, 2);
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);
[all …]
A Dlocking.txt172 WRITE_ONCE(z, 1);
178 WRITE_ONCE(z, 2);
184 the final value of r0 be 1, the final value of z be 2, and the final
206 WRITE_ONCE(z, 1);
212 WRITE_ONCE(z, 2);
221 value of z is 2, and the final value of r1 is 0.
A Dlitmus-tests.txt690 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
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;
777 6 y=z; (* C *)
778 7 z=0;
825 6 int z = 1;
[all …]
/tools/lib/bpf/
A Dbpf_tracing.h720 …__builtin_choose_expr(sizeof(t) == 1, ({ union { __u8 z[1]; t x; } ___t = { .z = {ctx[n]}}; ___t.x…
721 …__builtin_choose_expr(sizeof(t) == 2, ({ union { __u16 z[1]; t x; } ___t = { .z = {ctx[n]} }; ___t…
722 …__builtin_choose_expr(sizeof(t) == 4, ({ union { __u32 z[1]; t x; } ___t = { .z = {ctx[n]} }; ___t…
723 …__builtin_choose_expr(sizeof(t) == 8, ({ union { __u64 z[1]; t x; } ___t = {.z = {ctx[n]} }; ___t.…
724 …__builtin_choose_expr(sizeof(t) == 16, ({ union { __u64 z[2]; t x; } ___t = {.z = {ctx[n], ctx[n +…
/tools/power/cpupower/po/
A Dcs.po310 msgstr " CPU, které musí měnit frekvenci zároveň: "
315 msgstr " CPU, které musí měnit frekvenci zároveň: "
403 " z hardware (dostupné jen uživateli root) *\n"
435 " -a, --affected-cpus Zjistí, které CPU musí měnit frekvenci zároveň *\n"
443 " -a, --affected-cpus Zjistí, které CPU musí měnit frekvenci zároveň *\n"
512 msgstr "Zadaný parametr nemůže být použit zároveň s přepínačem -c nebo --cpu\n"
608 "2. Přepínač -f nebo --freq nemůže být použit zároveň s žádným jiným vyjma -"
647 "přepínač -f/--freq nemůže být použit zároveň\n"
/tools/kvm/kvm_stat/
A Dkvm_stat.txt114 -z::

Completed in 53 milliseconds

12