Home | History | Annotate | Download | only in Unwind

Lines Matching refs:_i

641       : _addressSpace(&addressSpace), _sects(&sects), _i(i) {}
643 _Self& operator++() { ++_i; return *this; }
644 _Self& operator+=(size_t a) { _i += a; return *this; }
645 _Self& operator--() { assert(_i > 0); --_i; return *this; }
646 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; }
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; }
651 size_t operator-(const _Self& other) { return _i - other._i; }
656 return _i == other._i;
663 EHABIIndexEntry, _i, functionOffset);
669 EHABIIndexEntry, _i, data);
674 size_t _i;