Lines Matching full:1
34 "1: %0 = memw_locked(%2)\n\t" in atomic_inc32()
35 " %1 = add(%0, #1)\n\t" in atomic_inc32()
36 " memw_locked(%2, p0) = %1\n\t" in atomic_inc32()
37 " if (!p0) jump 1b\n\t" in atomic_inc32()
48 "1: %0 = memd_locked(%2)\n\t" in atomic_inc64()
49 " %1 = #1\n\t" in atomic_inc64()
50 " %1 = add(%0, %1)\n\t" in atomic_inc64()
51 " memd_locked(%2, p0) = %1\n\t" in atomic_inc64()
52 " if (!p0) jump 1b\n\t" in atomic_inc64()
63 "1: %0 = memw_locked(%2)\n\t" in atomic_dec32()
64 " %1 = add(%0, #-1)\n\t" in atomic_dec32()
65 " memw_locked(%2, p0) = %1\n\t" in atomic_dec32()
66 " if (!p0) jump 1b\n\t" in atomic_dec32()
77 "1: %0 = memd_locked(%2)\n\t" in atomic_dec64()
78 " %1 = #-1\n\t" in atomic_dec64()
79 " %1 = add(%0, %1)\n\t" in atomic_dec64()
80 " memd_locked(%2, p0) = %1\n\t" in atomic_dec64()
81 " if (!p0) jump 1b\n\t" in atomic_dec64()
89 volatile int32_t tick32 = 1; /* Using volatile because we are testing atomics */
90 volatile int64_t tick64 = 1; /* Using volatile because we are testing atomics */
119 check32(tick32, 1); in test_pthread()
120 check64(tick64, 1); in test_pthread()