Searched refs:__offset (Results 1 - 15 of 15) sorted by relevance

/haiku-buildtools/legacy/gcc/gcc/ginclude/
H A Dva-alpha.h21 int __offset; /* Byte offset of args so far. */ member in struct:__anon3394
118 (*(((__va).__offset += __va_tsize (__type)), \
119 (__type *)(void *)((__va).__base + (__va).__offset \
121 == __real_type_class) && (__va).__offset <= (6 * 8)) \
/haiku-buildtools/gcc/libstdc++-v3/include/parallel/
H A Dset_operations.h396 _IIter __offset[2]; local
400 __rank, __offset, __op._M_comp);
404 // *(__offset[ 0 ] - 1) == *__offset[ 1 ]
405 if (__offset[ 0 ] != __begin1 && __offset[1] != __end2
406 && !__op._M_comp(*(__offset[0] - 1), *__offset[1])
407 && !__op._M_comp(*__offset[1], *(__offset[
[all...]
H A Drandom_shuffle.h176 _SequenceIndex __offset = 0, __global_offset = 0; local
185 __sd->_M_dist[__s + 1][__t] += __offset;
186 __offset = __sd->_M_dist[__s + 1][__d->_M_num_threads];
190 (::operator new(sizeof(_ValueType) * __offset));
239 for (_SequenceIndex __i = 0; __i < __offset; ++__i)
H A Dmultiway_mergesort.h351 _DifferenceType __offset = 0, __length_am = 0; local
356 __offset += __sd->_M_pieces[__iam][__s]._M_begin;
376 __sd->_M_source + __offset, __comp,
H A Dmultiseq_selection.h380 * @param __offset The rank of the selected element in the global
390 _RankType& __offset, _Compare __comp = std::less<_Tp>())
617 __offset = 0;
622 __offset = 0;
630 __offset += __a[__i] - lb;
/haiku-buildtools/gcc/libstdc++-v3/include/ext/
H A Dpointer.h407 operator+(const _Pointer_adapter& __lhs, INT_TYPE __offset) \
408 { return _Pointer_adapter(__lhs.get() + __offset); } \
411 operator+(INT_TYPE __offset, const _Pointer_adapter& __rhs) \
412 { return _Pointer_adapter(__rhs.get() + __offset); } \
415 operator-(const _Pointer_adapter& __lhs, INT_TYPE __offset) \
416 { return _Pointer_adapter(__lhs.get() - __offset); } \
419 operator+=(INT_TYPE __offset) \
421 _Storage_policy::set(_Storage_policy::get() + __offset); \
426 operator-=(INT_TYPE __offset) \
428 _Storage_policy::set(_Storage_policy::get() - __offset); \
[all...]
/haiku-buildtools/legacy/gcc/libio/
H A Diolibio.h48 #define _IO_fseek(__fp, __offset, __whence) \
49 (_IO_seekoff(__fp, __offset, __whence, _IOS_INPUT|_IOS_OUTPUT) == _IO_pos_BAD ? EOF : 0)
/haiku-buildtools/gcc/libstdc++-v3/libsupc++/
H A Dvmi_class_type_info.cc47 ptrdiff_t offset = __base_info[i].__offset ();
126 ptrdiff_t offset = __base_info[i].__offset ();
319 ptrdiff_t offset = __base_info[i].__offset ();
H A Dcxxabi.h392 __offset() const function in class:__cxxabiv1::__base_class_type_info
/haiku-buildtools/legacy/gcc/libstdc++/stl/
H A Dbitset195 const size_t __offset = __shift % __BITS_PER_WORDT(_WordT);
196 const size_t __sub_offset = __BITS_PER_WORDT(_WordT) - __offset;
199 _M_w[__n] = (_M_w[__n - __wshift] << __offset) |
202 _M_w[__n] = _M_w[0] << __offset;
213 const size_t __offset = __shift % __BITS_PER_WORDT(_WordT);
214 const size_t __sub_offset = __BITS_PER_WORDT(_WordT) - __offset;
218 _M_w[__n] = (_M_w[__n + __wshift] >> __offset) |
220 _M_w[__limit] = _M_w[_Nw-1] >> __offset;
H A Dstl_deque.h176 difference_type __offset = __n + (_M_cur - _M_first); local
177 if (__offset >= 0 && __offset < difference_type(_S_buffer_size()))
181 __offset > 0 ? __offset / difference_type(_S_buffer_size())
182 : -difference_type((-__offset - 1) / _S_buffer_size()) - 1;
185 (__offset - __node_offset * difference_type(_S_buffer_size()));
/haiku-buildtools/gcc/libstdc++-v3/include/bits/
H A Dstl_deque.h208 const difference_type __offset = __n + (_M_cur - _M_first); local
209 if (__offset >= 0 && __offset < difference_type(_S_buffer_size()))
214 __offset > 0 ? __offset / difference_type(_S_buffer_size())
215 : -difference_type((-__offset - 1)
218 _M_cur = _M_first + (__offset - __node_offset
1664 difference_type __offset = __position - cbegin(); local
1666 return begin() + __offset;
1701 difference_type __offset local
[all...]
H A Dstl_vector.h1053 difference_type __offset = __position - cbegin(); local
1054 _M_fill_insert(begin() + __offset, __n, __x);
1055 return begin() + __offset;
1098 difference_type __offset = __position - cbegin(); local
1099 _M_insert_dispatch(begin() + __offset,
1101 return begin() + __offset;
H A Dstl_bvector.h975 difference_type __offset = __position - cbegin();
978 return begin() + __offset;
995 difference_type __offset = __position - cbegin();
997 return begin() + __offset;
/haiku-buildtools/gcc/libsanitizer/asan/
H A Dasan_interceptors.cc41 uptr __offset = (uptr)(offset); \
44 if (__offset > __offset + __size) { \
46 ReportStringFunctionSizeOverflow(__offset, __size, &stack); \
48 if (!QuickCheckForUnpoisonedRegion(__offset, __size) && \
49 (__bad = __asan_region_is_poisoned(__offset, __size))) { \

Completed in 271 milliseconds