HomeSort by relevance Sort by last modified time
    Searched refs:_M_refcount (Results 1 - 6 of 6) sorted by null

  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/
shared_ptr.h 366 : _M_ptr(0), _M_refcount() // never throws
377 : _M_ptr(__p), _M_refcount(__p)
381 __enable_shared_from_this_helper(_M_refcount, __p, __p);
399 : _M_ptr(__p), _M_refcount(__p, __d)
403 __enable_shared_from_this_helper(_M_refcount, __p, __p);
416 : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount) // never throws
429 : _M_refcount(__r._M_refcount) // may throw
432 // It is now safe to copy __r._M_ptr, as _M_refcount(__r._M_refcount
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
shared_ptr.h 557 : _M_ptr(0), _M_refcount() // never throws
568 : _M_ptr(__p), _M_refcount(__p)
572 __enable_shared_from_this_helper(_M_refcount, __p, __p);
590 : _M_ptr(__p), _M_refcount(__p, __d)
594 __enable_shared_from_this_helper(_M_refcount, __p, __p);
614 : _M_ptr(__p), _M_refcount(__p, __d, __a)
618 __enable_shared_from_this_helper(_M_refcount, __p, __p);
638 : _M_ptr(__p), _M_refcount(__r._M_refcount) // never throws
651 : _M_ptr(__r._M_ptr), _M_refcount(__r._M_refcount) // never throw
    [all...]
locale_classes.h 341 mutable _Atomic_word _M_refcount;
367 facet(size_t __refs = 0) throw() : _M_refcount(__refs ? 1 : 0)
395 { __gnu_cxx::__atomic_add_dispatch(&_M_refcount, 1); }
400 if (__gnu_cxx::__exchange_and_add_dispatch(&_M_refcount, -1) == 1)
485 _Atomic_word _M_refcount;
500 { __gnu_cxx::__atomic_add_dispatch(&_M_refcount, 1); }
505 if (__gnu_cxx::__exchange_and_add_dispatch(&_M_refcount, -1) == 1)
ios_base.h 479 _Atomic_word _M_refcount; // 0 means one reference.
483 : _M_next(__cb), _M_fn(__fn), _M_index(__index), _M_refcount(0) { }
486 _M_add_reference() { __gnu_cxx::__atomic_add_dispatch(&_M_refcount, 1); }
491 { return __gnu_cxx::__exchange_and_add_dispatch(&_M_refcount, -1); }
basic_string.h 71 * _M_dataplus _M_refcount
132 // 3. _M_refcount has three states:
144 _Atomic_word _M_refcount;
184 { return this->_M_refcount < 0; }
188 { return this->_M_refcount > 0; }
192 { this->_M_refcount = -1; }
196 { this->_M_refcount = 0; }
229 if (__gnu_cxx::__exchange_and_add_dispatch(&this->_M_refcount,
243 __gnu_cxx::__atomic_add_dispatch(&this->_M_refcount, 1);
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
rc_string_base.h 49 * _M_dataplus _M_refcount
100 // 3. _M_refcount has three states:
115 _Atomic_word _M_refcount;
131 __atomic_add_dispatch(&_M_info._M_refcount, 1);
138 _M_info._M_refcount = 0; // One reference.
201 if (__exchange_and_add_dispatch(&_M_rep()->_M_info._M_refcount,
208 { return _M_rep()->_M_info._M_refcount < 0; }
212 { _M_rep()->_M_info._M_refcount = 0; }
279 { return _M_rep()->_M_info._M_refcount > 0; }
283 { _M_rep()->_M_info._M_refcount = -1;
    [all...]

Completed in 116 milliseconds