Home | History | Annotate | Download | only in base

Lines Matching refs:temp

51   Atomic32 temp = increment;
53 : "+r" (temp), "+m" (*ptr)
55 // temp now holds the old value of *ptr
56 return temp + increment;
61 Atomic32 temp = increment;
63 : "+r" (temp), "+m" (*ptr)
65 // temp now holds the old value of *ptr
69 return temp + increment;
175 Atomic64 temp = increment;
177 : "+r" (temp), "+m" (*ptr)
179 // temp now contains the previous value of *ptr
180 return temp + increment;
185 Atomic64 temp = increment;
187 : "+r" (temp), "+m" (*ptr)
189 // temp now contains the previous value of *ptr
193 return temp + increment;