Home | History | Annotate | Download | only in base

Lines Matching defs:temp

53   Atomic32 temp = increment;
55 : "+r" (temp), "+m" (*ptr)
57 // temp now holds the old value of *ptr
58 return temp + increment;
63 Atomic32 temp = increment;
65 : "+r" (temp), "+m" (*ptr)
67 // temp now holds the old value of *ptr
71 return temp + increment;
151 Atomic64 temp = increment;
153 : "+r" (temp), "+m" (*ptr)
155 // temp now contains the previous value of *ptr
156 return temp + increment;
161 Atomic64 temp = increment;
163 : "+r" (temp), "+m" (*ptr)
165 // temp now contains the previous value of *ptr
169 return temp + increment;