| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/ |
| D | atomicity.h | 65 __exchange_and_add(volatile _Atomic_word* __mem, int __val) in _GLIBCXX_VISIBILITY() 66 { return __atomic_fetch_add(__mem, __val, __ATOMIC_ACQ_REL); } in _GLIBCXX_VISIBILITY() 70 __atomic_add(volatile _Atomic_word* __mem, int __val) in _GLIBCXX_VISIBILITY() 71 { __atomic_fetch_add(__mem, __val, __ATOMIC_ACQ_REL); } in _GLIBCXX_VISIBILITY() 82 __exchange_and_add_single(_Atomic_word* __mem, int __val) in _GLIBCXX_VISIBILITY() 84 _Atomic_word __result = *__mem; in _GLIBCXX_VISIBILITY() 85 *__mem += __val; in _GLIBCXX_VISIBILITY() 91 __atomic_add_single(_Atomic_word* __mem, int __val) in _GLIBCXX_VISIBILITY() 92 { *__mem += __val; } in _GLIBCXX_VISIBILITY() 96 __exchange_and_add_dispatch(_Atomic_word* __mem, int __val) in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/cpu/cris/ |
| D | atomicity.h | 32 __exchange_and_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 47 : "=&r" (__result), "=Q" (*__mem), "=&r" (__tmp) in _GLIBCXX_VISIBILITY() 48 : "r" (__mem), "g" (__val), "Q" (*__mem) in _GLIBCXX_VISIBILITY() 60 : "=&r" (__result), "=Q" (*__mem), "=&r" (__tmp) in _GLIBCXX_VISIBILITY() 61 : "r" (__mem), "g" (__val), "Q" (*__mem) in _GLIBCXX_VISIBILITY() 73 : "=&r" (__result), "=Q" (*__mem), "=&r" (__tmp) in _GLIBCXX_VISIBILITY() 74 : "r" (__mem), "g" (__val), "Q" (*__mem) in _GLIBCXX_VISIBILITY() 85 __atomic_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 86 { __exchange_and_add(__mem, __val); } in _GLIBCXX_VISIBILITY()
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/cpu/sparc/ |
| D | atomicity.h | 34 __exchange_and_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 45 : "=&r" (__tmp1), "=&r" (__tmp2), "=m" (*__mem) in _GLIBCXX_VISIBILITY() 46 : "r" (__mem), "r" (__val_extended), "m" (*__mem)); in _GLIBCXX_VISIBILITY() 52 __atomic_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 63 : "=&r" (__tmp1), "=&r" (__tmp2), "=m" (*__mem) in _GLIBCXX_VISIBILITY() 64 : "r" (__mem), "r" (__val_extended), "m" (*__mem)); in _GLIBCXX_VISIBILITY() 82 __exchange_and_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 93 __result = *__mem; in _GLIBCXX_VISIBILITY() 94 *__mem += __val; in _GLIBCXX_VISIBILITY() 104 __atomic_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/cpu/m68k/ |
| D | atomicity.h | 37 __exchange_and_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 39 register _Atomic_word __result = *__mem; in _GLIBCXX_VISIBILITY() 45 : "=d" (__result), "=&d" (__temp), "=m" (*__mem) in _GLIBCXX_VISIBILITY() 46 : "d" (__val), "0" (__result), "m" (*__mem)); in _GLIBCXX_VISIBILITY() 58 __exchange_and_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 65 __result = *__mem; in _GLIBCXX_VISIBILITY() 66 *__mem = __result + __val; in _GLIBCXX_VISIBILITY() 87 __exchange_and_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 115 __result = *__mem; in _GLIBCXX_VISIBILITY() 116 *__mem = __result + __val; in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd/src/external/gpl3/gcc/dist/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()
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/cpu/generic/atomicity_mutex/ |
| D | atomicity.h | 44 __exchange_and_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 48 __result = *__mem; in _GLIBCXX_VISIBILITY() 49 *__mem += __val; in _GLIBCXX_VISIBILITY() 55 __atomic_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 56 { __exchange_and_add(__mem, __val); } in _GLIBCXX_VISIBILITY()
|
| /netbsd/src/external/gpl3/gcc/dist/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()
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/config/cpu/hppa/ |
| D | atomicity.h | 48 __exchange_and_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 64 result = *__mem; in _GLIBCXX_VISIBILITY() 65 *__mem = result + __val; in _GLIBCXX_VISIBILITY() 73 __atomic_add(volatile _Atomic_word* __mem, int __val) throw () in _GLIBCXX_VISIBILITY() 88 *__mem += __val; in _GLIBCXX_VISIBILITY()
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| D | locale_facets_nonio.tcc | 707 int __mem = 0; in _M_extract_via_format() local 720 __beg = _M_extract_name(__beg, __end, __mem, __days, in _M_extract_via_format() 724 __tm->tm_wday = __mem % 7; in _M_extract_via_format() 735 __beg = _M_extract_name(__beg, __end, __mem, in _M_extract_via_format() 739 __tm->tm_mon = __mem % 12; in _M_extract_via_format() 755 __beg = _M_extract_num(__beg, __end, __mem, 0, 99, 2, in _M_extract_via_format() 759 __state._M_century = __mem; in _M_extract_via_format() 769 __beg = _M_extract_num(__beg, __end, __mem, 1, 31, 2, in _M_extract_via_format() 773 __tm->tm_mday = __mem; in _M_extract_via_format() 789 __beg = _M_extract_num(__beg, __end, __mem, 0, 23, 2, in _M_extract_via_format() [all …]
|
| D | shared_ptr_base.h | 951 _Sp_cd_type* __mem = __guard.get(); in _GLIBCXX_VISIBILITY() 952 ::new (__mem) _Sp_cd_type(__p, std::move(__d), std::move(__a)); in _GLIBCXX_VISIBILITY() 953 _M_pi = __mem; in _GLIBCXX_VISIBILITY() 970 _Sp_cp_type* __mem = __guard.get(); in _GLIBCXX_VISIBILITY() 971 auto __pi = ::new (__mem) in _GLIBCXX_VISIBILITY() 1052 _Sp_cd_type* __mem = _Alloc_traits::allocate(__a, 1); in _GLIBCXX_VISIBILITY() 1056 _Alloc_traits::construct(__a, __mem, __r.release(), in _GLIBCXX_VISIBILITY() 1058 _M_pi = __mem; in _GLIBCXX_VISIBILITY()
|
| /netbsd/src/external/gpl3/gcc/dist/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()
|
| /netbsd/src/usr.bin/gencat/ |
| D | gencat.c | 578 cat_hdr.__mem = ntohl(cat_hdr.__mem); in MCReadCat() 583 if ((cat_hdr.__mem < 0) || in MCReadCat() 586 (cat_hdr.__mem < (int32_t)(cat_hdr.__nsets * sizeof(struct _nls_set_hdr))) || in MCReadCat() 587 (cat_hdr.__mem < cat_hdr.__msg_hdr_offset) || in MCReadCat() 588 (cat_hdr.__mem < cat_hdr.__msg_txt_offset)) in MCReadCat() 591 msgcat = xmalloc(cat_hdr.__mem); in MCReadCat() 593 n = read(fd, msgcat, cat_hdr.__mem); in MCReadCat() 594 if (n < cat_hdr.__mem) { in MCReadCat() 631 ((char *)msgcat + cat_hdr.__mem))) in MCReadCat() 702 cat_hdr->__mem = htonl(msgcat_size - sizeof(struct _nls_cat_hdr)); in MCWriteCat()
|
| /netbsd/src/include/ |
| D | nl_types.h | 57 int32_t __mem; member
|
| /netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/ |
| D | ChangeLog-2004 | 4315 inline" and attribute-unused. Qualify parameter __mem with
|
| D | ChangeLog-2003 | 8618 *__mem is also an output.
|