Home | History | Annotate | Download | only in src

Lines Matching defs:_i

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