Home
last modified time | relevance | path

Searched refs:__f (Results 1 – 25 of 58) sorted by relevance

123

/external/libcxx/include/
D__functional_03108 explicit __func(_Fp __f) : __f_(_VSTD::move(__f)) {}
109 explicit __func(_Fp __f, _Alloc __a) : __f_(_VSTD::move(__f), _VSTD::move(__a)) {}
193 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f) : __f_(_VSTD::move(__f)) {}
194 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f, _Alloc __a)
195 : __f_(_VSTD::move(__f), _VSTD::move(__a)) {}
279 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f) : __f_(_VSTD::move(__f)) {}
280 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f, _Alloc __a)
281 : __f_(_VSTD::move(__f), _VSTD::move(__a)) {}
365 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f) : __f_(_VSTD::move(__f)) {}
366 _LIBCPP_INLINE_VISIBILITY explicit __func(_Fp __f, _Alloc __a)
[all …]
D__functional_base_0375 __invoke(_Fn __f, _T1& __t1) {
76 return (__t1.*__f)();
82 __invoke(_Fn __f, _T1& __t1, _A0& __a0) {
83 return (__t1.*__f)(__a0);
89 __invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1) {
90 return (__t1.*__f)(__a0, __a1);
96 __invoke(_Fn __f, _T1& __t1, _A0& __a0, _A1& __a1, _A2& __a2) {
97 return (__t1.*__f)(__a0, __a1, __a2);
103 __invoke(_Fn __f, _T1& __t1) {
104 return ((*__t1).*__f)();
[all …]
Dfunctional1090 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_unary_function(_Result (*__f)(_Arg))
1091 : __f_(__f) {}
1099 ptr_fun(_Result (*__f)(_Arg))
1100 {return pointer_to_unary_function<_Arg,_Result>(__f);}
1108 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_binary_function(_Result (*__f)(_Arg1, _Arg2))
1109 : __f_(__f) {}
1117 ptr_fun(_Result (*__f)(_Arg1,_Arg2))
1118 {return pointer_to_binary_function<_Arg1,_Arg2,_Result>(__f);}
1147 mem_fun(_Sp (_Tp::*__f)())
1148 {return mem_fun_t<_Sp,_Tp>(__f);}
[all …]
Ddeque191 copy(_RAIter __f,
199 copy(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
206 copy(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
213 copy_backward(_RAIter __f,
221 copy_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
228 copy_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
235 move(_RAIter __f,
243 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
250 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f,
257 move_backward(_RAIter __f,
[all …]
Dfuture865 explicit __deferred_assoc_state(_Fp&& __f);
875 __deferred_assoc_state<_Rp, _Fp>::__deferred_assoc_state(_Fp&& __f)
876 : __func_(_VSTD::forward<_Fp>(__f))
912 explicit __deferred_assoc_state(_Fp&& __f);
922 __deferred_assoc_state<void, _Fp>::__deferred_assoc_state(_Fp&& __f)
923 : __func_(_VSTD::forward<_Fp>(__f))
961 explicit __async_assoc_state(_Fp&& __f);
971 __async_assoc_state<_Rp, _Fp>::__async_assoc_state(_Fp&& __f)
972 : __func_(_VSTD::forward<_Fp>(__f))
1016 explicit __async_assoc_state(_Fp&& __f);
[all …]
Dlist595 static void __unlink_nodes(__link_pointer __f, __link_pointer __l) _NOEXCEPT;
703 // Unlink nodes [__f, __l]
707 __list_imp<_Tp, _Alloc>::__unlink_nodes(__link_pointer __f, __link_pointer __l)
710 __f->__prev_->__next_ = __l->__next_;
711 __l->__next_->__prev_ = __f->__prev_;
754 __link_pointer __f = __end_.__next_;
756 __unlink_nodes(__f, __l->__prev_);
758 while (__f != __l)
760 __node_pointer __np = __f->__as_node();
761 __f = __f->__next_;
[all …]
Dostream216 basic_ostream& operator<<(float __f);
217 basic_ostream& operator<<(double __f);
218 basic_ostream& operator<<(long double __f);
379 const _Fp& __f = use_facet<_Fp>(this->getloc());
380 if (__f.put(*this, *this, this->fill(), __n).failed())
406 const _Fp& __f = use_facet<_Fp>(this->getloc());
407 if (__f.put(*this, *this, this->fill(),
435 const _Fp& __f = use_facet<_Fp>(this->getloc());
436 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed())
462 const _Fp& __f = use_facet<_Fp>(this->getloc());
[all …]
Dforward_list665 forward_list(_InputIterator __f, _InputIterator __l,
670 forward_list(_InputIterator __f, _InputIterator __l,
711 assign(_InputIterator __f, _InputIterator __l);
792 insert_after(const_iterator __p, _InputIterator __f, _InputIterator __l);
795 iterator erase_after(const_iterator __f, const_iterator __l);
819 const_iterator __f, const_iterator __l);
824 const_iterator __f, const_iterator __l);
862 __sort(__node_pointer __f, difference_type __sz, _Compare& __comp);
947 forward_list<_Tp, _Alloc>::forward_list(_InputIterator __f, _InputIterator __l,
952 insert_after(cbefore_begin(), __f, __l);
[all …]
D__functional_base322 static _Ret __call(_Fn __f) {
323 return __invoke(__f);
327 static _Ret __call(_Fn __f, _A0& __a0) {
328 return __invoke(__f, __a0);
332 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1) {
333 return __invoke(__f, __a0, __a1);
337 static _Ret __call(_Fn __f, _A0& __a0, _A1& __a1, _A2& __a2){
338 return __invoke(__f, __a0, __a1, __a2);
353 static void __call(_Fn __f) {
354 __invoke(__f);
[all …]
Dthread305 explicit thread(_Fp&& __f, _Args&&... __args);
309 explicit thread(_Fp __f);
359 thread::thread(_Fp&& __f, _Args&&... __args)
366 __decay_copy(_VSTD::forward<_Fp>(__f)),
393 __thread_invoke_pair(_Fp& __f) : __tsp_(new __thread_struct), __fn_(__f) {}
408 thread::thread(_Fp __f)
413 _PairPtr __pp(new _InvokePair(__f));
Dset505 set(_InputIterator __f, _InputIterator __l,
509 insert(__f, __l);
514 set(_InputIterator __f, _InputIterator __l, const value_compare& __comp,
518 insert(__f, __l);
524 set(_InputIterator __f, _InputIterator __l, const allocator_type& __a)
525 : set(__f, __l, key_compare(), __a) {}
659 void insert(_InputIterator __f, _InputIterator __l)
661 for (const_iterator __e = cend(); __f != __l; ++__f)
662 __tree_.__insert_unique(__e, *__f);
685 iterator erase(const_iterator __f, const_iterator __l)
[all …]
/external/libcxx/include/experimental/
Dfunctional117 default_searcher(_ForwardIterator __f, _ForwardIterator __l,
119 : __first_(__f), __last_(__l), __pred_(__p) {}
124 operator () (_ForwardIterator2 __f, _ForwardIterator2 __l) const
126 return _VSTD::__search(__f, __l, __first_, __last_, __pred_,
140 make_default_searcher( _ForwardIterator __f, _ForwardIterator __l, _BinaryPredicate __p = _BinaryPr…
142 return default_searcher<_ForwardIterator, _BinaryPredicate>(__f, __l, __p);
225 boyer_moore_searcher(_RandomAccessIterator1 __f, _RandomAccessIterator1 __l,
227 : __first_(__f), __last_(__l), __pred_(__pred),
233 for ( difference_type __i = 0; __f != __l; ++__f, (void) ++__i )
234 __skip_->insert(*__f, __i);
[all …]
Dalgorithm53 _ForwardIterator search(_ForwardIterator __f, _ForwardIterator __l, const _Searcher &__s)
54 { return __s(__f, __l).first; }
/external/libcxx/include/support/win32/
Dlocale_win32.h177 #define strftime_l( __s, __l, __f, __tm, __loc ) strftime( __s, __l, __f, __tm ) argument
181 #define sscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ ) argument
182 #define sprintf_l( __s, __l, __f, ... ) _sprintf_l( __s, __f, __l, __VA_ARGS__ ) argument
183 #define vsprintf_l( __s, __l, __f, ... ) _vsprintf_l( __s, __f, __l, __VA_ARGS__ ) argument
184 #define vsnprintf_l( __s, __n, __l, __f, ... ) _vsnprintf_l( __s, __n, __f, __l, __VA_ARGS__ ) argument
/external/clang/lib/Headers/
Dia32intrin.h39 __writeeflags(unsigned long long __f) in __writeeflags() argument
41 __builtin_ia32_writeeflags_u64(__f); in __writeeflags()
52 __writeeflags(unsigned int __f) in __writeeflags() argument
54 __builtin_ia32_writeeflags_u32(__f); in __writeeflags()
Davxintrin.h2319 float __f = *__a; in _mm_broadcast_ss() local
2320 return (__m128)(__v4sf){ __f, __f, __f, __f }; in _mm_broadcast_ss()
2333 float __f = *__a; in _mm256_broadcast_ss() local
2334 return (__m256)(__v8sf){ __f, __f, __f, __f, __f, __f, __f, __f }; in _mm256_broadcast_ss()
2544 float __e, float __f, float __g, float __h) in _mm256_set_ps() argument
2546 return (__m256){ __h, __g, __f, __e, __d, __c, __b, __a }; in _mm256_set_ps()
2599 float __e, float __f, float __g, float __h) in _mm256_setr_ps() argument
2601 return (__m256){ __a, __b, __c, __d, __e, __f, __g, __h }; in _mm256_setr_ps()
/external/swiftshader/third_party/LLVM/test/CodeGen/X86/
Dmovmsk.ll16 %__f.i = getelementptr inbounds %0* %__u.i, i64 0, i32 0
17 store double %d1, double* %__f.i, align 8
35 %__f.i = getelementptr inbounds %0* %__u.i, i64 0, i32 0
36 store double %add, double* %__f.i, align 8
53 %__f.i = getelementptr inbounds %union.anon* %__u.i, i64 0, i32 0
54 store float %f1, float* %__f.i, align 4
71 %__f.i = getelementptr inbounds %union.anon* %__u.i, i64 0, i32 0
72 store float %add, float* %__f.i, align 4
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/
Dmovmsk.ll21 %__f.i = getelementptr inbounds %0, %0* %__u.i, i64 0, i32 0
22 store double %d1, double* %__f.i, align 8
45 %__f.i = getelementptr inbounds %0, %0* %__u.i, i64 0, i32 0
46 store double %add, double* %__f.i, align 8
67 %__f.i = getelementptr inbounds %union.anon, %union.anon* %__u.i, i64 0, i32 0
68 store float %f1, float* %__f.i, align 4
90 %__f.i = getelementptr inbounds %union.anon, %union.anon* %__u.i, i64 0, i32 0
91 store float %add, float* %__f.i, align 4
/external/llvm/test/CodeGen/X86/
Dmovmsk.ll21 %__f.i = getelementptr inbounds %0, %0* %__u.i, i64 0, i32 0
22 store double %d1, double* %__f.i, align 8
45 %__f.i = getelementptr inbounds %0, %0* %__u.i, i64 0, i32 0
46 store double %add, double* %__f.i, align 8
67 %__f.i = getelementptr inbounds %union.anon, %union.anon* %__u.i, i64 0, i32 0
68 store float %f1, float* %__f.i, align 4
90 %__f.i = getelementptr inbounds %union.anon, %union.anon* %__u.i, i64 0, i32 0
91 store float %add, float* %__f.i, align 4
/external/llvm/test/Transforms/Inline/
Ddevirtualize-2.ll32 define internal i32 @f3a(i32 (i8*)* %__f) ssp {
34 %A = call i32 %__f(i8* undef)
Dcrash2.ll12 define linkonce_odr void @f3(void (i8*)* %__f) ssp {
15 store void (i8*)* %__f, void (i8*)** %__f_addr
/external/swiftshader/third_party/LLVM/test/Transforms/Inline/
Dcrash2.ll12 define linkonce_odr void @f3(void (i8*)* %__f) ssp {
15 store void (i8*)* %__f, void (i8*)** %__f_addr
Ddevirtualize-2.ll32 define internal i32 @f3a(i32 (i8*)* %__f) ssp {
34 %A = call i32 %__f(i8* undef)
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/Inline/
Dcrash2.ll12 define linkonce_odr void @f3(void (i8*)* %__f) ssp {
15 store void (i8*)* %__f, void (i8*)** %__f_addr
Ddevirtualize-2.ll33 define internal i32 @f3a(i32 (i8*)* %__f) ssp {
35 %A = call i32 %__f(i8* undef)

123