Searched refs:__ip (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/clang/lib/Headers/ |
H A D | unwind.h | 231 _Unwind_Word __ip = _Unwind_GetGR(__context, 15); in _Unwind_GetIP() local 232 return __ip & ~(_Unwind_Word)(0x1); /* Remove thumb mode bit. */ in _Unwind_GetIP()
|
/freebsd/usr.sbin/bsdconfig/share/media/ |
H A D | tcpip.subr | 505 local __ip 506 __ip=$( ifconfig "$__interface" 2> /dev/null | 508 setvar "$__var_to_set" "$__ip" 611 local __ip 612 __ip=$( route -n get default 2> /dev/null | 614 setvar "$__var_to_set" "$__ip"
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | string | 1923 …__insert_from_safe_copy(size_type __n, size_type __ip, _ForwardIterator __first, _Sentinel __last)… 1930 size_type __n_move = __sz - __ip; 1932 traits_type::move(__p + __ip + __n, __p + __ip, __n_move); 1934 __grow_by_without_replace(__cap, __sz + __n - __cap, __sz, __ip, 0, __n); 1940 __copy_non_overlapping_range(__first, __last, __p + __ip); 1942 return begin() + __ip; 3047 size_type __ip = static_cast<size_type>(__pos - begin()); 3049 return begin() + __ip; 3052 return __insert_from_safe_copy(__n, __ip, __first, __last); 3055 return __insert_from_safe_copy(__n, __ip, __temp.begin(), __temp.end()); [all …]
|