Searched refs:__ip (Results 1 – 2 of 2) sorted by relevance
/external/clang/lib/Headers/ |
D | unwind.h | 180 _Unwind_Word __ip = _Unwind_GetGR(__context, 15); in _Unwind_GetIP() local 181 return __ip & ~(_Unwind_Word)(0x1); /* Remove thumb mode bit. */ in _Unwind_GetIP()
|
/external/libcxx/include/ |
D | string | 2763 difference_type __ip = __pos - begin(); 2767 _VSTD::rotate(__p + __ip, __p + __old_sz, __p + size()); 2769 return iterator(this, __p + __ip); 2771 return iterator(__p + __ip); 2789 size_type __ip = static_cast<size_type>(__pos - begin()); 2799 size_type __n_move = __sz - __ip; 2801 traits_type::move(__p + __ip + __n, __p + __ip, __n_move); 2805 __grow_by(__cap, __sz + __n - __cap, __sz, __ip, 0, __n); 2811 for (__p += __ip; __first != __last; ++__p, ++__first) 2814 return begin() + __ip; [all …]
|