| /freebsd/contrib/llvm-project/libcxx/src/include/ |
| H A D | from_chars_floating_point.h | 99 size_t __offset = 1; in __from_chars_floating_point_nan() local 101 if (__ptr[__offset] == ')') { in __from_chars_floating_point_nan() 102 __ptr += __offset + 1; in __from_chars_floating_point_nan() 105 if (__ptr[__offset] != '_' && !std::isalnum(__ptr[__offset])) in __from_chars_floating_point_nan() 107 ++__offset; in __from_chars_floating_point_nan() 108 } while (__ptr + __offset != __last); in __from_chars_floating_point_nan() 119 size_t __offset{size_t(-1)}; 132 …ant_result<_Tp> __parse_fractional_hex_constant(const char* __input, size_t __n, size_t __offset) { in __parse_fractional_hex_constant() argument 137 for (; __offset < __n; ++__offset) { in __parse_fractional_hex_constant() 138 if (std::isxdigit(__input[__offset])) { in __parse_fractional_hex_constant() [all …]
|
| /freebsd/contrib/llvm-project/clang/lib/Headers/ |
| H A D | __clang_cuda_intrinsics.h | 25 inline __device__ int __FnName(int __val, __Type __offset, \ 27 return __IntIntrinsic(__val, __offset, \ 30 inline __device__ float __FnName(float __val, __Type __offset, \ 32 return __FloatIntrinsic(__val, __offset, \ 35 inline __device__ unsigned int __FnName(unsigned int __val, __Type __offset, \ 38 ::__FnName(static_cast<int>(__val), __offset, __width)); \ 40 inline __device__ long long __FnName(long long __val, __Type __offset, \ 49 __tmp.__a = ::__FnName(__tmp.__a, __offset, __width); \ 50 __tmp.__b = ::__FnName(__tmp.__b, __offset, __width); \ 55 inline __device__ long __FnName(long __val, __Type __offset, \ [all …]
|
| H A D | vecintrin.h | 945 __vector unsigned int __offset, in vec_gather_element() argument 949 (const char *)__ptr + __offset[__index]); in vec_gather_element() 955 __vector unsigned int __offset, in vec_gather_element() argument 959 (const char *)__ptr + __offset[__index]); in vec_gather_element() 965 __vector unsigned int __offset, in vec_gather_element() argument 969 (const char *)__ptr + __offset[__index]); in vec_gather_element() 975 __vector unsigned long long __offset, in vec_gather_element() argument 979 (const char *)__ptr + __offset[__index]); in vec_gather_element() 985 __vector unsigned long long __offset, in vec_gather_element() argument 989 (const char *)__ptr + __offset[__index]); in vec_gather_element() [all …]
|
| H A D | altivec.h | 17728 vec_xl(ptrdiff_t __offset, const signed char *__ptr) { in vec_xl() argument 17729 return *(unaligned_vec_schar *)(__ptr + __offset); in vec_xl() 17733 vec_xl(ptrdiff_t __offset, const unsigned char *__ptr) { in vec_xl() argument 17734 return *(unaligned_vec_uchar*)(__ptr + __offset); in vec_xl() 17738 vec_xl(ptrdiff_t __offset, const signed short *__ptr) { in vec_xl() argument 17739 signed char *__addr = (signed char *)__ptr + __offset; in vec_xl() 17744 vec_xl(ptrdiff_t __offset, const unsigned short *__ptr) { in vec_xl() argument 17745 signed char *__addr = (signed char *)__ptr + __offset; in vec_xl() 17750 vec_xl(ptrdiff_t __offset, const signed int *__ptr) { in vec_xl() argument 17751 signed char *__addr = (signed char *)__ptr + __offset; in vec_xl() [all …]
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/asan/ |
| H A D | asan_interceptors_memintrinsics.h | 57 uptr __offset = (uptr)(offset); \ in DECLARE_REAL() 60 if (UNLIKELY(__offset > __offset + __size)) { \ in DECLARE_REAL() 62 ReportStringFunctionSizeOverflow(__offset, __size, &stack); \ in DECLARE_REAL() 64 if (UNLIKELY(!QuickCheckForUnpoisonedRegion(__offset, __size)) && \ in DECLARE_REAL() 65 (__bad = __asan_region_is_poisoned(__offset, __size))) { \ in DECLARE_REAL()
|
| /freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
| H A D | tai_clock.h | 70 static constexpr chrono::seconds __offset{378691210}; 79 …RT_ARGUMENT_WITHIN_DOMAIN(__time_since_epoch >= utc_time<_Rp>::min().time_since_epoch() + __offset, in to_utc() 82 return utc_time<_Rp>{__time_since_epoch - __offset}; in to_utc() 90 …RT_ARGUMENT_WITHIN_DOMAIN(__time_since_epoch <= utc_time<_Rp>::max().time_since_epoch() - __offset, in from_utc() 93 return tai_time<_Rp>{__time_since_epoch + __offset}; in from_utc()
|
| H A D | gps_clock.h | 52 static constexpr chrono::seconds __offset{315964809}; 61 …RT_ARGUMENT_WITHIN_DOMAIN(__time_since_epoch >= utc_time<_Rp>::min().time_since_epoch() + __offset, in to_utc() 64 return utc_time<_Rp>{__time_since_epoch + __offset}; in to_utc() 72 …RT_ARGUMENT_WITHIN_DOMAIN(__time_since_epoch <= utc_time<_Rp>::max().time_since_epoch() - __offset, in from_utc() 75 return gps_time<_Rp>{__time_since_epoch - __offset}; in from_utc()
|
| H A D | formatter.h | 208 __format_zone_offset(basic_stringstream<_CharT>& __sstr, chrono::seconds __offset, bool __modifier)… in __format_zone_offset() argument 209 if (__offset < 0s) { in __format_zone_offset() 211 __offset = -__offset; in __format_zone_offset() 216 chrono::hh_mm_ss __hms{__offset}; in __format_zone_offset() 230 chrono::seconds __offset; member 377 __formatter::__format_zone_offset(__sstr, __z.__offset, false); in __format_chrono_using_chrono_specs() 404 __formatter::__format_zone_offset(__sstr, __z.__offset, true); in __format_chrono_using_chrono_specs()
|
| H A D | convert_to_tm.h | 124 constexpr chrono::seconds __offset{4383 * 24 * 60 * 60}; in __convert_to_tm() 125 return std::__convert_to_tm<_Tm>(chrono::sys_time<_Rp>{__tp.time_since_epoch() - __offset}); in __convert_to_tm()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__algorithm/ |
| H A D | mismatch.h | 81 auto __offset = __i * __vec_size + std::__find_first_not_set(__cmp_res); in __mismatch_vectorized() local 82 return {__first1 + __offset, __first2 + __offset}; in __mismatch_vectorized() 94 auto __offset = std::__find_first_not_set(__cmp_res); in __mismatch_vectorized() local 95 return {__first1 + __offset, __first2 + __offset}; in __mismatch_vectorized() 109 auto __offset = in __mismatch_vectorized() local 111 return {__first1 + __offset, __first2 + __offset}; in __mismatch_vectorized()
|
| /freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | mismatch.h | 82 auto __offset = __i * __vec_size + std::__find_first_not_set(__cmp_res); in __mismatch_vectorized() local 83 return {__first1 + __offset, __first2 + __offset}; in __mismatch_vectorized() 95 auto __offset = std::__find_first_not_set(__cmp_res); in __mismatch_vectorized() local 96 return {__first1 + __offset, __first2 + __offset}; in __mismatch_vectorized() 110 auto __offset = in __mismatch_vectorized() local 112 return {__first1 + __offset, __first2 + __offset}; in __mismatch_vectorized()
|
| H A D | ranges_ends_with.h | 107 _Offset __offset) { in __ends_with_fn_impl_with_offset() 114 ranges::advance(__first1, __offset); in __ends_with_fn_impl_with_offset() 164 auto __offset = __n1 - __n2; local 174 __offset);
|
| /freebsd/include/ssp/ |
| H A D | unistd.h | 70 off_t __offset), (__fd, __buf, __len, __offset));
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | span | 346 subspan(size_type __offset, size_type __count = dynamic_extent) const noexcept { 347 …_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(__offset <= size(), "span<T, N>::subspan(offset, count): offse… 349 return {data() + __offset, size() - __offset}; 351 … __count <= size() - __offset, "span<T, N>::subspan(offset, count): offset + count out of range"); 352 return {data() + __offset, __count}; 511 subspan(size_type __offset, size_type __count = dynamic_extent) const noexcept { 512 …_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(__offset <= size(), "span<T>::subspan(offset, count): offset o… 514 return {data() + __offset, size() - __offset}; 516 … __count <= size() - __offset, "span<T>::subspan(offset, count): offset + count out of range"); 517 return {data() + __offset, __count};
|
| H A D | fstream | 360 _LIBCPP_HIDE_FROM_ABI static int __fseek(FILE* __file, pos_type __offset, int __whence); 977 int basic_filebuf<_CharT, _Traits>::__fseek(FILE* __file, pos_type __offset, int __whence) { 979 return _fseeki64(__file, __offset, __whence); 981 return fseek(__file, __offset, __whence); 983 return ::fseeko(__file, __offset, __whence);
|
| /freebsd/include/ |
| H A D | nl_types.h | 72 int32_t __offset; member
|
| /freebsd/contrib/llvm-project/libcxx/src/experimental/ |
| H A D | time_zone.cpp | 144 chrono::hh_mm_ss __offset{__continuation.__stdoff + __save}; in __format() local 145 if (__offset.is_negative()) { in __format() 147 __offset = chrono::hh_mm_ss{-(__continuation.__stdoff + __save)}; in __format() 151 if (__offset.minutes() != 0min) in __format() 152 std::format_to(std::back_inserter(__result), "{:%H%M}", __offset); in __format() 154 std::format_to(std::back_inserter(__result), "{:%H}", __offset); in __format()
|
| H A D | tzdb.cpp | 425 [[nodiscard]] static bool __parse_dst(istream& __input, seconds __offset) { in __parse_dst() argument 435 return __offset != 0s; in __parse_dst() 640 constexpr auto __offset = sys_days{1970y / January / 1} - sys_days{1900y / January / 1}; in __parse_leap_seconds() 664 … sys_seconds __date = sys_seconds{seconds{chrono::__parse_integral(__input, false)}} - __offset; in __parse_leap_seconds()
|
| /freebsd/contrib/llvm-project/libcxx/include/__mdspan/ |
| H A D | layout_stride.h | 127 _LIBCPP_HIDE_FROM_ABI static constexpr index_type __offset(const _StridedMapping& __mapping) { in __offset() function 253 _LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(static_cast<index_type>(0) == __offset(__other), 346 if (__offset(__rhs))
|
| /freebsd/lib/libc/nls/ |
| H A D | msgcat.c | 317 msg_hdr[i].__offset)); in catgets()
|
| /freebsd/contrib/llvm-project/compiler-rt/lib/msan/ |
| H A D | msan_interceptors.cpp | 95 sptr __offset = __msan_test_shadow(x, n); \ 98 if (__offset >= 0 && __msan::flags()->report_umrs) { \ 100 ReportUMRInsideAddressRange(__func__, x, n, __offset); \ 102 pc, bp, __msan_get_origin((const char *)x + __offset)); \
|
| /freebsd/usr.bin/gencat/ |
| H A D | gencat.c | 558 msg_hdr->__offset = htonl(msg_offset);
|
| /freebsd/contrib/llvm-project/libcxx/include/__flat_map/ |
| H A D | flat_multimap.h | 994 auto __offset = __it - __first; 996 …const auto __erase_container = [&](auto& __cont) { __cont.erase(__cont.begin() + __offset, __cont.…
|
| H A D | flat_map.h | 1255 auto __offset = __it - __first; 1257 …const auto __erase_container = [&](auto& __cont) { __cont.erase(__cont.begin() + __offset, __cont.…
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | regex | 5060 int __offset = (__flags & regex_constants::match_prev_avail) ? 1 : 0; 5061 basic_string<_CharT> __s(std::prev(__first, __offset), __last); 5063 bool __r = __e.__search(__s.data() + __offset, __s.data() + __s.size(), __mc, __flags);
|