/openbsd/gnu/llvm/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 | 863 (const char *)__ptr + __offset[__index]); in vec_gather_element() 873 (const char *)__ptr + __offset[__index]); in vec_gather_element() 883 (const char *)__ptr + __offset[__index]); in vec_gather_element() 893 (const char *)__ptr + __offset[__index]); in vec_gather_element() 903 (const char *)__ptr + __offset[__index]); in vec_gather_element() 913 (const char *)__ptr + __offset[__index]); in vec_gather_element() 924 (const char *)__ptr + __offset[__index]); in vec_gather_element() 935 (const char *)__ptr + __offset[__index]); in vec_gather_element() 1083 vec_xl(long __offset, const float *__ptr) { in vec_xl() argument 1092 vec_xl(long __offset, const double *__ptr) { in vec_xl() argument [all …]
|
H A D | altivec.h | 17700 return *(unaligned_vec_uchar*)(__ptr + __offset); in vec_xl() 17840 return vec_xl(__offset, __ptr); in vec_xl_be() 17845 return vec_xl(__offset, __ptr); in vec_xl_be() 18050 *(__ptr + __offset) = (signed char)__vec[0]; in vec_xst_trunc() 18056 *(__ptr + __offset) = (unsigned char)__vec[0]; in vec_xst_trunc() 18062 *(__ptr + __offset) = (signed short)__vec[0]; in vec_xst_trunc() 18068 *(__ptr + __offset) = (unsigned short)__vec[0]; in vec_xst_trunc() 18074 *(__ptr + __offset) = (signed int)__vec[0]; in vec_xst_trunc() 18080 *(__ptr + __offset) = (unsigned int)__vec[0]; in vec_xst_trunc() 18180 vec_xst(__vec, __offset, __ptr); in vec_xst_be() [all …]
|
/openbsd/gnu/llvm/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()
|
/openbsd/gnu/lib/libstdc++/libstdc++/config/locale/generic/ |
H A D | ctype_members.cc | 206 size_t __offset = 0; in do_narrow() local 209 const wchar_t* __start = __lo + __offset; in do_narrow() 214 size_t __con = wcsrtombs(__dest + __offset, &__start, __len, &__state); in do_narrow() 217 __offset = __start - __lo; in do_narrow() 218 __dest[__offset++] = __dfault; in do_narrow()
|
/openbsd/gnu/lib/libstdc++/libstdc++/config/locale/gnu/ |
H A D | ctype_members.cc | 240 size_t __offset = 0; in do_narrow() local 243 const wchar_t* __start = __lo + __offset; in do_narrow() 248 size_t __con = wcsrtombs(__dest + __offset, &__start, __len, &__state); in do_narrow() 251 __offset = __start - __lo; in do_narrow() 252 __dest[__offset++] = __dfault; in do_narrow()
|
/openbsd/gnu/gcc/libstdc++-v3/include/debug/ |
H A D | vector | 268 difference_type __offset = __position - begin(); 273 this->_M_invalidate_if(_After_nth(__offset, _M_base().begin())); 283 difference_type __offset = __position - begin(); 288 this->_M_invalidate_if(_After_nth(__offset, _M_base().begin())); 303 difference_type __offset = __position - begin(); 309 this->_M_invalidate_if(_After_nth(__offset, _M_base().begin())); 317 difference_type __offset = __position - begin(); 319 this->_M_invalidate_if(_After_nth(__offset, _M_base().begin())); 330 difference_type __offset = __first - begin(); 333 this->_M_invalidate_if(_After_nth(__offset, _M_base().begin()));
|
/openbsd/gnu/lib/libstdc++/libstdc++/include/std/ |
H A D | std_bitset.h | 225 const size_t __offset = __shift % _GLIBCPP_BITSET_BITS_PER_WORD; in _M_do_left_shift() local 227 if (__offset == 0) in _M_do_left_shift() 232 const size_t __sub_offset = _GLIBCPP_BITSET_BITS_PER_WORD - __offset; in _M_do_left_shift() 234 _M_w[__n] = (_M_w[__n - __wshift] << __offset) | in _M_do_left_shift() 236 _M_w[__wshift] = _M_w[0] << __offset; in _M_do_left_shift() 250 const size_t __offset = __shift % _GLIBCPP_BITSET_BITS_PER_WORD; in _M_do_right_shift() local 253 if (__offset == 0) in _M_do_right_shift() 258 const size_t __sub_offset = _GLIBCPP_BITSET_BITS_PER_WORD - __offset; in _M_do_right_shift() 260 _M_w[__n] = (_M_w[__n + __wshift] >> __offset) | in _M_do_right_shift() 262 _M_w[__limit] = _M_w[_Nw-1] >> __offset; in _M_do_right_shift()
|
/openbsd/gnu/gcc/libstdc++-v3/include/std/ |
H A D | std_bitset.h | 222 const size_t __offset = __shift % _GLIBCXX_BITSET_BITS_PER_WORD; in _M_do_left_shift() local 224 if (__offset == 0) in _M_do_left_shift() 230 - __offset); in _M_do_left_shift() 232 _M_w[__n] = ((_M_w[__n - __wshift] << __offset) in _M_do_left_shift() 234 _M_w[__wshift] = _M_w[0] << __offset; in _M_do_left_shift() 248 const size_t __offset = __shift % _GLIBCXX_BITSET_BITS_PER_WORD; in _M_do_right_shift() local 251 if (__offset == 0) in _M_do_right_shift() 257 - __offset); in _M_do_right_shift() 259 _M_w[__n] = ((_M_w[__n + __wshift] >> __offset) in _M_do_right_shift() 261 _M_w[__limit] = _M_w[_Nw-1] >> __offset; in _M_do_right_shift()
|
/openbsd/gnu/llvm/libcxx/include/ |
H A D | span | 322 subspan(size_type __offset, size_type __count = dynamic_extent) const noexcept 324 … _LIBCPP_ASSERT(__offset <= size(), "span<T, N>::subspan(offset, count): offset out of range"); 327 return {data() + __offset, size() - __offset}; 328 …_LIBCPP_ASSERT(__count <= size() - __offset, "span<T, N>::subspan(offset, count): offset + count o… 329 return {data() + __offset, __count}; 488 subspan(size_type __offset, size_type __count = dynamic_extent) const noexcept 490 _LIBCPP_ASSERT(__offset <= size(), "span<T>::subspan(offset, count): offset out of range"); 493 return {data() + __offset, size() - __offset}; 494 …_LIBCPP_ASSERT(__count <= size() - __offset, "span<T>::subspan(offset, count): offset + count out … 495 return {data() + __offset, __count};
|
H A D | regex | 6115 int __offset = (__flags & regex_constants::match_prev_avail) ? 1 : 0; 6116 basic_string<_CharT> __s(_VSTD::prev(__first, __offset), __last); 6118 bool __r = __e.__search(__s.data() + __offset, __s.data() + __s.size(), __mc, __flags);
|
/openbsd/gnu/lib/libstdc++/libstdc++/libio/ |
H A D | iolibio.h | 80 #define _IO_fseek(__fp, __offset, __whence) \ argument 81 (_IO_seekoff(__fp, __offset, __whence, _IOS_INPUT|_IOS_OUTPUT) == _IO_pos_BAD ? EOF : 0)
|
/openbsd/include/ |
H A D | nl_types.h | 70 int32_t __offset; member
|
/openbsd/lib/libc/nls/ |
H A D | catopen.c | 269 if (ntohl(msg[j].__offset) > INT_MAX) in verify_msgcat() 271 off = MAXIMUM(off, ntohl(msg[j].__offset)); in verify_msgcat()
|
H A D | catgets.c | 76 + ntohl(msg_hdr[i].__offset); in catgets()
|
/openbsd/gnu/lib/libstdc++/libstdc++/include/bits/ |
H A D | stl_deque.h | 161 difference_type __offset = __n + (_M_cur - _M_first); member 162 if (__offset >= 0 && __offset < difference_type(_S_buffer_size())) 166 __offset > 0 ? __offset / difference_type(_S_buffer_size()) 167 : -difference_type((-__offset - 1) / _S_buffer_size()) - 1; 170 (__offset - __node_offset * difference_type(_S_buffer_size()));
|
/openbsd/gnu/gcc/libstdc++-v3/include/bits/ |
H A D | stl_deque.h | 185 const difference_type __offset = __n + (_M_cur - _M_first); member 186 if (__offset >= 0 && __offset < difference_type(_S_buffer_size())) 191 __offset > 0 ? __offset / difference_type(_S_buffer_size()) 192 : -difference_type((-__offset - 1) 195 _M_cur = _M_first + (__offset - __node_offset
|
/openbsd/sys/arch/alpha/include/ |
H A D | _types.h | 130 int __offset; member
|
/openbsd/gnu/lib/libstdc++/libstdc++/libsupc++/ |
H A D | tinfo.cc | 305 ptrdiff_t offset = __base_info[i].__offset (); in __do_find_public_src() 431 ptrdiff_t offset = __base_info[i].__offset (); in __do_dyncast() 626 ptrdiff_t offset = __base_info[i].__offset (); in __do_upcast()
|
H A D | cxxabi.h | 229 __PTRDIFF_TYPE__ __offset () const in __offset() function
|
/openbsd/gnu/gcc/libstdc++-v3/libsupc++/ |
H A D | tinfo.cc | 322 ptrdiff_t offset = __base_info[i].__offset (); in __do_find_public_src() 448 ptrdiff_t offset = __base_info[i].__offset (); in __do_dyncast() 643 ptrdiff_t offset = __base_info[i].__offset (); in __do_upcast()
|
H A D | cxxabi.h | 327 __offset() const in __offset() function
|
/openbsd/gnu/llvm/compiler-rt/lib/msan/ |
H A D | msan_interceptors.cpp | 92 sptr __offset = __msan_test_shadow(x, n); \ 95 if (__offset >= 0 && __msan::flags()->report_umrs) { \ 98 ReportUMRInsideAddressRange(__func__, x, n, __offset); \ 100 pc, bp, __msan_get_origin((const char *)x + __offset)); \
|
/openbsd/sys/dev/pci/drm/i915/ |
H A D | intel_uncore.c | 1261 const u32 __offset = (offset); \ 1262 if (NEEDS_FORCE_WAKE((__offset)) && !is_shadowed(uncore, __offset)) \ 1263 __fwd = find_fw_domain(uncore, __offset); \
|
/openbsd/usr.bin/gencat/ |
H A D | gencat.c | 573 msg_hdr->__offset = htonl(msg_offset); in MCWriteCat()
|