/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | concept_checks.h | 58 #define _STLP_GENERATOR_CHECK(__func, __ret) do {} while(0) argument 59 #define _STLP_CLASS_GENERATOR_CHECK(__func, __ret) \ argument 60 static int __##__func##__ret##_generator_check 61 #define _STLP_UNARY_FUNCTION_CHECK(__func, __ret, __arg) do {} while(0) argument 62 #define _STLP_CLASS_UNARY_FUNCTION_CHECK(__func, __ret, __arg) \ argument 63 static int __##__func##__ret##__arg##_unary_function_check 64 #define _STLP_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \ argument 66 #define _STLP_CLASS_BINARY_FUNCTION_CHECK(__func, __ret, __first, __second) \ argument 67 static int __##__func##__ret##__first##__second##_binary_function_check 68 #define _STLP_REQUIRES_BINARY_OP(__opname, __ret, __first, __second) \ argument [all …]
|
D | _pthread_alloc.h | 135 _Tp* __ret = __REINTERPRET_CAST(value_type*, _S_Alloc::allocate(__buf_size)); variable 137 memset((char*)__ret, _STLP_SHRED_BYTE, __buf_size); 139 return __ret; 174 _Tp* __ret = __REINTERPRET_CAST(value_type*, _S_Alloc::allocate(__buf_size)); in allocate() local 176 memset((char*)__ret, _STLP_SHRED_BYTE, __buf_size); in allocate() 179 return __ret; in allocate() 318 _Tp* __ret = __REINTERPRET_CAST(_Tp*, _S_Alloc::allocate(__buf_size, _M_state)); 320 memset((char*)__ret, _STLP_SHRED_BYTE, __buf_size); 322 return __ret; 360 _Tp* __ret = __REINTERPRET_CAST(value_type*, _S_Alloc::allocate(__buf_size, _M_state)); [all …]
|
D | _alloc.h | 307 _Tp* __ret = __REINTERPRET_CAST(_Tp*, __sgi_alloc::allocate(__buf_size)); variable 309 memset((char*)__ret, _STLP_SHRED_BYTE, __buf_size); 311 return __ret; 348 _Tp* __ret = __REINTERPRET_CAST(_Tp*, __sgi_alloc::allocate(__buf_size)); in _M_allocate() local 350 memset((char*)__ret, _STLP_SHRED_BYTE, __buf_size); in _M_allocate() 353 return __ret; in _M_allocate()
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/ |
D | config.h | 40 __typeof__(*(address)) __ret = __sync_lock_test_and_set((address),(value)); \ 42 __ret; \
|
/ndk/sources/cxx-stl/gabi++/include/ |
D | gabixx_config.h | 94 __typeof__(*(address)) __ret = __sync_lock_test_and_set((address),(value)); \ 96 __ret; \
|
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/ |
D | _set.h | 285 pair<base_iterator, base_iterator> __ret; 286 __ret = _M_t.equal_range(cast_traits::to_storage_type_crefT(__x)); 287 return pair<iterator, iterator>(_S_to_value_ite(__ret.first), 288 _S_to_value_ite(__ret.second)); 292 pair<const_base_iterator, const_base_iterator> __ret; 293 __ret = _M_t.equal_range_unique(cast_traits::to_storage_type_crefT(__x)); 294 return pair<const_iterator, const_iterator>(_S_to_value_ite(__ret.first), 295 _S_to_value_ite(__ret.second)); 540 pair<base_iterator, base_iterator> __ret; 541 __ret = _M_t.equal_range(cast_traits::to_storage_type_crefT(__x)); [all …]
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
D | _debug.c | 576 void* __ret = __CONST_CAST(void*,__owner->_Owner()); in _Get_container_ptr() 577 _STLP_VERBOSE_RETURN_0(__ret !=0, _StlMsg_INVALID_CONTAINER) in _Get_container_ptr() 578 return __ret; in _Get_container_ptr()
|
D | _string.h | 429 typename _Base::iterator __ret = _M_non_dbg_impl.insert(__p._M_iterator, __c); in insert() local 431 return iterator(&_M_iter_list, __ret); in insert()
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | atomic | 651 _Tp __ret; 652 __atomic_load(&__a->__a_value, &__ret, 654 return __ret; 659 _Tp __ret; 660 __atomic_load(&__a->__a_value, &__ret, 662 return __ret; 668 _Tp __ret; 669 __atomic_exchange(&__a->__a_value, &__value, &__ret, 671 return __ret; 677 _Tp __ret; [all …]
|