| /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 | 859 __vector unsigned int __offset, in vec_gather_element() argument 863 (const char *)__ptr + __offset[__index]); in vec_gather_element() 869 __vector unsigned int __offset, in vec_gather_element() argument 873 (const char *)__ptr + __offset[__index]); in vec_gather_element() 879 __vector unsigned int __offset, in vec_gather_element() argument 883 (const char *)__ptr + __offset[__index]); in vec_gather_element() 889 __vector unsigned long long __offset, in vec_gather_element() argument 893 (const char *)__ptr + __offset[__index]); in vec_gather_element() 899 __vector unsigned long long __offset, in vec_gather_element() argument 903 (const char *)__ptr + __offset[__index]); in vec_gather_element() [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/__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()
|
| 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 | 340 subspan(size_type __offset, size_type __count = dynamic_extent) const noexcept { 341 …_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(__offset <= size(), "span<T, N>::subspan(offset, count): offse… 343 return {data() + __offset, size() - __offset}; 345 … __count <= size() - __offset, "span<T, N>::subspan(offset, count): offset + count out of range"); 346 return {data() + __offset, __count}; 502 subspan(size_type __offset, size_type __count = dynamic_extent) const noexcept { 503 …_LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(__offset <= size(), "span<T>::subspan(offset, count): offset o… 505 return {data() + __offset, size() - __offset}; 507 … __count <= size() - __offset, "span<T>::subspan(offset, count): offset + count out of range"); 508 return {data() + __offset, __count};
|
| H A D | regex | 5144 int __offset = (__flags & regex_constants::match_prev_avail) ? 1 : 0; 5145 basic_string<_CharT> __s(std::prev(__first, __offset), __last); 5147 bool __r = __e.__search(__s.data() + __offset, __s.data() + __s.size(), __mc, __flags);
|
| /freebsd/contrib/llvm-project/libcxx/include/__chrono/ |
| H A D | formatter.h | 201 __format_zone_offset(basic_stringstream<_CharT>& __sstr, chrono::seconds __offset, bool __modifier)… in __format_zone_offset() argument 202 if (__offset < 0s) { in __format_zone_offset() 204 __offset = -__offset; in __format_zone_offset() 209 chrono::hh_mm_ss __hms{__offset}; in __format_zone_offset() 223 chrono::seconds __offset; member 367 __formatter::__format_zone_offset(__sstr, __z.__offset, false); in __format_chrono_using_chrono_specs() 394 __formatter::__format_zone_offset(__sstr, __z.__offset, true); in __format_chrono_using_chrono_specs()
|
| /freebsd/contrib/llvm-project/libcxx/src/experimental/ |
| H A D | time_zone.cpp | 135 chrono::hh_mm_ss __offset{__continuation.__stdoff + __save}; in __format() local 136 if (__offset.is_negative()) { in __format() 138 __offset = chrono::hh_mm_ss{-(__continuation.__stdoff + __save)}; in __format() 142 if (__offset.minutes() != 0min) in __format() 143 std::format_to(std::back_inserter(__result), "{:%H%M}", __offset); in __format() 145 std::format_to(std::back_inserter(__result), "{:%H}", __offset); in __format()
|
| H A D | tzdb.cpp | 412 [[nodiscard]] static bool __parse_dst(istream& __input, seconds __offset) { in __parse_dst() argument 422 return __offset != 0s; in __parse_dst() 627 constexpr auto __offset = sys_days{1970y / January / 1} - sys_days{1900y / January / 1}; in __parse_leap_seconds() 651 … sys_seconds __date = sys_seconds{seconds{chrono::__parse_integral(__input, false)}} - __offset; in __parse_leap_seconds()
|
| /freebsd/include/ |
| H A D | nl_types.h | 72 int32_t __offset; member
|
| /freebsd/contrib/llvm-project/libcxx/include/__mdspan/ |
| H A D | layout_stride.h | 122 _LIBCPP_HIDE_FROM_ABI static constexpr index_type __offset(const _StridedMapping& __mapping) { in __offset() function 248 _LIBCPP_ASSERT_VALID_ELEMENT_ACCESS(static_cast<index_type>(0) == __offset(__other), 341 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/sys/contrib/dev/rtw89/ |
| H A D | core.h | 2527 #define RTW89_DEF_FBTC_MREG(__type, __bytes, __offset) \ argument 2529 .offset = cpu_to_le32(__offset), }
|