| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/ext/ |
| D | atomicity.h | 47 __exchange_and_add(volatile _Atomic_word* __mem, int __val) in _GLIBCXX_VISIBILITY() 48 { return __atomic_fetch_add(__mem, __val, __ATOMIC_ACQ_REL); } in _GLIBCXX_VISIBILITY() 51 __atomic_add(volatile _Atomic_word* __mem, int __val) in _GLIBCXX_VISIBILITY() 52 { __atomic_fetch_add(__mem, __val, __ATOMIC_ACQ_REL); } in _GLIBCXX_VISIBILITY() 64 __exchange_and_add_single(_Atomic_word* __mem, int __val) in _GLIBCXX_VISIBILITY() 66 _Atomic_word __result = *__mem; in _GLIBCXX_VISIBILITY() 67 *__mem += __val; in _GLIBCXX_VISIBILITY() 72 __atomic_add_single(_Atomic_word* __mem, int __val) in _GLIBCXX_VISIBILITY() 73 { *__mem += __val; } in _GLIBCXX_VISIBILITY() 77 __exchange_and_add_dispatch(_Atomic_word* __mem, int __val) in _GLIBCXX_VISIBILITY() [all …]
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/ext/ |
| D | atomicity.h | 48 __exchange_and_add(volatile _Atomic_word* __mem, int __val) in _GLIBCXX_VISIBILITY() 49 { return __atomic_fetch_add(__mem, __val, __ATOMIC_ACQ_REL); } in _GLIBCXX_VISIBILITY() 52 __atomic_add(volatile _Atomic_word* __mem, int __val) in _GLIBCXX_VISIBILITY() 53 { __atomic_fetch_add(__mem, __val, __ATOMIC_ACQ_REL); } in _GLIBCXX_VISIBILITY() 65 __exchange_and_add_single(_Atomic_word* __mem, int __val) in _GLIBCXX_VISIBILITY() 67 _Atomic_word __result = *__mem; in _GLIBCXX_VISIBILITY() 68 *__mem += __val; in _GLIBCXX_VISIBILITY() 73 __atomic_add_single(_Atomic_word* __mem, int __val) in _GLIBCXX_VISIBILITY() 74 { *__mem += __val; } in _GLIBCXX_VISIBILITY() 78 __exchange_and_add_dispatch(_Atomic_word* __mem, int __val) in _GLIBCXX_VISIBILITY() [all …]
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/config/cpu/i486/ |
| D | atomicity.h | 33 __exchange_and_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 37 : "=r" (__result), "=m" (*__mem) in _GLIBCXX_VISIBILITY() 38 : "0" (__val), "m" (*__mem)); in _GLIBCXX_VISIBILITY() 44 __atomic_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 47 : "=m" (*__mem) : "ir" (__val), "m" (*__mem)); in _GLIBCXX_VISIBILITY()
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/config/cpu/i386/ |
| D | atomicity.h | 44 __exchange_and_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 58 __result = *__mem; in _GLIBCXX_VISIBILITY() 59 *__mem += __val; in _GLIBCXX_VISIBILITY() 69 __atomic_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 70 { __exchange_and_add(__mem, __val); } in _GLIBCXX_VISIBILITY()
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/config/cpu/generic/atomicity_builtins/ |
| D | atomicity.h | 35 __exchange_and_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 36 { return __atomic_fetch_add(__mem, __val, __ATOMIC_ACQ_REL); } in _GLIBCXX_VISIBILITY() 40 __atomic_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 41 { __atomic_fetch_add(__mem, __val, __ATOMIC_ACQ_REL); } in _GLIBCXX_VISIBILITY()
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/config/cpu/generic/atomicity_builtins/ |
| D | atomicity.h | 35 __exchange_and_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 36 { return __atomic_fetch_add(__mem, __val, __ATOMIC_ACQ_REL); } in _GLIBCXX_VISIBILITY() 40 __atomic_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 41 { __atomic_fetch_add(__mem, __val, __ATOMIC_ACQ_REL); } in _GLIBCXX_VISIBILITY()
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/ |
| D | locale_facets_nonio.tcc | 652 int __mem = 0; in _M_extract_via_format() local 663 __beg = _M_extract_name(__beg, __end, __mem, __days1, in _M_extract_via_format() 666 __tm->tm_wday = __mem; in _M_extract_via_format() 672 __beg = _M_extract_name(__beg, __end, __mem, __days2, in _M_extract_via_format() 675 __tm->tm_wday = __mem; in _M_extract_via_format() 682 __beg = _M_extract_name(__beg, __end, __mem, in _M_extract_via_format() 685 __tm->tm_mon = __mem; in _M_extract_via_format() 691 __beg = _M_extract_name(__beg, __end, __mem, in _M_extract_via_format() 694 __tm->tm_mon = __mem; in _M_extract_via_format() 705 __beg = _M_extract_num(__beg, __end, __mem, 1, 31, 2, in _M_extract_via_format() [all …]
|
| D | shared_ptr_base.h | 657 _Sp_cd_type* __mem = __guard.get(); in _GLIBCXX_VISIBILITY() 658 ::new (__mem) _Sp_cd_type(__p, std::move(__d), std::move(__a)); in _GLIBCXX_VISIBILITY() 659 _M_pi = __mem; in _GLIBCXX_VISIBILITY() 676 _Sp_cp_type* __mem = __guard.get(); in _GLIBCXX_VISIBILITY() 677 auto __pi = ::new (__mem) in _GLIBCXX_VISIBILITY() 713 _Sp_cd_type* __mem = _Alloc_traits::allocate(__a, 1); in _GLIBCXX_VISIBILITY() 714 _Alloc_traits::construct(__a, __mem, __r.release(), in _GLIBCXX_VISIBILITY() 716 _M_pi = __mem; in _GLIBCXX_VISIBILITY()
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/ |
| D | shared_ptr_base.h | 473 _Sp_cd_type* __mem = 0; in _GLIBCXX_VISIBILITY() local 476 __mem = _Alloc_traits::allocate(__a, 1); in _GLIBCXX_VISIBILITY() 477 _Alloc_traits::construct(__a, __mem, __p, std::move(__d)); in _GLIBCXX_VISIBILITY() 478 _M_pi = __mem; in _GLIBCXX_VISIBILITY() 483 if (__mem) in _GLIBCXX_VISIBILITY() 484 _Alloc_traits::deallocate(__a, __mem, 1); in _GLIBCXX_VISIBILITY() 496 _Sp_cd_type* __mem = 0; in _GLIBCXX_VISIBILITY() local 499 __mem = _Alloc_traits::allocate(__a2, 1); in _GLIBCXX_VISIBILITY() 500 _Alloc_traits::construct(__a2, __mem, in _GLIBCXX_VISIBILITY() 502 _M_pi = __mem; in _GLIBCXX_VISIBILITY() [all …]
|
| D | locale_facets_nonio.tcc | 645 int __mem = 0; in _M_extract_via_format() local 722 __beg = _M_extract_num(__beg, __end, __mem, 1, 12, 2, in _M_extract_via_format() 725 __tm->tm_mon = __mem - 1; in _M_extract_via_format() 790 __beg = _M_extract_num(__beg, __end, __mem, 0, 9999, 4, in _M_extract_via_format() 793 __tm->tm_year = __mem < 0 ? __mem + 100 : __mem - 1900; in _M_extract_via_format()
|
| /dragonfly/include/ |
| HD | nl_types.h | 60 __int32_t __mem; member
|
| /dragonfly/usr.bin/gencat/ |
| HD | gencat.c | 526 cat_hdr->__mem = htonl(msgcat_size - sizeof(struct _nls_cat_hdr));
|