| /src/sys/arch/powerpc/include/ |
| fenv.h | 155 union __fpscr __r; local 159 __mffs(&__r.__d); 160 __r.__bits.__reg &= ~__excepts; 161 __mtfsf(__r.__d); 168 union __fpscr __r; local 170 __mffs(&__r.__d); 171 *__flagp = __r.__bits.__reg & __excepts; 178 union __fpscr __r; local 182 __mffs(&__r.__d); 183 __r.__bits.__reg &= ~__excepts 192 union __fpscr __r; local 205 union __fpscr __r; local 214 union __fpscr __r; local 223 union __fpscr __r; local 237 union __fpscr __r; local 247 union __fpscr __r; local 261 union __fpscr __r; local 272 union __fpscr __r; local 291 union __fpscr __r; local 305 union __fpscr __r; local 319 union __fpscr __r; local [all...] |
| /src/sys/arch/alpha/include/ |
| fenv.h | 84 union __fpcr __r; local 87 __mf_fpcr(&__r.__d); 88 __r.__bits &= ~((fenv_t)__excepts << _FPUSW_SHIFT); 89 __mt_fpcr(__r.__d); 97 union __fpcr __r; local 100 __mf_fpcr(&__r.__d); 102 *__flagp = (__r.__bits >> _FPUSW_SHIFT) & __excepts; 109 union __fpcr __r; local 115 __mf_fpcr(&__r.__d); 116 __r.__bits &= ~__xexcepts 141 union __fpcr __r; local 152 union __fpcr __r; local 165 union __fpcr __r; local [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| max_size_type.h | 119 operator+=(const __max_size_type& __r) noexcept 121 const auto __sum = _M_val + __r._M_val; 123 _M_msb = _M_msb ^ __r._M_msb ^ __overflow; 129 operator-=(const __max_size_type& __r) noexcept 130 { return *this += -__r; } 133 operator*=(__max_size_type __r) noexcept 137 if (_M_val < __threshold && __r < __threshold) 140 _M_val = _M_val * __r._M_val; 147 const bool __rlsb = __r._M_val & 1; 149 __r >>= 1 [all...] |
| shared_ptr.h | 293 * and shares ownership with `__r`. 294 * @param __r A `shared_ptr`. 295 * @param __p A pointer that will remain valid while `*__r` is valid. 296 * @post `get() == __p && use_count() == __r.use_count()` 310 shared_ptr(const shared_ptr<_Yp>& __r, element_type* __p) noexcept 311 : __shared_ptr<_Tp>(__r, __p) { } 318 * and shares ownership with `__r`. 319 * @param __r A `shared_ptr`. 320 * @param __p A pointer that will remain valid while `*__r` is valid. 321 * @post `get() == __p && !__r.use_count() && !__r.get() [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| max_size_type.h | 119 operator+=(const __max_size_type& __r) noexcept 121 const auto __sum = _M_val + __r._M_val; 123 _M_msb = _M_msb ^ __r._M_msb ^ __overflow; 129 operator-=(const __max_size_type& __r) noexcept 130 { return *this += -__r; } 133 operator*=(__max_size_type __r) noexcept 137 if (_M_val < __threshold && __r < __threshold) 140 _M_val = _M_val * __r._M_val; 147 const bool __rlsb = __r._M_val & 1; 149 __r >>= 1 [all...] |
| shared_ptr.h | 294 * and shares ownership with `__r`. 295 * @param __r A `shared_ptr`. 296 * @param __p A pointer that will remain valid while `*__r` is valid. 297 * @post `get() == __p && use_count() == __r.use_count()` 311 shared_ptr(const shared_ptr<_Yp>& __r, element_type* __p) noexcept 312 : __shared_ptr<_Tp>(__r, __p) { } 319 * and shares ownership with `__r`. 320 * @param __r A `shared_ptr`. 321 * @param __p A pointer that will remain valid while `*__r` is valid. 322 * @post `get() == __p && !__r.use_count() && !__r.get() [all...] |
| /src/external/apache2/llvm/dist/libcxx/include/__memory/ |
| temporary_buffer.h | 32 pair<_Tp*, ptrdiff_t> __r(0, 0); 45 __r.first = static_cast<_Tp*>(::operator new( 48 __r.first = static_cast<_Tp*>(::operator new( 56 return __r; 59 __r.first = static_cast<_Tp*>(::operator new(__n * sizeof(_Tp), nothrow)); 62 if (__r.first) 64 __r.second = __n; 69 return __r;
|
| shared_ptr.h | 466 template<class _Yp> _LIBCPP_INLINE_VISIBILITY shared_ptr(const shared_ptr<_Yp>& __r, element_type* __p) _NOEXCEPT; 468 shared_ptr(const shared_ptr& __r) _NOEXCEPT; 471 shared_ptr(const shared_ptr<_Yp>& __r, 475 shared_ptr(shared_ptr&& __r) _NOEXCEPT; 476 template<class _Yp> _LIBCPP_INLINE_VISIBILITY shared_ptr(shared_ptr<_Yp>&& __r, 479 template<class _Yp> explicit shared_ptr(const weak_ptr<_Yp>& __r, 483 shared_ptr(auto_ptr<_Yp>&& __r, 506 shared_ptr& operator=(const shared_ptr& __r) _NOEXCEPT; 514 operator=(const shared_ptr<_Yp>& __r) _NOEXCEPT; 516 shared_ptr& operator=(shared_ptr&& __r) _NOEXCEPT 629 shared_ptr<_Tp> __r; variable 1584 shared_ptr<_Tp> __r; variable [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/tr1/ |
| shared_ptr.h | 330 __shared_count(std::auto_ptr<_Tp>& __r) 332 _Sp_deleter<_Tp>, _Lp >(__r.get(), _Sp_deleter<_Tp>())) 333 { __r.release(); } 337 // Throw bad_weak_ptr when __r._M_get_use_count() == 0. 339 __shared_count(const __weak_count<_Lp>& __r); 347 __shared_count(const __shared_count& __r) 348 : _M_pi(__r._M_pi) // nothrow 355 operator=(const __shared_count& __r) // nothrow 357 _Sp_counted_base<_Lp>* __tmp = __r._M_pi; 370 _M_swap(__shared_count& __r) // nothro [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/tr1/ |
| shared_ptr.h | 330 __shared_count(std::auto_ptr<_Tp>& __r) 332 _Sp_deleter<_Tp>, _Lp >(__r.get(), _Sp_deleter<_Tp>())) 333 { __r.release(); } 337 // Throw bad_weak_ptr when __r._M_get_use_count() == 0. 339 __shared_count(const __weak_count<_Lp>& __r); 347 __shared_count(const __shared_count& __r) 348 : _M_pi(__r._M_pi) // nothrow 355 operator=(const __shared_count& __r) // nothrow 357 _Sp_counted_base<_Lp>* __tmp = __r._M_pi; 370 _M_swap(__shared_count& __r) // nothro [all...] |
| /src/external/gpl3/gcc/dist/libgcc/config/s390/ |
| gthr-tpf.h | 213 int __r; local 215 __r = __gthrw_(pthread_mutexattr_init) (&__attr); 216 if (!__r) 217 __r = __gthrw_(pthread_mutexattr_settype) (&__attr, 219 if (!__r) 220 __r = __gthrw_(pthread_mutex_init) (__mutex, &__attr); 221 if (!__r) 222 __r = __gthrw_(pthread_mutexattr_destroy) (&__attr); 223 return __r;
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/s390/ |
| gthr-tpf.h | 213 int __r; local 215 __r = __gthrw_(pthread_mutexattr_init) (&__attr); 216 if (!__r) 217 __r = __gthrw_(pthread_mutexattr_settype) (&__attr, 219 if (!__r) 220 __r = __gthrw_(pthread_mutex_init) (__mutex, &__attr); 221 if (!__r) 222 __r = __gthrw_(pthread_mutexattr_destroy) (&__attr); 223 return __r;
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/ |
| ropeimpl.h | 313 _Rope_iterator(rope<_CharT, _Alloc>& __r, std::size_t __pos) 314 : _Rope_iterator_base<_CharT,_Alloc>(__r._M_tree_ptr, __pos), 315 _M_root_rope(&__r) 424 _S_leaf_concat_char_iter(_RopeLeaf* __r, const _CharT* __iter, 427 std::size_t __old_len = __r->_M_size; 432 uninitialized_copy_n(__r->_M_data, __old_len, __new_data); 438 __r->_M_get_allocator()); 443 __r->_M_get_allocator()); 454 _S_destr_leaf_concat_char_iter(_RopeLeaf* __r, const _CharT* __iter, 457 if (__r->_M_ref_count > 1 1446 _RopeLeaf* __r = (_RopeLeaf*) __right; local 1467 _RopeLeaf* __r = (_RopeLeaf*) __right; local [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/ |
| ropeimpl.h | 313 _Rope_iterator(rope<_CharT, _Alloc>& __r, std::size_t __pos) 314 : _Rope_iterator_base<_CharT,_Alloc>(__r._M_tree_ptr, __pos), 315 _M_root_rope(&__r) 424 _S_leaf_concat_char_iter(_RopeLeaf* __r, const _CharT* __iter, 427 std::size_t __old_len = __r->_M_size; 432 uninitialized_copy_n(__r->_M_data, __old_len, __new_data); 438 __r->_M_get_allocator()); 443 __r->_M_get_allocator()); 454 _S_destr_leaf_concat_char_iter(_RopeLeaf* __r, const _CharT* __iter, 457 if (__r->_M_ref_count > 1 1444 _RopeLeaf* __r = (_RopeLeaf*) __right; local 1465 _RopeLeaf* __r = (_RopeLeaf*) __right; local [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/parallel/ |
| partition.h | 104 for (_ThreadIndex __r = 0; __r < __num_threads; ++__r) 106 __reserved_left [__r] = 0; // false 107 __reserved_right[__r] = 0; // false 229 for (int __r = 0; __r < __leftover_left; ++__r) 230 if (__reserved_left[__r] == 0 231 && __compare_and_swap(&(__reserved_left[__r]), 0, 1) [all...] |
| set_operations.h | 47 std::pair<_IIter, _IIter> __e, _OutputIterator __r) 53 *__r++ = *__b.first++; 60 *__r++ = *__b.second++; 62 return __r; 80 _OutputIterator __r) const 86 *__r = *__a; 88 ++__r; 92 *__r = *__c; 94 ++__r; 102 return std::copy(__c, __d, std::copy(__a, __b, __r)); 442 _OutputIterator __r = __result; local [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/parallel/ |
| partition.h | 104 for (_ThreadIndex __r = 0; __r < __num_threads; ++__r) 106 __reserved_left [__r] = 0; // false 107 __reserved_right[__r] = 0; // false 229 for (int __r = 0; __r < __leftover_left; ++__r) 230 if (__reserved_left[__r] == 0 231 && __compare_and_swap(&(__reserved_left[__r]), 0, 1) [all...] |
| set_operations.h | 47 std::pair<_IIter, _IIter> __e, _OutputIterator __r) 53 *__r++ = *__b.first++; 60 *__r++ = *__b.second++; 62 return __r; 80 _OutputIterator __r) const 86 *__r = *__a; 88 ++__r; 92 *__r = *__c; 94 ++__r; 102 return std::copy(__c, __d, std::copy(__a, __b, __r)); 442 _OutputIterator __r = __result; local [all...] |
| /src/external/mpl/bind/dist/lib/isc/include/isc/ |
| uv.h | 81 int __r = uv_idle_init(loop, idle); \ 84 __r; \ 89 int __r = uv_timer_init(loop, timer); \ 92 __r; \ 97 int __r = uv_async_init(loop, async, async_cb); \ 100 __r; \
|
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/experimental/bits/ |
| shared_ptr.h | 117 shared_ptr(const shared_ptr<_Tp1>& __r, element_type* __p) noexcept 118 : _Base_type(__r, __p) { } 120 shared_ptr(const shared_ptr& __r) noexcept 121 : _Base_type(__r) { } 124 shared_ptr(const shared_ptr<_Tp1>& __r) noexcept 125 : _Base_type(__r) { } 127 shared_ptr(shared_ptr&& __r) noexcept 128 : _Base_type(std::move(__r)) { } 131 shared_ptr(shared_ptr<_Tp1>&& __r) noexcept 132 : _Base_type(std::move(__r)) { } [all...] |
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/experimental/bits/ |
| shared_ptr.h | 117 shared_ptr(const shared_ptr<_Tp1>& __r, element_type* __p) noexcept 118 : _Base_type(__r, __p) { } 120 shared_ptr(const shared_ptr& __r) noexcept 121 : _Base_type(__r) { } 124 shared_ptr(const shared_ptr<_Tp1>& __r) noexcept 125 : _Base_type(__r) { } 127 shared_ptr(shared_ptr&& __r) noexcept 128 : _Base_type(std::move(__r)) { } 131 shared_ptr(shared_ptr<_Tp1>&& __r) noexcept 132 : _Base_type(std::move(__r)) { } [all...] |
| /src/external/gpl3/gcc/dist/libstdc++-v3/include/backward/ |
| auto_ptr.h | 307 __shared_count<_Lp>::__shared_count(std::auto_ptr<_Tp>&& __r) 308 : _M_pi(new _Sp_counted_ptr<_Tp*, _Lp>(__r.get())) 309 { __r.release(); } 314 __shared_ptr<_Tp, _Lp>::__shared_ptr(std::auto_ptr<_Tp1>&& __r) 315 : _M_ptr(__r.get()), _M_refcount() 319 _Tp1* __tmp = __r.get(); 320 _M_refcount = __shared_count<_Lp>(std::move(__r)); 327 shared_ptr<_Tp>::shared_ptr(std::auto_ptr<_Tp1>&& __r) 328 : __shared_ptr<_Tp>(std::move(__r)) { }
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/backward/ |
| auto_ptr.h | 306 __shared_count<_Lp>::__shared_count(std::auto_ptr<_Tp>&& __r) 307 : _M_pi(new _Sp_counted_ptr<_Tp*, _Lp>(__r.get())) 308 { __r.release(); } 313 __shared_ptr<_Tp, _Lp>::__shared_ptr(std::auto_ptr<_Tp1>&& __r) 314 : _M_ptr(__r.get()), _M_refcount() 318 _Tp1* __tmp = __r.get(); 319 _M_refcount = __shared_count<_Lp>(std::move(__r)); 326 shared_ptr<_Tp>::shared_ptr(std::auto_ptr<_Tp1>&& __r) 327 : __shared_ptr<_Tp>(std::move(__r)) { }
|
| /src/lib/libm/arch/sparc64/ |
| fenv.c | 54 #define __ldxfsr(__r) __asm__ __volatile__ \ 55 ("ldx %0, %%fsr" : : "m" (__r)) 58 #define __stxfsr(__r) __asm__ __volatile__ \ 59 ("stx %%fsr, %0" : "=m" (*(__r))) 64 #define __ldxfsr(__r) __asm__ __volatile__ \ 65 ("ld %0, %%fsr" : : "m" (__r)) 68 #define __stxfsr(__r) __asm__ __volatile__ \ 69 ("st %%fsr, %0" : "=m" (*(__r)))
|
| /src/external/apache2/llvm/dist/clang/lib/Headers/ |
| f16cintrin.h | 42 __v4sf __r = __builtin_ia32_vcvtph2ps(__v); local 43 return __r[0];
|