Home | History | Annotate | Download | only in base

Lines Matching defs:temp

94   Atomic32 temp = increment;
96 : "+r" (temp), "+m" (*ptr)
98 // temp now holds the old value of *ptr
99 return temp + increment;
104 Atomic32 temp = increment;
106 : "+r" (temp), "+m" (*ptr)
108 // temp now holds the old value of *ptr
112 return temp + increment;
218 Atomic64 temp = increment;
220 : "+r" (temp), "+m" (*ptr)
222 // temp now contains the previous value of *ptr
223 return temp + increment;
228 Atomic64 temp = increment;
230 : "+r" (temp), "+m" (*ptr)
232 // temp now contains the previous value of *ptr
236 return temp + increment;