| /llvm-project-15.0.7/libcxx/include/__format/ |
| H A D | format_string.h | 98 const _CharT* __end = __end_input - __begin > 9 ? __begin + 9 : __end_input; in __parse_number() 100 while (++__begin != __end) { in __parse_number() 101 if (*__begin < _CharT('0') || *__begin > _CharT('9')) in __parse_number() 102 return {__begin, __value}; in __parse_number() 107 if (__begin != __end_input && *__begin >= _CharT('0') && in __parse_number() 108 *__begin <= _CharT('9')) { in __parse_number() 118 (__begin != __end_input && *__begin >= _CharT('0') && in __parse_number() 119 *__begin <= _CharT('9'))) in __parse_number() 125 return {__begin, __value}; in __parse_number() 137 switch (*__begin) { in __parse_arg_id() [all …]
|
| H A D | parser_std_format_spec.h | 253 if (__parse_fill_align(__begin, __end) && __begin == __end) 280 if (__begin != __end && *__begin != _CharT('}')) 368 ++__begin; in __parse_fill_align() 386 ++__begin; in __parse_sign() 395 ++__begin; in __parse_alternate_form() 405 ++__begin; in __parse_zero_padding() 421 if (*__begin < _CharT('0') || *__begin > _CharT('9')) in __parse_width() 437 ++__begin; in __parse_precision() 449 if (*__begin < _CharT('0') || *__begin > _CharT('9')) in __parse_precision() 464 ++__begin; in __parse_locale_specific_form() [all …]
|
| H A D | formatter_integral.h | 206 char* __begin, 210 char* __first = __formatter::__insert_sign(__begin, __negative, __specs.__std_.__sign_); 229 __begin, 239 __first = __begin; 246 __out_it = _VSTD::copy(__begin, __first, _VSTD::move(__out_it)); 249 int32_t __size = __first - __begin;
|
| H A D | formatter_output.h | 90 _LIBCPP_HIDE_FROM_ABI _OutIt __write_using_decimal_separators(_OutIt __out_it, const char* __begin,… in __write_using_decimal_separators() argument 93 int __size = (__first - __begin) + // [sign][prefix] in __write_using_decimal_separators() 100 __out_it = _VSTD::copy(__begin, __first, _VSTD::move(__out_it)); in __write_using_decimal_separators() 115 __out_it = _VSTD::copy(__begin, __first, _VSTD::move(__out_it)); in __write_using_decimal_separators()
|
| /llvm-project-15.0.7/pstl/include/pstl/internal/ |
| H A D | glue_memory_impl.h | 47 [](_InputIterator __begin, _InputIterator __end, _ForwardIterator __res) in uninitialized_copy() 48 { return __pstl::__internal::__brick_copy(__begin, __end, __res, __is_vector{}); }); in uninitialized_copy() 78 [](_InputIterator __begin, _Size __sz, _ForwardIterator __res) in uninitialized_copy_n() 79 … { return __pstl::__internal::__brick_copy_n(__begin, __sz, __res, __is_vector{}); }); in uninitialized_copy_n() 111 [](_InputIterator __begin, _InputIterator __end, _ForwardIterator __res) in uninitialized_move() 112 { return __pstl::__internal::__brick_copy(__begin, __end, __res, __is_vector{}); }); in uninitialized_move() 142 [](_InputIterator __begin, _Size __sz, _ForwardIterator __res) in uninitialized_move_n() 173 [&__value](_ForwardIterator __begin, _ForwardIterator __end) in uninitialized_fill() 201 [&__value](_ForwardIterator __begin, _Size __count) in uninitialized_fill_n() 309 [](_ForwardIterator __begin, _ForwardIterator __end) in uninitialized_value_construct() [all …]
|
| H A D | unseq_backend_simd.h | 106 __simd_first(_Index __first, _DifferenceType __begin, _DifferenceType __end, _Compare __comp) noexc… in __simd_first() argument 109 _DifferenceType __i = __begin; in __simd_first() 123 while (__end - __begin >= __block_size) in __simd_first() 128 … : __found) for (_DifferenceType __i = __begin; __i < __begin + __block_size; in __simd_first() 132 __lane[__i - __begin] = __t; in __simd_first() 146 return __first + __begin + __i; in __simd_first() 148 __begin += __block_size; in __simd_first() 152 while (__begin != __end) in __simd_first() 154 if (__comp(__first, __begin)) in __simd_first() 156 return __first + __begin; in __simd_first() [all …]
|
| H A D | algorithm_impl.h | 1954 _RandomAccessIterator __begin; in __pattern_partition() member 1966 auto __size2 = __val2.__pivot - __val2.__begin; in __pattern_partition() 1967 auto __new_begin = __val2.__begin - (__val1.__end - __val1.__begin); in __pattern_partition() 2054 _RandomAccessIterator __begin; in __pattern_stable_partition() member 2066 auto __new_begin = __val2.__begin - (__val1.__end - __val1.__begin); in __pattern_stable_partition() 2264 if (__n < __end - __begin) in __pattern_partial_sort() 2265 std::partial_sort(__begin, __begin + __n, __end, __comp); in __pattern_partial_sort() 2267 std::sort(__begin, __end, __comp); in __pattern_partial_sort() 2415 if (__value > __begin) in __pattern_adjacent_find() 3472 _DifferenceType __i = __begin; in __is_heap_until_local() [all …]
|
| H A D | glue_algorithm_impl.h | 250 [](_ForwardIterator1 __begin, _ForwardIterator1 __end, _ForwardIterator2 __res) in copy() 251 { return __pstl::__internal::__brick_copy(__begin, __end, __res, __is_vector{}); }); in copy() 264 [](_ForwardIterator1 __begin, _Size __sz, _ForwardIterator2 __res) in copy_n() 265 { return __pstl::__internal::__brick_copy_n(__begin, __sz, __res, __is_vector{}); }); in copy_n() 730 [](_ForwardIterator1 __begin, _ForwardIterator1 __end, _ForwardIterator2 __res) in move() 731 { return __pstl::__internal::__brick_move(__begin, __end, __res, __is_vector{}); }); in move()
|
| /llvm-project-15.0.7/clang/test/CodeGenCXX/ |
| H A D | for-range-temporaries.cpp | 84 for (auto __begin = begin(__range), __end = end(__range); in for_temps() local 85 __begin != __end; ++__begin) { in for_temps() 86 I i = *__begin; in for_temps()
|
| /llvm-project-15.0.7/llvm/test/Transforms/GCOVProfiling/ |
| H A D | linezero.ll | 18 %__begin = alloca i8*, align 8 27 …call void @llvm.dbg.declare(metadata i8** %__begin, metadata !32, metadata !DIExpression()), !dbg … 30 store i8* %call, i8** %__begin, align 8, !dbg !31 38 %3 = load i8*, i8** %__begin, align 8, !dbg !34 45 %5 = load i8*, i8** %__begin, align 8, !dbg !38 51 %7 = load i8*, i8** %__begin, align 8, !dbg !40 53 store i8* %incdec.ptr, i8** %__begin, align 8, !dbg !40 127 !32 = !DILocalVariable(name: "__begin", flags: DIFlagArtificial, scope: !28, type: !10)
|
| /llvm-project-15.0.7/clang/lib/Headers/ |
| H A D | arm_cmse.h | 126 uintptr_t __begin = (uintptr_t)__pb; in cmse_check_address_range() local 127 uintptr_t __end = __begin + __s - 1; in cmse_check_address_range() 129 if (__end < __begin) in cmse_check_address_range() 133 const int __single_check = (__begin ^ __end) < 0x20u; in cmse_check_address_range()
|
| /llvm-project-15.0.7/libcxx/include/__iterator/ |
| H A D | bounded_iter.h | 77 _Iterator __current, _Iterator __begin, _Iterator __end) in __bounded_iter() 78 : __current_(__current), __begin_(__begin), __end_(__end) { in __bounded_iter() 79 …_LIBCPP_ASSERT(__begin <= __end, "__bounded_iter(current, begin, end): [begin, end) is not a valid… in __bounded_iter() 207 …M_ABI _LIBCPP_CONSTEXPR __bounded_iter<_It> __make_bounded_iter(_It __it, _It __begin, _It __end) { in __make_bounded_iter() argument 208 return __bounded_iter<_It>(std::move(__it), std::move(__begin), std::move(__end)); in __make_bounded_iter()
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | format | 424 __begin = __parse_ctx.begin(); 425 if (__begin == __end || *__begin != _CharT('}')) 428 return ++__begin; 440 while (__begin != __end) { 441 switch (*__begin) { 443 ++__begin; 444 if (__begin == __end) 449 __begin = 461 ++__begin; 462 if (__begin == __end || *__begin != _CharT('}')) [all …]
|
| H A D | string_view | 312 constexpr _LIBCPP_HIDE_FROM_ABI basic_string_view(_It __begin, _End __end) 313 : __data(_VSTD::to_address(__begin)), __size(__end - __begin) 315 …_LIBCPP_ASSERT((__end - __begin) >= 0, "std::string_view::string_view(iterator, sentinel) received…
|
| H A D | string | 1502 …HIDE_FROM_ABI _LIBCPP_CONSTEXPR_AFTER_CXX17 void __begin_lifetime(pointer __begin, size_type __n) { 1506 std::construct_at(std::addressof(__begin[__i])); 1509 (void)__begin;
|
| /llvm-project-15.0.7/clang/test/CXX/stmt.stmt/stmt.iter/stmt.ranged/ |
| H A D | p1.cpp | 91 A __begin; in g() local 114 ++__begin; // expected-error {{use of undeclared identifier '__begin'}} in g()
|
| /llvm-project-15.0.7/libcxx/include/__ranges/ |
| H A D | access.h | 37 namespace __begin { 94 inline constexpr auto begin = __begin::__fn{};
|
| /llvm-project-15.0.7/libcxx/include/__memory/ |
| H A D | uninitialized_algorithms.h | 472 _BidirIter __begin = __it; in __uninitialized_allocator_fill_n() local 475 …__transaction __guard([&]() { std::__allocator_destroy_multidimensional(__value_alloc, __begin, __… in __uninitialized_allocator_fill_n() 489 _BidirIter __begin = __it; in __uninitialized_allocator_value_construct_n() local 492 …__transaction __guard([&]() { std::__allocator_destroy_multidimensional(__value_alloc, __begin, __… in __uninitialized_allocator_value_construct_n()
|
| /llvm-project-15.0.7/lldb/docs/use/ |
| H A D | variable.rst | 1051 an actual in-memory property ``__begin`` marking the beginning of its data. 1053 won't show ``__begin`` as child anymore, even through the SB API. It will have
|