/external/libcxx/include/ |
D | __functional_03 | 108 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_03 | 75 __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 …]
|
D | deque | 181 copy(_RAIter __f, 189 copy(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 196 copy(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 203 copy_backward(_RAIter __f, 211 copy_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 218 copy_backward(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 225 move(_RAIter __f, 233 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 240 move(__deque_iterator<_V1, _P1, _R1, _M1, _D1, _B1> __f, 247 move_backward(_RAIter __f, [all …]
|
D | future | 864 explicit __deferred_assoc_state(_Fp&& __f); 874 __deferred_assoc_state<_Rp, _Fp>::__deferred_assoc_state(_Fp&& __f) 875 : __func_(_VSTD::forward<_Fp>(__f)) 911 explicit __deferred_assoc_state(_Fp&& __f); 921 __deferred_assoc_state<void, _Fp>::__deferred_assoc_state(_Fp&& __f) 922 : __func_(_VSTD::forward<_Fp>(__f)) 960 explicit __async_assoc_state(_Fp&& __f); 970 __async_assoc_state<_Rp, _Fp>::__async_assoc_state(_Fp&& __f) 971 : __func_(_VSTD::forward<_Fp>(__f)) 1015 explicit __async_assoc_state(_Fp&& __f); [all …]
|
D | functional | 1082 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_unary_function(_Result (*__f)(_Arg)) 1083 : __f_(__f) {} 1091 ptr_fun(_Result (*__f)(_Arg)) 1092 {return pointer_to_unary_function<_Arg,_Result>(__f);} 1100 _LIBCPP_INLINE_VISIBILITY explicit pointer_to_binary_function(_Result (*__f)(_Arg1, _Arg2)) 1101 : __f_(__f) {} 1109 ptr_fun(_Result (*__f)(_Arg1,_Arg2)) 1110 {return pointer_to_binary_function<_Arg1,_Arg2,_Result>(__f);} 1137 mem_fun(_Sp (_Tp::*__f)()) 1138 {return mem_fun_t<_Sp,_Tp>(__f);} [all …]
|
D | list | 580 static void __unlink_nodes(__link_pointer __f, __link_pointer __l) _NOEXCEPT; 683 // Unlink nodes [__f, __l] 687 __list_imp<_Tp, _Alloc>::__unlink_nodes(__link_pointer __f, __link_pointer __l) 690 __f->__prev_->__next_ = __l->__next_; 691 __l->__next_->__prev_ = __f->__prev_; 725 __link_pointer __f = __end_.__next_; 727 __unlink_nodes(__f, __l->__prev_); 729 while (__f != __l) 731 __node_pointer __np = __f->__as_node(); 732 __f = __f->__next_; [all …]
|
D | ostream | 215 basic_ostream& operator<<(float __f); 216 basic_ostream& operator<<(double __f); 217 basic_ostream& operator<<(long double __f); 378 const _Fp& __f = use_facet<_Fp>(this->getloc()); 379 if (__f.put(*this, *this, this->fill(), __n).failed()) 405 const _Fp& __f = use_facet<_Fp>(this->getloc()); 406 if (__f.put(*this, *this, this->fill(), 434 const _Fp& __f = use_facet<_Fp>(this->getloc()); 435 if (__f.put(*this, *this, this->fill(), static_cast<unsigned long>(__n)).failed()) 461 const _Fp& __f = use_facet<_Fp>(this->getloc()); [all …]
|
D | forward_list | 648 forward_list(_InputIterator __f, _InputIterator __l, 653 forward_list(_InputIterator __f, _InputIterator __l, 694 assign(_InputIterator __f, _InputIterator __l); 775 insert_after(const_iterator __p, _InputIterator __f, _InputIterator __l); 778 iterator erase_after(const_iterator __f, const_iterator __l); 802 const_iterator __f, const_iterator __l); 807 const_iterator __f, const_iterator __l); 845 __sort(__node_pointer __f, difference_type __sz, _Compare& __comp); 913 forward_list<_Tp, _Alloc>::forward_list(_InputIterator __f, _InputIterator __l, 918 insert_after(cbefore_begin(), __f, __l); [all …]
|
D | __functional_base | 322 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 …]
|
D | set | 452 set(_InputIterator __f, _InputIterator __l, 456 insert(__f, __l); 461 set(_InputIterator __f, _InputIterator __l, const value_compare& __comp, 465 insert(__f, __l); 471 set(_InputIterator __f, _InputIterator __l, const allocator_type& __a) 472 : set(__f, __l, key_compare(), __a) {} 606 void insert(_InputIterator __f, _InputIterator __l) 608 for (const_iterator __e = cend(); __f != __l; ++__f) 609 __tree_.__insert_unique(__e, *__f); 632 iterator erase(const_iterator __f, const_iterator __l) [all …]
|
D | thread | 305 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));
|
/external/libcxx/include/experimental/ |
D | functional | 117 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 …]
|
D | algorithm | 53 _ForwardIterator search(_ForwardIterator __f, _ForwardIterator __l, const _Searcher &__s) 54 { return __s(__f, __l).first; }
|
/external/syslinux/com32/include/ |
D | stdio.h | 36 static __inline__ int fileno(FILE * __f) in fileno() argument 39 return (int)(size_t) __f - 1; in fileno() 59 __extern int fclose(FILE * __f); 77 #define fread(__p, __s, __n, __f) \ argument 79 ? _fread(__p, __n, __f) \ 80 : fread(__p,__s,__n,__f) ) 82 #define fwrite(__p, __s, __n, __f) \ argument 84 ? _fwrite(__p, __n, __f) \ 85 : fwrite(__p,__s,__n,__f) ) 109 static __inline__ int fflush(FILE * __f) in fflush() argument [all …]
|
/external/libcxx/include/support/win32/ |
D | locale_win32.h | 169 #define strftime_l( __s, __l, __f, __tm, __loc ) strftime( __s, __l, __f, __tm ) argument 173 #define sscanf_l( __s, __l, __f, ...) _sscanf_l( __s, __f, __l, __VA_ARGS__ ) argument 174 #define sprintf_l( __s, __l, __f, ... ) _sprintf_l( __s, __f, __l, __VA_ARGS__ ) argument 175 #define vsprintf_l( __s, __l, __f, ... ) _vsprintf_l( __s, __f, __l, __VA_ARGS__ ) argument 176 #define vsnprintf_l( __s, __n, __l, __f, ... ) _vsnprintf_l( __s, __n, __f, __l, __VA_ARGS__ ) argument
|
/external/clang/lib/Headers/ |
D | ia32intrin.h | 39 __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()
|
D | avxintrin.h | 2319 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/ |
D | movmsk.ll | 16 %__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/llvm/test/CodeGen/X86/ |
D | movmsk.ll | 21 %__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/syslinux/com32/lib/ |
D | fclose.c | 8 int fclose(FILE * __f) in fclose() argument 10 return close(fileno(__f)); in fclose()
|
/external/swiftshader/third_party/LLVM/test/Transforms/Inline/ |
D | crash2.ll | 12 define linkonce_odr void @f3(void (i8*)* %__f) ssp { 15 store void (i8*)* %__f, void (i8*)** %__f_addr
|
D | devirtualize-2.ll | 32 define internal i32 @f3a(i32 (i8*)* %__f) ssp { 34 %A = call i32 %__f(i8* undef)
|
/external/llvm/test/Transforms/Inline/ |
D | crash2.ll | 12 define linkonce_odr void @f3(void (i8*)* %__f) ssp { 15 store void (i8*)* %__f, void (i8*)** %__f_addr
|
D | devirtualize-2.ll | 32 define internal i32 @f3a(i32 (i8*)* %__f) ssp { 34 %A = call i32 %__f(i8* undef)
|
/external/llvm/test/DebugInfo/X86/ |
D | pr12831.ll | 43 %__f = alloca %class.anon.0, align 1 46 …call void @llvm.dbg.declare(metadata %class.anon.0* %__f, metadata !143, metadata !DIExpression())… 48 …not_empty_functionIZN17BPLFunctionWriter9writeExprEvE3$_1_0EEvRKT_"(%class.anon.0* %__f), !dbg !145 62 %__f = alloca %class.anon, align 1 65 …call void @llvm.dbg.declare(metadata %class.anon* %__f, metadata !152, metadata !DIExpression()), … 67 …1_M_not_empty_functionIZN17BPLFunctionWriter9writeExprEvE3$_0EEvRKT_"(%class.anon* %__f), !dbg !154 190 !143 = !DILocalVariable(name: "__f", line: 8, arg: 2, scope: !106, file: !6, type: !61) 199 !152 = !DILocalVariable(name: "__f", line: 8, arg: 2, scope: !126, file: !6, type: !26)
|