| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/profile/impl/ |
| D | profiler_vector_to_list.h | 180 __vector2list_info* __res = __get_object_info(__obj); in __destruct() local 181 if (!__res) in __destruct() 184 float __vc = __vector_cost(__res->__shift_count(), __res->__iterate(), in __destruct() 185 __res->__resize()); in __destruct() 186 float __lc = __list_cost(__res->__shift_count(), __res->__iterate(), in __destruct() 187 __res->__resize()); in __destruct() 188 __res->__set_vector_cost(__vc); in __destruct() 189 __res->__set_list_cost(__lc); in __destruct() 202 __vector2list_info* __res = __get_object_info(__obj); in __opr_insert() local 203 if (__res) in __opr_insert() [all …]
|
| D | profiler_list_to_vector.h | 183 __list2vector_info* __res = __get_object_info(__obj); in __destruct() local 184 if (!__res) in __destruct() 187 float __vc = __vector_cost(__res->__shift_count(), __res->__iterate()); in __destruct() 188 float __lc = __list_cost(__res->__shift_count(), __res->__iterate()); in __destruct() 189 __res->__set_vector_cost(__vc); in __destruct() 190 __res->__set_list_cost(__lc); in __destruct() 201 __list2vector_info* __res = __get_object_info(__obj); in __opr_insert() local 202 if (__res) in __opr_insert() 203 __res->__opr_insert(__shift, __size); in __opr_insert() 209 __list2vector_info* __res = __get_object_info(__obj); in __opr_iterate() local [all …]
|
| D | profiler_list_to_slist.h | 124 __list2slist_info* __res = __get_object_info(__obj); in __opr_rewind() local 125 if (__res) in __opr_rewind() 126 __res->__opr_rewind(); in __opr_rewind() 132 __list2slist_info* __res = __get_object_info(__obj); in __record_operation() local 133 if (__res) in __record_operation() 134 __res->__record_operation(); in __record_operation() 147 __list2slist_info* __res = __get_object_info(__obj); in __destruct() local 148 if (!__res) in __destruct()
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/std/ |
| D | charconv | 162 to_chars_result __res; 168 __res.ptr = __last; 169 __res.ec = errc::value_too_large; 170 return __res; 187 __res.ptr = __first + __len; 188 __res.ec = {}; 189 return __res; 199 to_chars_result __res; 205 __res.ptr = __last; 206 __res.ec = errc::value_too_large; [all …]
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/debug/ |
| D | map.h | 239 auto __res = _Base::emplace(std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY() local 240 return std::pair<iterator, bool>(iterator(__res.first, this), in _GLIBCXX_VISIBILITY() 241 __res.second); in _GLIBCXX_VISIBILITY() 258 std::pair<_Base_iterator, bool> __res = _Base::insert(__x); in _GLIBCXX_VISIBILITY() local 259 return std::pair<iterator, bool>(iterator(__res.first, this), in _GLIBCXX_VISIBILITY() 260 __res.second); in _GLIBCXX_VISIBILITY() 269 auto __res = _Base::insert(std::move(__x)); in _GLIBCXX_VISIBILITY() local 270 return { iterator(__res.first, this), __res.second }; in _GLIBCXX_VISIBILITY() 279 std::pair<_Base_iterator, bool> __res in _GLIBCXX_VISIBILITY() local 281 return std::pair<iterator, bool>(iterator(__res.first, this), in _GLIBCXX_VISIBILITY() [all …]
|
| D | set.h | 228 auto __res = _Base::emplace(std::forward<_Args>(__args)...); in _GLIBCXX_VISIBILITY() local 229 return std::pair<iterator, bool>(iterator(__res.first, this), in _GLIBCXX_VISIBILITY() 230 __res.second); in _GLIBCXX_VISIBILITY() 247 std::pair<_Base_iterator, bool> __res = _Base::insert(__x); in _GLIBCXX_VISIBILITY() local 248 return std::pair<iterator, bool>(iterator(__res.first, this), in _GLIBCXX_VISIBILITY() 249 __res.second); in _GLIBCXX_VISIBILITY() 256 std::pair<_Base_iterator, bool> __res in _GLIBCXX_VISIBILITY() local 258 return std::pair<iterator, bool>(iterator(__res.first, this), in _GLIBCXX_VISIBILITY() 259 __res.second); in _GLIBCXX_VISIBILITY() 512 std::pair<_Base_iterator, _Base_iterator> __res = in _GLIBCXX_VISIBILITY() local [all …]
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/parallel/ |
| D | compatibility.h | 117 int32_t __res; in __fetch_and_add_32() 120 __res = *__ptr; in __fetch_and_add_32() 123 return __res; in __fetch_and_add_32() 168 int64_t __res; in __fetch_and_add_64() 171 __res = *__ptr; in __fetch_and_add_64() 174 return __res; in __fetch_and_add_64() 263 bool __res = false; in __compare_and_swap_32() 269 __res = true; in __compare_and_swap_32() 272 return __res; in __compare_and_swap_32() 321 bool __res = false; in __compare_and_swap_64() [all …]
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/profile/ |
| D | unordered_map | 173 std::pair<iterator, bool> __res 176 return __res; 184 iterator __res 187 return __res; 202 std::pair<iterator, bool> __res = _Base::insert(__obj); 204 return __res; 211 iterator __res = _Base::insert(__iter, __v); 213 return __res; 223 std::pair<iterator, bool> __res 226 return __res; [all …]
|
| D | unordered_set | 172 std::pair<iterator, bool> __res 175 return __res; 183 iterator __res 186 return __res; 201 std::pair<iterator, bool> __res = _Base::insert(__obj); 203 return __res; 210 iterator __res = _Base::insert(__iter, __v); 212 return __res; 219 std::pair<iterator, bool> __res = _Base::insert(std::move(__obj)); 221 return __res; [all …]
|
| D | set.h | 187 std::pair<_Base_iterator, bool> __res = _Base::insert(__x); in _GLIBCXX_VISIBILITY() local 188 return std::pair<iterator, bool>(iterator(__res.first), in _GLIBCXX_VISIBILITY() 189 __res.second); in _GLIBCXX_VISIBILITY() 197 std::pair<_Base_iterator, bool> __res in _GLIBCXX_VISIBILITY() local 199 return std::pair<iterator, bool>(iterator(__res.first), in _GLIBCXX_VISIBILITY() 200 __res.second); in _GLIBCXX_VISIBILITY() 307 std::pair<_Base_iterator, _Base_iterator> __res = in _GLIBCXX_VISIBILITY() local 309 return std::make_pair(iterator(__res.first), in _GLIBCXX_VISIBILITY() 310 iterator(__res.second)); in _GLIBCXX_VISIBILITY() 319 std::pair<_Base_iterator, _Base_iterator> __res = in _GLIBCXX_VISIBILITY() local [all …]
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/parallel/ |
| D | compatibility.h | 58 int64_t __res; in __add_omp() local 61 __res = *__ptr; in __add_omp() 64 return __res; in __add_omp() 85 bool __res = false; in __cas_omp() local 91 __res = true; in __cas_omp() 94 return __res; in __cas_omp()
|
| /dragonfly/contrib/gcc-4.7/gcc/config/i386/ |
| HD | bmi2intrin.h | 84 unsigned __int128 __res = (unsigned __int128) __X * __Y; in _mulx_u64() local 85 *__P = (unsigned long long) (__res >> 64); in _mulx_u64() 86 return (unsigned long long) __res; in _mulx_u64() 95 unsigned long long __res = (unsigned long long) __X * __Y; in _mulx_u32() local 96 *__P = (unsigned int) (__res >> 32); in _mulx_u32() 97 return (unsigned int) __res; in _mulx_u32()
|
| /dragonfly/contrib/gcc-8.0/gcc/config/i386/ |
| HD | bmi2intrin.h | 86 unsigned __int128 __res = (unsigned __int128) __X * __Y; in _mulx_u64() local 87 *__P = (unsigned long long) (__res >> 64); in _mulx_u64() 88 return (unsigned long long) __res; in _mulx_u64() 97 unsigned long long __res = (unsigned long long) __X * __Y; in _mulx_u32() local 98 *__P = (unsigned int) (__res >> 32); in _mulx_u32() 99 return (unsigned int) __res; in _mulx_u32()
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/ext/ |
| D | debug_allocator.h | 91 pointer __res = _M_allocator.allocate(__n + _M_extra); in _GLIBCXX_VISIBILITY() local 92 size_type* __ps = reinterpret_cast<size_type*>(__res); in _GLIBCXX_VISIBILITY() 94 return __res + _M_extra; in _GLIBCXX_VISIBILITY() 100 pointer __res = _M_allocator.allocate(__n + _M_extra, __hint); in _GLIBCXX_VISIBILITY() local 101 size_type* __ps = reinterpret_cast<size_type*>(__res); in _GLIBCXX_VISIBILITY() 103 return __res + _M_extra; in _GLIBCXX_VISIBILITY()
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/profile/ |
| D | unordered_map | 185 std::pair<iterator, bool> __res 188 return __res; 196 iterator __res 199 return __res; 214 std::pair<iterator, bool> __res = _Base::insert(__obj); 216 return __res; 223 iterator __res = _Base::insert(__iter, __v); 225 return __res; 235 std::pair<iterator, bool> __res 238 return __res; [all …]
|
| D | unordered_set | 199 std::pair<iterator, bool> __res 202 return __res; 210 iterator __res 213 return __res; 228 std::pair<iterator, bool> __res = _Base::insert(__obj); 230 return __res; 237 iterator __res = _Base::insert(__iter, __v); 239 return __res; 246 std::pair<iterator, bool> __res = _Base::insert(std::move(__obj)); 248 return __res; [all …]
|
| D | multiset.h | 252 auto __res in _GLIBCXX_VISIBILITY() local 255 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1); in _GLIBCXX_VISIBILITY() 256 return iterator(__res, this); in _GLIBCXX_VISIBILITY() 280 _Base_iterator __res = _Base::insert(__pos.base(), __x); in _GLIBCXX_VISIBILITY() local 283 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1); in _GLIBCXX_VISIBILITY() 284 return iterator(__res, this); in _GLIBCXX_VISIBILITY() 292 auto __res = _Base::insert(__pos.base(), std::move(__x)); in _GLIBCXX_VISIBILITY() local 294 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1); in _GLIBCXX_VISIBILITY() 295 return iterator(__res, this); in _GLIBCXX_VISIBILITY() 544 auto __res = _Base::equal_range(__x); in _GLIBCXX_VISIBILITY() local [all …]
|
| D | map.h | 276 auto __res in _GLIBCXX_VISIBILITY() local 279 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1); in _GLIBCXX_VISIBILITY() 280 return iterator(__res, this); in _GLIBCXX_VISIBILITY() 321 _Base_iterator __res = _Base::insert(__pos.base(), __x); in _GLIBCXX_VISIBILITY() local 324 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1); in _GLIBCXX_VISIBILITY() 325 return iterator(__res, this); in _GLIBCXX_VISIBILITY() 336 auto __res = _Base::insert(__pos.base(), std::forward<_Pair>(__x)); in _GLIBCXX_VISIBILITY() local 339 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1); in _GLIBCXX_VISIBILITY() 340 return iterator(__res, this); in _GLIBCXX_VISIBILITY() 582 auto __res = _Base::equal_range(__x); in _GLIBCXX_VISIBILITY() local [all …]
|
| D | multimap.h | 241 auto __res in _GLIBCXX_VISIBILITY() local 244 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1); in _GLIBCXX_VISIBILITY() 245 return iterator(__res, this); in _GLIBCXX_VISIBILITY() 282 _Base_iterator __res = _Base::insert(__pos.base(), __x); in _GLIBCXX_VISIBILITY() local 284 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1); in _GLIBCXX_VISIBILITY() 285 return iterator(__res, this); in _GLIBCXX_VISIBILITY() 296 auto __res = _Base::insert(__pos.base(), std::forward<_Pair>(__x)); in _GLIBCXX_VISIBILITY() local 298 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1); in _GLIBCXX_VISIBILITY() 299 return iterator(__res, this); in _GLIBCXX_VISIBILITY() 541 auto __res = _Base::equal_range(__x); in _GLIBCXX_VISIBILITY() local [all …]
|
| D | set.h | 249 auto __res in _GLIBCXX_VISIBILITY() local 252 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1); in _GLIBCXX_VISIBILITY() 253 return iterator(__res, this); in _GLIBCXX_VISIBILITY() 282 _Base_iterator __res = _Base::insert(__pos.base(), __x); in _GLIBCXX_VISIBILITY() local 284 size_before, _M_hint_used(__pos.base(), __res) ? 0 : 1); in _GLIBCXX_VISIBILITY() 285 return iterator(__res, this); in _GLIBCXX_VISIBILITY() 527 auto __res = _Base::equal_range(__x); in _GLIBCXX_VISIBILITY() local 528 return { { __res.first, this }, { __res.second, this } }; in _GLIBCXX_VISIBILITY() 538 auto __res = _Base::equal_range(__x); in _GLIBCXX_VISIBILITY() local 539 return { { __res.first, this }, { __res.second, this } }; in _GLIBCXX_VISIBILITY() [all …]
|
| /dragonfly/contrib/gcc-8.0/libstdc++-v3/include/bits/ |
| D | locale_classes.tcc | 179 const int __res = _M_compare(__p, __q); in do_compare() local 180 if (__res) in do_compare() 181 return __res; in do_compare() 222 size_t __res = _M_transform(__c, __p, __len); in do_transform() 225 if (__res >= __len) in do_transform() 227 __len = __res + 1; in do_transform() 230 __res = _M_transform(__c, __p, __len); in do_transform() 233 __ret.append(__c, __res); in do_transform()
|
| D | stl_tree.h | 1392 auto __res = _M_get_insert_unique_pos(__nh._M_key()); in _GLIBCXX_VISIBILITY() 1393 if (__res.second) in _GLIBCXX_VISIBILITY() 1396 = _M_insert_node(__res.first, __res.second, __nh._M_ptr); in _GLIBCXX_VISIBILITY() 1403 __ret.position = iterator(__res.first); in _GLIBCXX_VISIBILITY() 1420 auto __res = _M_get_insert_equal_pos(__nh._M_key()); in _GLIBCXX_VISIBILITY() 1421 if (__res.second) in _GLIBCXX_VISIBILITY() 1422 __ret = _M_insert_node(__res.first, __res.second, __nh._M_ptr); in _GLIBCXX_VISIBILITY() 1440 auto __res = _M_get_insert_hint_unique_pos(__hint, __nh._M_key()); in _GLIBCXX_VISIBILITY() 1441 if (__res.second) in _GLIBCXX_VISIBILITY() 1443 __ret = _M_insert_node(__res.first, __res.second, __nh._M_ptr); in _GLIBCXX_VISIBILITY() [all …]
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/bits/ |
| D | locale_classes.tcc | 177 const int __res = _M_compare(__p, __q); in do_compare() local 178 if (__res) in do_compare() 179 return __res; in do_compare() 220 size_t __res = _M_transform(__c, __p, __len); in do_transform() 223 if (__res >= __len) in do_transform() 225 __len = __res + 1; in do_transform() 228 __res = _M_transform(__c, __p, __len); in do_transform() 231 __ret.append(__c, __res); in do_transform()
|
| D | locale_facets_nonio.tcc | 169 string __res; in _M_extract() local 170 __res.reserve(32); in _M_extract() 240 __res += money_base::_S_atoms[__q - __lit]; in _M_extract() 272 if (__res.empty()) in _M_extract() 306 if (__res.size() > 1) in _M_extract() 308 const size_type __first = __res.find_first_not_of('0'); in _M_extract() 311 __res.erase(0, __only_zeros ? __res.size() - 1 : __first); in _M_extract() 315 if (__negative && __res[0] != '0') in _M_extract() 316 __res.insert(__res.begin(), '-'); in _M_extract() 339 __units.swap(__res); in _M_extract() [all …]
|
| /dragonfly/contrib/gcc-4.7/libstdc++-v3/include/debug/ |
| D | set.h | 199 std::pair<_Base_iterator, bool> __res = _Base::insert(__x); in _GLIBCXX_VISIBILITY() local 200 return std::pair<iterator, bool>(iterator(__res.first, this), in _GLIBCXX_VISIBILITY() 201 __res.second); in _GLIBCXX_VISIBILITY() 208 std::pair<_Base_iterator, bool> __res in _GLIBCXX_VISIBILITY() local 210 return std::pair<iterator, bool>(iterator(__res.first, this), in _GLIBCXX_VISIBILITY() 211 __res.second); in _GLIBCXX_VISIBILITY() 371 std::pair<_Base_iterator, _Base_iterator> __res = in _GLIBCXX_VISIBILITY() local 373 return std::make_pair(iterator(__res.first, this), in _GLIBCXX_VISIBILITY() 374 iterator(__res.second, this)); in _GLIBCXX_VISIBILITY() 382 std::pair<_Base_iterator, _Base_iterator> __res = in _GLIBCXX_VISIBILITY() local [all …]
|