| /openbsd/src/gnu/gcc/libstdc++-v3/include/bits/ |
| D | cpp_type_traits.h | 113 enum { __value = bool(_Sp::__value) || bool(_Tp::__value) }; 114 typedef typename __truth_type<__value>::__type __type; 121 enum { __value = 0 }; 128 enum { __value = 1 }; 136 enum { __value = 0 }; 143 enum { __value = 1 }; 153 enum { __value = 0 }; 163 enum { __value = 1 }; 170 enum { __value = 1 }; 177 enum { __value = 1 }; [all …]
|
| D | stl_numeric.h | 211 _ValueType __value = *__first; in partial_sum() local 212 *__result = __value; in partial_sum() 215 __value = __value + *__first; in partial_sum() 216 *++__result = __value; in partial_sum() 251 _ValueType __value = *__first; in partial_sum() local 252 *__result = __value; in partial_sum() 255 __value = __binary_op(__value, *__first); in partial_sum() 256 *++__result = __value; in partial_sum() 287 _ValueType __value = *__first; in adjacent_difference() local 288 *__result = __value; in adjacent_difference() [all …]
|
| D | stl_algobase.h | 164 std::__iter_swap<__are_same<_ValueType1, _ValueType2>::__value && 165 __are_same<_ValueType1 &, _ReferenceType1>::__value && 166 __are_same<_ValueType2 &, _ReferenceType2>::__value>:: 310 const bool __simple = (__is_scalar<_ValueTypeI>::__value 311 && __is_pointer<_II>::__value 312 && __is_pointer<_OI>::__value 313 && __are_same<_ValueTypeI, _ValueTypeO>::__value); 320 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, 325 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, 330 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, _CharT*>::__type [all …]
|
| D | stl_heap.h | 118 _Distance __holeIndex, _Distance __topIndex, _Tp __value) in __push_heap() argument 121 while (__holeIndex > __topIndex && *(__first + __parent) < __value) in __push_heap() 127 *(__first + __holeIndex) = __value; in __push_heap() 163 _Distance __topIndex, _Tp __value, _Compare __comp) in __push_heap() argument 167 && __comp(*(__first + __parent), __value)) in __push_heap() 173 *(__first + __holeIndex) = __value; in __push_heap() 210 _Distance __len, _Tp __value) in __adjust_heap() argument 227 std::__push_heap(__first, __holeIndex, __topIndex, __value); in __adjust_heap() 233 _RandomAccessIterator __result, _Tp __value) in __pop_heap() argument 239 __value); in __pop_heap() [all …]
|
| D | streambuf_iterator.h | 65 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, in _GLIBCXX_BEGIN_NAMESPACE() 71 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, in _GLIBCXX_BEGIN_NAMESPACE() 77 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, in _GLIBCXX_BEGIN_NAMESPACE() 221 friend typename __gnu_cxx::__enable_if<__is_char<_CharT2>::__value, 282 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, 299 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, 311 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, 323 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value, 358 typename __gnu_cxx::__enable_if<__is_char<_CharT>::__value,
|
| D | stl_iterator.h | 411 operator=(typename _Container::const_reference __value) 413 container->push_back(__value); 485 operator=(typename _Container::const_reference __value) 487 container->push_front(__value); 580 operator=(const typename _Container::const_reference __value) 582 iter = container->insert(iter, __value); 659 (std::__are_same<_Iter, typename _Container::pointer>::__value), in __normal_iterator() argument
|
| /openbsd/src/gnu/llvm/libcxx/src/ |
| D | charconv.cpp | 45 to_chars_result to_chars(char* __first, char* __last, float __value) { in to_chars() argument 46 …return _Floating_to_chars<_Floating_to_chars_overload::_Plain>(__first, __last, __value, chars_for… in to_chars() 49 to_chars_result to_chars(char* __first, char* __last, double __value) { in to_chars() argument 50 …return _Floating_to_chars<_Floating_to_chars_overload::_Plain>(__first, __last, __value, chars_for… in to_chars() 53 to_chars_result to_chars(char* __first, char* __last, long double __value) { in to_chars() argument 54 …oating_to_chars<_Floating_to_chars_overload::_Plain>(__first, __last, static_cast<double>(__value), in to_chars() 58 to_chars_result to_chars(char* __first, char* __last, float __value, chars_format __fmt) { in to_chars() argument 59 …return _Floating_to_chars<_Floating_to_chars_overload::_Format_only>(__first, __last, __value, __f… in to_chars() 62 to_chars_result to_chars(char* __first, char* __last, double __value, chars_format __fmt) { in to_chars() argument 63 …return _Floating_to_chars<_Floating_to_chars_overload::_Format_only>(__first, __last, __value, __f… in to_chars() [all …]
|
| /openbsd/src/gnu/llvm/libcxx/include/ |
| D | charconv | 287 __to_chars_itoa(char* __first, char* __last, _Tp __value, false_type); 291 __to_chars_itoa(char* __first, char* __last, _Tp __value, true_type) 293 auto __x = std::__to_unsigned_like(__value); 294 if (__value < 0 && __first != __last) 305 __to_chars_itoa(char* __first, char* __last, _Tp __value, false_type) 310 if (__tx::digits <= __diff || __tx::__width(__value) <= __diff) 311 return {__tx::__convert(__first, __value), errc(0)}; 319 __to_chars_itoa(char* __first, char* __last, __uint128_t __value, false_type) 325 if(__value <= numeric_limits<uint64_t>::max()) 326 return __to_chars_itoa(__first, __last, static_cast<uint64_t>(__value), false_type()); [all …]
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/sanitizer_common/ |
| D | sanitizer_ptrauth.h | 15 inline unsigned long ptrauth_strip(void* __value, unsigned int __key) { in ptrauth_strip() argument 26 : "r"(__value) in ptrauth_strip() 30 #define ptrauth_auth_data(__value, __old_key, __old_data) __value argument 34 #define ptrauth_strip(__value, __key) __value argument 35 #define ptrauth_auth_data(__value, __old_key, __old_data) __value argument
|
| /openbsd/src/gnu/lib/libstdc++/libstdc++/include/bits/ |
| D | stl_numeric.h | 136 _ValueType __value = *__first; in partial_sum() local 138 __value = __value + *__first; in partial_sum() 139 *++__result = __value; in partial_sum() 157 _ValueType __value = *__first; in partial_sum() local 159 __value = __binary_op(__value, *__first); in partial_sum() 160 *++__result = __value; in partial_sum() 178 _ValueType __value = *__first; in adjacent_difference() local 181 *++__result = __tmp - __value; in adjacent_difference() 182 __value = __tmp; in adjacent_difference() 200 _ValueType __value = *__first; in adjacent_difference() local [all …]
|
| D | stl_heap.h | 71 _Distance __holeIndex, _Distance __topIndex, _Tp __value) in __push_heap() argument 74 while (__holeIndex > __topIndex && *(__first + __parent) < __value) { in __push_heap() 79 *(__first + __holeIndex) = __value; in __push_heap() 104 _Distance __topIndex, _Tp __value, _Compare __comp) in __push_heap() argument 107 while (__holeIndex > __topIndex && __comp(*(__first + __parent), __value)) { in __push_heap() 112 *(__first + __holeIndex) = __value; in __push_heap() 136 _Distance __len, _Tp __value) in __adjust_heap() argument 151 __push_heap(__first, __holeIndex, __topIndex, __value); in __adjust_heap() 157 _RandomAccessIterator __result, _Tp __value) in __pop_heap() argument 161 __adjust_heap(__first, _Distance(0), _Distance(__last - __first), __value); in __pop_heap() [all …]
|
| D | stl_construct.h | 77 _Construct(_T1* __p, const _T2& __value) in _Construct() argument 78 { new (static_cast<void*>(__p)) _T1(__value); } in _Construct()
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.dg/ |
| D | 980414-1.c | 11 register double __value, __exponent; in mypow() local 40 : "=t" (__value), "=u" (__exponent) : "0" (__x), "1" (__y)); in mypow() 41 __value += 1.0; in mypow() 44 : "=t" (__value) : "0" (__value), "u" (__exponent)); in mypow() 45 return __value; in mypow()
|
| D | 990117-1.c | 7 register double __value; in fabs() local 10 : "=t" (__value) : "0" (__x)); in fabs() 11 return __value; in fabs()
|
| /openbsd/src/gnu/gcc/libstdc++-v3/include/c_std/ |
| D | std_cmath.h | 111 inline typename __gnu_cxx::__enable_if<__is_integer<_Tp>::__value, 127 inline typename __gnu_cxx::__enable_if<__is_integer<_Tp>::__value, 143 inline typename __gnu_cxx::__enable_if<__is_integer<_Tp>::__value, 159 inline typename __gnu_cxx::__enable_if<__is_integer<_Tp>::__value 160 && __is_integer<_Up>::__value, 176 inline typename __gnu_cxx::__enable_if<__is_integer<_Tp>::__value, 192 inline typename __gnu_cxx::__enable_if<__is_integer<_Tp>::__value, 208 inline typename __gnu_cxx::__enable_if<__is_integer<_Tp>::__value, 224 inline typename __gnu_cxx::__enable_if<__is_integer<_Tp>::__value, 240 inline typename __gnu_cxx::__enable_if<__is_integer<_Tp>::__value, [all …]
|
| /openbsd/src/include/ |
| D | bitstring.h | 113 register int __bit, __nbits = (nbits), __value = -1; \ 116 __value = __bit; \ 119 *(value) = __value; \ 125 register int __bit, __nbits = (nbits), __value = -1; \ 128 __value = __bit; \ 131 *(value) = __value; \
|
| /openbsd/src/gnu/llvm/clang/lib/Headers/ |
| D | ptwriteintrin.h | 22 _ptwrite32(unsigned int __value) { in _ptwrite32() argument 23 __builtin_ia32_ptwrite32(__value); in _ptwrite32() 29 _ptwrite64(unsigned long long __value) { in _ptwrite64() argument 30 __builtin_ia32_ptwrite64(__value); in _ptwrite64()
|
| D | movdirintrin.h | 19 _directstoreu_u32 (void *__dst, unsigned int __value) in _directstoreu_u32() argument 21 __builtin_ia32_directstore_u32((unsigned int *)__dst, (unsigned int)__value); in _directstoreu_u32() 29 _directstoreu_u64 (void *__dst, unsigned long __value) in _directstoreu_u64() argument 31 __builtin_ia32_directstore_u64((unsigned long *)__dst, __value); in _directstoreu_u64()
|
| D | unwind.h | 218 _Unwind_Word __value; in _Unwind_GetGR() local 219 _Unwind_VRS_Get(__context, _UVRSC_CORE, __index, _UVRSD_UINT32, &__value); in _Unwind_GetGR() 220 return __value; in _Unwind_GetGR() 225 _Unwind_Word __value) { in _Unwind_SetGR() argument 226 _Unwind_VRS_Set(__context, _UVRSC_CORE, __index, _UVRSD_UINT32, &__value); in _Unwind_SetGR() 236 void _Unwind_SetIP(struct _Unwind_Context *__context, _Unwind_Word __value) { in _Unwind_SetIP() argument 238 _Unwind_SetGR(__context, 15, __value | __thumb_mode_bit); in _Unwind_SetIP()
|
| /openbsd/src/gnu/gcc/libstdc++-v3/include/tr1/ |
| D | type_traits | 63 static const bool __value = sizeof(__test<_Tp>(0)) == 1; 192 : public integral_constant<bool, !(__in_array<_Tp>::__value 248 static const bool __value = sizeof(__test<_Tp>(0)) == 1; 254 : public integral_constant<bool, __is_union_or_class_helper<_Tp>::__value> 294 static const bool __value = sizeof(__first<_Tp>) == sizeof(__second<_Tp>); 299 { static const bool __value = false; }; 303 : public integral_constant<bool, __is_empty_helper<_Tp>::__value> 322 static const bool __value = sizeof(__first<_Tp>) == sizeof(__second<_Tp>); 327 { static const bool __value = false; }; 331 : public integral_constant<bool, __is_polymorphic_helper<_Tp>::__value> [all …]
|
| /openbsd/src/gnu/gcc/libstdc++-v3/include/debug/ |
| D | formatter.h | 197 _Parameter(long __value, const char* __name) 201 _M_variant._M_integer._M_value = __value; 204 _Parameter(const char* __value, const char* __name) 208 _M_variant._M_string._M_value = __value; 323 _M_integer(long __value, const char* __name = 0) const 326 _M_parameters[_M_num_parameters++] = _Parameter(__value, __name); 331 _M_string(const char* __value, const char* __name = 0) const 334 _M_parameters[_M_num_parameters++] = _Parameter(__value, __name);
|
| D | functions.h | 270 const _Tp& __value) in __check_partitioned() argument 272 while (__first != __last && *__first < __value) in __check_partitioned() 274 while (__first != __last && !(*__first < __value)) in __check_partitioned() 283 const _Tp& __value, _Pred __pred) in __check_partitioned() argument 285 while (__first != __last && __pred(*__first, __value)) in __check_partitioned() 287 while (__first != __last && !__pred(*__first, __value)) in __check_partitioned()
|
| D | safe_sequence.h | 55 _Type __value; variable 58 explicit _Not_equal_to(const _Type& __v) : __value(__v) { } in _Not_equal_to() 62 { return __value != __x; } in operator()
|
| /openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/ |
| D | 990413-2.c | 17 register long double __value; in __atan2l() local 19 : "=t" (__value) in __atan2l() 22 return __value; in __atan2l()
|
| /openbsd/src/gnu/llvm/libcxx/src/include/ |
| D | atomic_support.h | 88 _ValueType __value, int __order = _AO_Seq) 90 return __atomic_exchange_n(__target, __value, __order); 149 _ValueType __value, int = _AO_Seq) 152 *__target = __value;
|