Home | History | Annotate | Download | only in src

Lines Matching full:temp

73   Atomic32 temp = increment;
75 : "+r" (temp), "+m" (*ptr)
77 // temp now holds the old value of *ptr
78 return temp + increment;
83 Atomic32 temp = increment;
85 : "+r" (temp), "+m" (*ptr)
87 // temp now holds the old value of *ptr
91 return temp + increment;
197 Atomic64 temp = increment;
199 : "+r" (temp), "+m" (*ptr)
201 // temp now contains the previous value of *ptr
202 return temp + increment;
207 Atomic64 temp = increment;
209 : "+r" (temp), "+m" (*ptr)
211 // temp now contains the previous value of *ptr
215 return temp + increment;