Home | History | Annotate | Download | only in stubs

Lines Matching refs:temp

77   Atomic32 temp = increment;
79 : "+r" (temp), "+m" (*ptr)
81 // temp now holds the old value of *ptr
82 return temp + increment;
87 Atomic32 temp = increment;
89 : "+r" (temp), "+m" (*ptr)
91 // temp now holds the old value of *ptr
95 return temp + increment;
201 Atomic64 temp = increment;
203 : "+r" (temp), "+m" (*ptr)
205 // temp now contains the previous value of *ptr
206 return temp + increment;
211 Atomic64 temp = increment;
213 : "+r" (temp), "+m" (*ptr)
215 // temp now contains the previous value of *ptr
219 return temp + increment;