| /freebsd/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | sift_down.h | 32 _RandomAccessIterator __start) { in __sift_down() 37 // left-child of __start is at 2 * __start + 1 in __sift_down() 38 // right-child of __start is at 2 * __start + 2 in __sift_down() 39 difference_type __child = __start - __first; in __sift_down() 54 if (__comp(*__child_i, *__start)) in __sift_down() 55 // we are, __start is larger than its largest child in __sift_down() 58 value_type __top(_Ops::__iter_move(__start)); in __sift_down() 61 *__start in __sift_down() 31 __sift_down(_RandomAccessIterator __first,_Compare && __comp,typename iterator_traits<_RandomAccessIterator>::difference_type __len,_RandomAccessIterator __start) __sift_down() argument [all...] |
| H A D | make_heap.h | 38 for (difference_type __start = (__n - 2) / 2; __start >= 0; --__start) { in __make_heap() local 39 std::__sift_down<_AlgPolicy>(__first, __comp_ref, __n, __first + __start); in __make_heap()
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__algorithm/ |
| H A D | sift_down.h | 32 _RandomAccessIterator __start) { in __sift_down() argument 39 difference_type __child = __start - __first; in __sift_down() 54 if (__comp(*__child_i, *__start)) in __sift_down() 58 value_type __top(_Ops::__iter_move(__start)); in __sift_down() 61 *__start = _Ops::__iter_move(__child_i); in __sift_down() 62 __start = __child_i; in __sift_down() 79 *__start = std::move(__top); in __sift_down()
|
| H A D | make_heap.h | 38 for (difference_type __start = (__n - 2) / 2; __start >= 0; --__start) { in __make_heap() local 39 std::__sift_down<_AlgPolicy>(__first, __comp_ref, __n, __first + __start); in __make_heap()
|
| /freebsd/contrib/llvm-project/libcxx/src/include/ |
| H A D | overridable_function.h | 82 uintptr_t __start = reinterpret_cast<uintptr_t>(&__lcxx_override_start); in __is_function_overridden() local 95 return __ptr < __start || __ptr > __end; in __is_function_overridden() 116 uintptr_t __start = reinterpret_cast<uintptr_t>(&__start___lcxx_override); 125 return __ptr < __start || __ptr > __end;
|
| /freebsd/contrib/llvm-project/libcxx/include/__ranges/ |
| H A D | iota_view.h | 377 _LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Start&& __start) const 378 noexcept(noexcept(ranges::iota_view(std::forward<_Start>(__start)))) 379 -> decltype(ranges::iota_view(std::forward<_Start>(__start))) { 380 return ranges::iota_view(std::forward<_Start>(__start)); 384 …_LIBCPP_HIDE_FROM_ABI constexpr auto operator()(_Start&& __start, _BoundSentinel&& __bound_sentine… 385 …noexcept(ranges::iota_view(std::forward<_Start>(__start), std::forward<_BoundSentinel>(__bound_sen… 386 …-> decltype(ranges::iota_view(std::forward<_Start>(__start), std::forward<_BoundSentinel>(__bound_… 387 …return ranges::iota_view(std::forward<_Start>(__start), std::forward<_BoundSentinel>(__bound_senti…
|
| /freebsd/sys/powerpc/aim/ |
| H A D | locore64.S | 85 b __start 136 _NAKED_ENTRY(__start) 206 _END(__start) 283 2: bl __start
|
| H A D | locore32.S | 76 .globl __start 77 __start: label
|
| /freebsd/lib/csu/riscv/ |
| H A D | crt1_c.c | 40 void __start(int argc, char **argv, char **env, void (*cleanup)(void)) __dead2; 43 __start(int argc, char **argv, char **env, void (*cleanup)(void)) in __start() function
|
| H A D | crt1_s.S | 48 call __start
|
| /freebsd/lib/csu/arm/ |
| H A D | crt1_c.c | 58 void __start(int, char **, char **, struct ps_strings *, 62 __start(int argc, char **argv, char **env, struct ps_strings *ps_strings, in __start() function
|
| H A D | crt1_s.S | 64 b __start
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__thread/ |
| H A D | poll_with_backoff.h | 39 auto const __start = chrono::high_resolution_clock::now(); 47 chrono::nanoseconds const __elapsed = chrono::high_resolution_clock::now() - __start;
|
| /freebsd/contrib/llvm-project/libcxx/include/__thread/ |
| H A D | poll_with_backoff.h | 39 auto const __start = chrono::high_resolution_clock::now(); 47 chrono::nanoseconds const __elapsed = chrono::high_resolution_clock::now() - __start;
|
| /freebsd/contrib/llvm-project/libcxx/src/ |
| H A D | valarray.cpp | 21 void gslice::__init(size_t __start) { 29 __1d_[__k] = __start; in __init() 22 __init(size_t __start) __init() argument
|
| /freebsd/usr.sbin/bsdconfig/share/ |
| H A D | strings.subr | 78 local __tmp="$1" __start="${2:-1}" __len="$3" 79 [ "$__start" -gt 0 ] 2> /dev/null && 80 __start=$(( $__start - 1 )) 82 eval echo \"\${__tmp:\$__start${__len:+:\$__len}}\" 86 eval $__var_to_set=\"\${__tmp:\$__start:\$__len}\" 88 eval $__var_to_set=\"\${__tmp:\$__start}\" 104 local __tmp="$1" __start="${2:-1}" __size="$3" 111 [ "$__start" -ge 1 ] 2> /dev/null || __start=1 117 __trim=$(( $__start - 1 ))
|
| /freebsd/usr.sbin/sysrc/ |
| H A D | sysrc | 226 while [ "$__start" ]; do 227 case "$__start" in *\'*) 228 __string="$__string${__start%%\'*}'\\''" 229 __start="${__start#*\'}" continue 233 __string="$__string$__start"
|
| /freebsd/sys/compat/linuxkpi/common/include/linux/ |
| H A D | wait.h | 153 long __start = jiffies; \ 170 __ret = __timeout + __start - jiffies; \
|
| /freebsd/sys/dev/hptmv/ |
| H A D | raid5n.h | 120 LBA_T __start[MAX_MEMBERS]; member
|
| /freebsd/sys/powerpc/booke/ |
| H A D | locore.S | 84 b __start 102 .globl __start 103 __start: label
|
| /freebsd/sys/conf/ |
| H A D | ldscript.powerpc | 4 ENTRY(__start)
|
| H A D | ldscript.powerpc64le | 4 ENTRY(__start)
|
| H A D | ldscript.powerpc64 | 4 ENTRY(__start)
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | __split_buffer | 100 __split_buffer(size_type __cap, size_type __start, __alloc_rr& __a); 325 __split_buffer<_Tp, _Allocator>::__split_buffer(size_type __cap, size_type __start, __alloc_rr& __a) 334 __begin_ = __end_ = __first_ + __start;
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | __split_buffer | 98 _LIBCPP_HIDE_FROM_ABI __split_buffer(size_type __cap, size_type __start, __alloc_rr& __a); 316 __split_buffer<_Tp, _Allocator>::__split_buffer(size_type __cap, size_type __start, __alloc_rr& __a) 325 __begin_ = __end_ = __first_ + __start;
|