Lines Matching full:temp
29 int32_t temp;
36 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
37 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
40 [temp]"=&r" (temp),
53 int32_t temp;
58 "stxr %w[temp], %w[new_value], %[ptr] \n\t" // Try to store the new value.
59 "cbnz %w[temp], 0b \n\t" // Retry if it did not work.
61 [temp]"=&r" (temp),
73 int32_t temp;
79 "stxr %w[temp], %w[result], %[ptr] \n\t" // Try to store the result.
80 "cbnz %w[temp], 0b \n\t" // Retry on failure.
82 [temp]"=&r" (temp),
179 int32_t temp;
186 "stxr %w[temp], %[new_value], %[ptr] \n\t"
187 "cbnz %w[temp], 0b \n\t"
190 [temp]"=&r" (temp),
203 int32_t temp;
208 "stxr %w[temp], %[new_value], %[ptr] \n\t"
209 "cbnz %w[temp], 0b \n\t"
211 [temp]"=&r" (temp),
223 int32_t temp;
229 "stxr %w[temp], %[result], %[ptr] \n\t"
230 "cbnz %w[temp], 0b \n\t"
232 [temp]"=&r" (temp),