Lines Matching refs:_i
662 : _i(i), _addressSpace(&addressSpace), _sects(§s) {} in EHABISectionIterator()
664 _Self& operator++() { ++_i; return *this; } in operator ++()
665 _Self& operator+=(size_t a) { _i += a; return *this; } in operator +=()
666 _Self& operator--() { assert(_i > 0); --_i; return *this; } in operator --()
667 _Self& operator-=(size_t a) { assert(_i >= a); _i -= a; return *this; } in operator -=()
669 _Self operator+(size_t a) { _Self out = *this; out._i += a; return out; } in operator +()
670 _Self operator-(size_t a) { assert(_i >= a); _Self out = *this; out._i -= a; return out; } in operator -()
672 size_t operator-(const _Self& other) { return _i - other._i; } in operator -()
677 return _i == other._i; in operator ==()
684 EHABIIndexEntry, _i, functionOffset); in functionAddress()
690 EHABIIndexEntry, _i, data); in dataAddress()
695 size_t _i; member