Lines Matching full:temp
52 Atomic32 temp = increment;
54 : "+r" (temp), "+m" (*ptr)
56 // temp now holds the old value of *ptr
57 return temp + increment;
62 Atomic32 temp = increment;
64 : "+r" (temp), "+m" (*ptr)
66 // temp now holds the old value of *ptr
70 return temp + increment;
184 Atomic64 temp = increment;
186 : "+r" (temp), "+m" (*ptr)
188 // temp now contains the previous value of *ptr
189 return temp + increment;
194 Atomic64 temp = increment;
196 : "+r" (temp), "+m" (*ptr)
198 // temp now contains the previous value of *ptr
202 return temp + increment;