Home
last modified time | relevance | path

Searched refs:_First (Results 1 – 15 of 15) sorted by relevance

/llvm-project-15.0.7/libcxx/src/ryu/
H A Dd2fixed.cpp251 *_First++ = '0'; in __d2fixed_buffered_n()
290 _First += 9; in __d2fixed_buffered_n()
306 *_First++ = '0'; in __d2fixed_buffered_n()
312 *_First++ = '.'; in __d2fixed_buffered_n()
357 _First += 9; in __d2fixed_buffered_n()
440 *_First++ = '0'; in __d2exp_buffered_n()
447 _First += 4; in __d2exp_buffered_n()
490 _First += 9; in __d2exp_buffered_n()
652 *_First++ = 'e'; in __d2exp_buffered_n()
659 _First += 3; in __d2exp_buffered_n()
[all …]
H A Df2s.cpp403 char* _Result = _First; in _Large_integer_to_chars()
553 _Mid = _First + __olength; in __to_chars()
590 _VSTD::memmove(_First, _First + 1, static_cast<size_t>(_Whole_digits)); in __to_chars()
591 _First[_Whole_digits] = '.'; in __to_chars()
594 _First[0] = '0'; in __to_chars()
595 _First[1] = '.'; in __to_chars()
607 char* const __result = _First; in __to_chars()
672 if (_Last - _First < 5) { in __f2s_buffered_n()
682 if (_First == _Last) { in __f2s_buffered_n()
686 *_First = '0'; in __f2s_buffered_n()
[all …]
H A Dd2s.cpp506 _Mid = _First + __olength; in __to_chars()
567 _VSTD::memmove(_First, _First + 1, static_cast<size_t>(_Whole_digits)); in __to_chars()
568 _First[_Whole_digits] = '.'; in __to_chars()
571 _First[0] = '0'; in __to_chars()
572 _First[1] = '.'; in __to_chars()
584 char* const __result = _First; in __to_chars()
712 if (_Last - _First < 5) { in __d2s_buffered_n()
718 return { _First + 5, errc{} }; in __d2s_buffered_n()
722 if (_First == _Last) { in __d2s_buffered_n()
726 *_First = '0'; in __d2s_buffered_n()
[all …]
/llvm-project-15.0.7/libcxx/src/include/
H A Dto_chars_floating_point.h286 *_First++ = '.';
329 *_First++ = 'p';
383 if (_First == _Last) {
392 if (_First == _Last) {
396 *_First++ = '.';
446 if (_Last - _First < 2) {
450 *_First++ = 'p';
456 *_First++ = '+';
849 *_First++ = '0';
984 return {_First, errc{}};
[all …]
/llvm-project-15.0.7/libcxx/src/include/ryu/
H A Dryu.h92 … char* const _First, char* const _Last, const _Floating _Value, const chars_format _Fmt) noexcept { in _Floating_to_chars_ryu() argument
94 return __f2s_buffered_n(_First, _Last, _Value, _Fmt); in _Floating_to_chars_ryu()
96 return __d2s_buffered_n(_First, _Last, _Value, _Fmt); in _Floating_to_chars_ryu()
102 char* const _First, char* const _Last, const _Floating _Value, int _Precision) noexcept { in _Floating_to_chars_scientific_precision() argument
118 return __d2exp_buffered_n(_First, _Last, _Value, static_cast<uint32_t>(_Precision));
123 char* const _First, char* const _Last, const _Floating _Value, int _Precision) noexcept { in _Floating_to_chars_fixed_precision() argument
139 return __d2fixed_buffered_n(_First, _Last, _Value, static_cast<uint32_t>(_Precision));
H A Dd2fixed.h53 [[nodiscard]] to_chars_result __d2fixed_buffered_n(char* _First, char* const _Last, const double __…
54 [[nodiscard]] to_chars_result __d2exp_buffered_n(char* _First, char* const _Last, const double __d,…
H A Df2s.h49 [[nodiscard]] to_chars_result __f2s_buffered_n(char* const _First, char* const _Last, const float _…
H A Dd2s.h56 [[nodiscard]] to_chars_result __d2s_buffered_n(char* const _First, char* const _Last, const double …
/llvm-project-15.0.7/libcxx/include/__type_traits/
H A Ddisjunction.h27 template <class _Res, class _First, class... _Rest>
29 …typename _OrImpl<!bool(_First::value) && sizeof...(_Rest) != 0>::template _Result<_First, _Rest...…
/llvm-project-15.0.7/llvm/test/Transforms/LoopStrengthReduce/
H A Dpr25541.ll10 %_First.addr.0.i = phi i32* [ null, %entry ], [ %incdec.ptr.i, %for.inc.i ]
19 %cmp.i = icmp eq i32* %_First.addr.0.i, null
30 %incdec.ptr.i = getelementptr inbounds i32, i32* %_First.addr.0.i, i64 1
/llvm-project-15.0.7/llvm/test/DebugInfo/MIR/InstrRef/
H A Dout-of-scope-blocks.mir7 ## outside of lexical scope. In the IR below, "_First" is only in scope in the
11 # CHECK: ![[FIRSTVAR:[0-9]+]] = !DILocalVariable(name: "_First",
55 %_First.sroa.2.0.i.i = phi i32* [ %0, %entry ], [ %call3.i.i.i.i.i, %if.then.i.i.i.i.i ]
56 …call void @llvm.dbg.value(metadata i32* %_First.sroa.2.0.i.i, metadata !13, metadata !DIExpression…
57 call void undef(%class._Tree_const_iterator* null, i32 0, i32* %_First.sroa.2.0.i.i), !dbg !16
79 !13 = !DILocalVariable(name: "_First", arg: 1, scope: !14, file: !1, line: 11, type: !9)
/llvm-project-15.0.7/clang/include/clang/Lex/
H A DPPCallbacks.h432 PPChainedCallbacks(std::unique_ptr<PPCallbacks> _First, in PPChainedCallbacks() argument
434 : First(std::move(_First)), Second(std::move(_Second)) {} in PPChainedCallbacks()
/llvm-project-15.0.7/libcxx/include/
H A D__hash_table1049 template <class _First, class _Second>
1051 …__enable_if_t<__can_extract_map_key<_First, key_type, __container_value_type>::value, pair<iterato…
1052 __emplace_unique(_First&& __f, _Second&& __s) {
1053 return __emplace_unique_key_args(__f, _VSTD::forward<_First>(__f),
1302 template <class _First, class ..._Rest>
1303 __node_holder __construct_node_hash(size_t __hash, _First&& __f, _Rest&&... __rest);
2373 template <class _First, class ..._Rest>
2376 size_t __hash, _First&& __f, _Rest&& ...__rest)
2378 static_assert(!__is_hash_value_type<_First, _Rest...>::value,
2383 _VSTD::forward<_First>(__f),
H A D__tree1175 template <class _First, class _Second>
1177 …__enable_if_t<__can_extract_map_key<_First, key_type, __container_value_type>::value, pair<iterato…
1178 __emplace_unique(_First&& __f, _Second&& __s) {
1179 return __emplace_unique_key_args(__f, _VSTD::forward<_First>(__f),
1217 template <class _First, class _Second>
1219 __enable_if_t<__can_extract_map_key<_First, key_type, __container_value_type>::value, iterator>
1220 __emplace_hint_unique(const_iterator __p, _First&& __f, _Second&& __s) {
1222 _VSTD::forward<_First>(__f),
H A Dtype_traits780 template <class _Pair, class _Key, class _First, class _Second>
781 struct __can_extract_key<_Pair, _Key, pair<_First, _Second> >
782 : conditional<_IsSame<typename remove_const<_First>::type, _Key>::value,