Searched refs:__upper_bound (Results 1 – 8 of 8) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__format/ |
| H A D | escaped_output_table.h | 1029 uint32_t __upper_bound = (__entries[__i] >> 11) + (__entries[__i] & 0x7ffu); in __needs_escape() local 1030 return __code_point <= __upper_bound; in __needs_escape()
|
| H A D | width_estimation_table.h | 261 uint32_t __upper_bound = (__entries[__i] >> 14) + (__entries[__i] & 0x3fffu); in __estimated_width() local 262 return 1 + (__code_point <= __upper_bound); in __estimated_width()
|
| H A D | extended_grapheme_cluster_table.h | 1650 uint32_t __upper_bound = (__entries[__i] >> 11) + ((__entries[__i] >> 4) & 0x7f); in __get_property() local 1651 if (__code_point <= __upper_bound) in __get_property()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/__algorithm/ |
| H A D | ranges_upper_bound.h | 33 namespace __upper_bound { 66 inline constexpr auto upper_bound = __upper_bound::__fn{};
|
| H A D | upper_bound.h | 35 __upper_bound(_Iter __first, _Sent __last, const _Tp& __value, _Compare&& __comp, _Proj&& __proj) { in __upper_bound() function 54 return std::__upper_bound<_ClassicAlgPolicy>( in upper_bound()
|
| H A D | equal_range.h | 56 … std::__upper_bound<_AlgPolicy>(++__mp1, __end, __value, __comp, __proj)); in __equal_range()
|
| H A D | inplace_merge.h | 168 __m1 = std::__upper_bound<_AlgPolicy>(__first, __middle, *__m2, __comp, std::__identity()); in __inplace_merge()
|
| /freebsd-14.2/contrib/llvm-project/libcxx/include/ |
| H A D | __tree | 1212 return __upper_bound(__v, __root(), __end_node()); 1215 …_LIBCPP_HIDE_FROM_ABI iterator __upper_bound(const _Key& __v, __node_pointer __root, __iter_pointe… 1218 return __upper_bound(__v, __root(), __end_node()); 1222 __upper_bound(const _Key& __v, __node_pointer __root, __iter_pointer __result) const; 2135 __upper_bound(__k, static_cast<__node_pointer>(__rt->__right_), __result)); 2171 __tree<_Tp, _Compare, _Allocator>::__upper_bound(const _Key& __v, __node_pointer __root, __iter_poi… 2184 …__tree<_Tp, _Compare, _Allocator>::const_iterator __tree<_Tp, _Compare, _Allocator>::__upper_bound( 2255 __upper_bound(__k, static_cast<__node_pointer>(__rt->__right_), __result)); 2276 __upper_bound(__k, static_cast<__node_pointer>(__rt->__right_), __result));
|