Home | History | Annotate | Download | only in Unwind

Lines Matching defs:out

648   _Self operator+(size_t a) { _Self out = *this; out._i += a; return out; }
649 _Self operator-(size_t a) { assert(_i >= a); _Self out = *this; out._i -= a; return out; }