/external/clang/lib/Headers/ |
D | arm_acle.h | 142 __clz(uint32_t __t) { in __clz() argument 143 return __builtin_clz(__t); in __clz() 147 __clzl(unsigned long __t) { in __clzl() argument 148 return __builtin_clzl(__t); in __clzl() 152 __clzll(uint64_t __t) { in __clzll() argument 153 return __builtin_clzll(__t); in __clzll() 158 __rev(uint32_t __t) { in __rev() argument 159 return __builtin_bswap32(__t); in __rev() 163 __revl(unsigned long __t) { in __revl() argument 165 return __builtin_bswap32(__t); in __revl() [all …]
|
/external/llvm-project/libcxx/include/ |
D | bit | 210 _Tp __rotl(_Tp __t, unsigned int __cnt) _NOEXCEPT 215 return __t; 216 return (__t << (__cnt % __dig)) | (__t >> (__dig - (__cnt % __dig))); 222 _Tp __rotr(_Tp __t, unsigned int __cnt) _NOEXCEPT 227 return __t; 228 return (__t >> (__cnt % __dig)) | (__t << (__dig - (__cnt % __dig))); 235 int __countr_zero(_Tp __t) _NOEXCEPT 238 if (__t == 0) 242 return __libcpp_ctz(static_cast<unsigned int>(__t)); 244 return __libcpp_ctz(static_cast<unsigned long>(__t)); [all …]
|
D | __split_buffer | 428 __split_buffer<value_type, __alloc_rr&> __t(__n, 0, __alloc()); 429 __t.__construct_at_end(move_iterator<pointer>(__begin_), 431 _VSTD::swap(__first_, __t.__first_); 432 _VSTD::swap(__begin_, __t.__begin_); 433 _VSTD::swap(__end_, __t.__end_); 434 _VSTD::swap(__end_cap(), __t.__end_cap()); 448 __split_buffer<value_type, __alloc_rr&> __t(size(), 0, __alloc()); 449 __t.__construct_at_end(move_iterator<pointer>(__begin_), 451 __t.__end_ = __t.__begin_ + (__end_ - __begin_); 452 _VSTD::swap(__first_, __t.__first_); [all …]
|
D | tuple | 231 explicit __tuple_leaf(_Tp&& __t) _NOEXCEPT_((is_nothrow_constructible<_Hp, _Tp>::value)) 232 : __value_(_VSTD::forward<_Tp>(__t)) 238 explicit __tuple_leaf(integral_constant<int, 0>, const _Alloc&, _Tp&& __t) 239 : __value_(_VSTD::forward<_Tp>(__t)) 245 explicit __tuple_leaf(integral_constant<int, 1>, const _Alloc& __a, _Tp&& __t) 246 : __value_(allocator_arg_t(), __a, _VSTD::forward<_Tp>(__t)) 252 explicit __tuple_leaf(integral_constant<int, 2>, const _Alloc& __a, _Tp&& __t) 253 : __value_(_VSTD::forward<_Tp>(__t), __a) 257 __tuple_leaf(const __tuple_leaf& __t) = default; 258 __tuple_leaf(__tuple_leaf&& __t) = default; [all …]
|
D | __threading_support | 251 bool __libcpp_thread_isnull(const __libcpp_thread_t *__t); 254 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), 261 __libcpp_thread_id __libcpp_thread_get_id(const __libcpp_thread_t *__t); 264 int __libcpp_thread_join(__libcpp_thread_t *__t); 267 int __libcpp_thread_detach(__libcpp_thread_t *__t); 502 bool __libcpp_thread_isnull(const __libcpp_thread_t *__t) { 503 return *__t == __libcpp_thread_t(); 506 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), 509 return pthread_create(__t, nullptr, __func, __arg); 518 __libcpp_thread_id __libcpp_thread_get_id(const __libcpp_thread_t *__t) [all …]
|
D | thread | 245 thread(thread&& __t) _NOEXCEPT : __t_(__t.__t_) { 246 __t.__t_ = _LIBCPP_NULL_THREAD; 250 thread& operator=(thread&& __t) _NOEXCEPT { 253 __t_ = __t.__t_; 254 __t.__t_ = _LIBCPP_NULL_THREAD; 259 void swap(thread& __t) _NOEXCEPT {_VSTD::swap(__t_, __t.__t_);} 278 __thread_execute(tuple<_TSp, _Fp, _Args...>& __t, __tuple_indices<_Indices...>) 280 _VSTD::__invoke(_VSTD::move(_VSTD::get<1>(__t)), _VSTD::move(_VSTD::get<_Indices>(__t))...); 386 sleep_until(const chrono::time_point<_Clock, _Duration>& __t) 391 while (_Clock::now() < __t) [all …]
|
D | __tree | 584 __get_key(__node_value_type const& __t) { 585 return __t.__get_value().first; 592 __get_key(_Up& __t) { 593 return __t.first; 598 __get_value(__node_value_type const& __t) { 599 return __t.__get_value(); 606 __get_value(_Up& __t) { 607 return __t; 847 {__tree_iterator __t(*this); ++(*this); return __t;} 857 {__tree_iterator __t(*this); --(*this); return __t;} [all …]
|
/external/llvm-project/clang/lib/Headers/ |
D | arm_acle.h | 142 __clz(uint32_t __t) { in __clz() argument 143 return __builtin_clz(__t); in __clz() 147 __clzl(unsigned long __t) { in __clzl() argument 148 return __builtin_clzl(__t); in __clzl() 152 __clzll(uint64_t __t) { in __clzll() argument 153 return __builtin_clzll(__t); in __clzll() 158 __cls(uint32_t __t) { in __cls() argument 159 return __builtin_arm_cls(__t); in __cls() 163 __clsl(unsigned long __t) { in __clsl() argument 165 return __builtin_arm_cls(__t); in __clsl() [all …]
|
/external/libabigail/tests/data/test-diff-dwarf/ |
D | test42-PR21296-clanggcc.cc | 55 forward(typename std::remove_reference<_Tp>::type& __t) noexcept in forward() argument 56 { return static_cast<_Tp&&>(__t); } in forward() 66 forward(typename std::remove_reference<_Tp>::type&& __t) noexcept in forward() argument 68 return static_cast<_Tp&&>(__t); in forward() 78 move(_Tp&& __t) noexcept in move() argument 79 { return static_cast<typename std::remove_reference<_Tp>::type&&>(__t); } in move() 140 _M_head(const _Tuple_impl& __t) noexcept { return _Base::_M_head(__t); } in _M_head() 143 _M_tail(const _Tuple_impl& __t) noexcept { return __t; } in _M_tail() 203 __get_helper(const _Tuple_impl<__i, _Head, _Tail...>& __t) noexcept in __get_helper() argument 204 { return _Tuple_impl<__i, _Head, _Tail...>::_M_head(__t); } in __get_helper() [all …]
|
/external/libcxx/include/ |
D | __split_buffer | 429 __split_buffer<value_type, __alloc_rr&> __t(__n, 0, __alloc()); 430 __t.__construct_at_end(move_iterator<pointer>(__begin_), 432 _VSTD::swap(__first_, __t.__first_); 433 _VSTD::swap(__begin_, __t.__begin_); 434 _VSTD::swap(__end_, __t.__end_); 435 _VSTD::swap(__end_cap(), __t.__end_cap()); 449 __split_buffer<value_type, __alloc_rr&> __t(size(), 0, __alloc()); 450 __t.__construct_at_end(move_iterator<pointer>(__begin_), 452 __t.__end_ = __t.__begin_ + (__end_ - __begin_); 453 _VSTD::swap(__first_, __t.__first_); [all …]
|
D | tuple | 221 explicit __tuple_leaf(_Tp&& __t) _NOEXCEPT_((is_nothrow_constructible<_Hp, _Tp>::value)) 222 : __value_(_VSTD::forward<_Tp>(__t)) 228 explicit __tuple_leaf(integral_constant<int, 0>, const _Alloc&, _Tp&& __t) 229 : __value_(_VSTD::forward<_Tp>(__t)) 235 explicit __tuple_leaf(integral_constant<int, 1>, const _Alloc& __a, _Tp&& __t) 236 : __value_(allocator_arg_t(), __a, _VSTD::forward<_Tp>(__t)) 242 explicit __tuple_leaf(integral_constant<int, 2>, const _Alloc& __a, _Tp&& __t) 243 : __value_(_VSTD::forward<_Tp>(__t), __a) 247 __tuple_leaf(const __tuple_leaf& __t) = default; 248 __tuple_leaf(__tuple_leaf&& __t) = default; [all …]
|
D | __threading_support | 171 bool __libcpp_thread_isnull(const __libcpp_thread_t *__t); 174 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), 181 __libcpp_thread_id __libcpp_thread_get_id(const __libcpp_thread_t *__t); 184 int __libcpp_thread_join(__libcpp_thread_t *__t); 187 int __libcpp_thread_detach(__libcpp_thread_t *__t); 321 bool __libcpp_thread_isnull(const __libcpp_thread_t *__t) { 322 return *__t == 0; 325 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), 328 return pthread_create(__t, 0, __func, __arg); 336 __libcpp_thread_id __libcpp_thread_get_id(const __libcpp_thread_t *__t) [all …]
|
D | thread | 315 thread(thread&& __t) _NOEXCEPT : __t_(__t.__t_) {__t.__t_ = _LIBCPP_NULL_THREAD;} 317 thread& operator=(thread&& __t) _NOEXCEPT; 321 void swap(thread& __t) _NOEXCEPT {_VSTD::swap(__t_, __t.__t_);} 340 __thread_execute(tuple<_TSp, _Fp, _Args...>& __t, __tuple_indices<_Indices...>) 342 __invoke(_VSTD::move(_VSTD::get<1>(__t)), _VSTD::move(_VSTD::get<_Indices>(__t))...); 377 thread::operator=(thread&& __t) _NOEXCEPT 381 __t_ = __t.__t_; 382 __t.__t_ = _LIBCPP_NULL_THREAD; 454 sleep_until(const chrono::time_point<_Clock, _Duration>& __t) 460 while (_Clock::now() < __t) [all …]
|
D | exception | 254 _LIBCPP_INLINE_VISIBILITY explicit __nested(const _Tp& __t) : _Tp(__t) {} 265 __do_throw(_Tp&& __t) 267 __do_throw (_Tp& __t) 270 throw __nested<_Up>(_VSTD::forward<_Tp>(__t)); 278 __do_throw(_Tp&& __t) 280 __do_throw (_Tp& __t) 283 throw _VSTD::forward<_Tp>(__t); 292 throw_with_nested(_Tp&& __t) 294 throw_with_nested (_Tp& __t) 304 __do_throw(_VSTD::forward<_Tp>(__t)); [all …]
|
/external/libcxx/src/support/win32/ |
D | thread_win32.cpp | 192 bool __libcpp_thread_isnull(const __libcpp_thread_t *__t) { in __libcpp_thread_isnull() argument 193 return *__t == 0; in __libcpp_thread_isnull() 196 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), in __libcpp_thread_create() argument 203 *__t = reinterpret_cast<HANDLE>(_beginthreadex(nullptr, 0, in __libcpp_thread_create() 207 if (*__t) in __libcpp_thread_create() 217 __libcpp_thread_id __libcpp_thread_get_id(const __libcpp_thread_t *__t) in __libcpp_thread_get_id() argument 219 return GetThreadId(*__t); in __libcpp_thread_get_id() 222 int __libcpp_thread_join(__libcpp_thread_t *__t) in __libcpp_thread_join() argument 224 if (WaitForSingleObjectEx(*__t, INFINITE, FALSE) == WAIT_FAILED) in __libcpp_thread_join() 226 if (!CloseHandle(*__t)) in __libcpp_thread_join() [all …]
|
/external/llvm-project/libcxx/src/support/win32/ |
D | thread_win32.cpp | 191 bool __libcpp_thread_isnull(const __libcpp_thread_t *__t) { in __libcpp_thread_isnull() argument 192 return *__t == 0; in __libcpp_thread_isnull() 195 int __libcpp_thread_create(__libcpp_thread_t *__t, void *(*__func)(void *), in __libcpp_thread_create() argument 202 *__t = reinterpret_cast<HANDLE>(_beginthreadex(nullptr, 0, in __libcpp_thread_create() 206 if (*__t) in __libcpp_thread_create() 216 __libcpp_thread_id __libcpp_thread_get_id(const __libcpp_thread_t *__t) in __libcpp_thread_get_id() argument 218 return GetThreadId(*__t); in __libcpp_thread_get_id() 221 int __libcpp_thread_join(__libcpp_thread_t *__t) in __libcpp_thread_join() argument 223 if (WaitForSingleObjectEx(*__t, INFINITE, FALSE) == WAIT_FAILED) in __libcpp_thread_join() 225 if (!CloseHandle(*__t)) in __libcpp_thread_join() [all …]
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/ |
D | bugprone-reserved-identifier-invert.cpp | 44 ref(_Tp &__t) noexcept { in ref() argument 45 return reference_wrapper<_Tp>(__t); in ref() 50 ref(reference_wrapper<_Tp> __t) noexcept { in ref() argument 51 return ref(__t.get()); in ref() 66 cref(reference_wrapper<const _Tp> __t) noexcept { in cref() argument 67 return cref(__t.get()); in cref()
|
D | performance-move-const-arg-trivially-copyable.cpp | 13 constexpr typename std::remove_reference<_Tp>::type &&move(_Tp &&__t) { in move() argument 14 return static_cast<typename std::remove_reference<_Tp>::type &&>(__t); in move() 19 forward(typename remove_reference<_Tp>::type &__t) noexcept { in forward() argument 20 return static_cast<_Tp &&>(__t); in forward()
|
/external/llvm-project/llvm/test/CodeGen/BPF/CORE/ |
D | offset-reloc-typedef-union-2.ll | 9 ; } __t; 12 ; int test(__t *arg) { return arg->a; } 18 %union.__t = type { i32 } 21 define dso_local i32 @test(%union.__t* readonly %arg) local_unnamed_addr #0 !dbg !13 { 23 …call void @llvm.dbg.value(metadata %union.__t* %arg, metadata !18, metadata !DIExpression()), !dbg… 24 …%0 = tail call %union.__t* @llvm.preserve.union.access.index.p0s_union.__ts.p0s_union.__ts(%union.… 25 %a = getelementptr %union.__t, %union.__t* %0, i64 0, i32 0, !dbg !20 40 ; CHECK: .ascii "__t" # string offset=1 54 declare %union.__t* @llvm.preserve.union.access.index.p0s_union.__ts.p0s_union.__ts(%union.__t*, i3… 71 !4 = !DIDerivedType(tag: DW_TAG_typedef, name: "__t", file: !1, line: 4, baseType: !5)
|
D | offset-reloc-typedef-struct-2.ll | 9 ; } __t; 12 ; int test(__t *arg) { return arg->a; } 18 %struct.__t = type { i32 } 21 define dso_local i32 @test(%struct.__t* readonly %arg) local_unnamed_addr #0 !dbg !13 { 23 …call void @llvm.dbg.value(metadata %struct.__t* %arg, metadata !18, metadata !DIExpression()), !db… 24 …%0 = tail call i32* @llvm.preserve.struct.access.index.p0i32.p0s_struct.__ts(%struct.__t* %arg, i3… 39 ; CHECK: .ascii "__t" # string offset=1 53 declare i32* @llvm.preserve.struct.access.index.p0i32.p0s_struct.__ts(%struct.__t*, i32, i32) #1 70 !4 = !DIDerivedType(tag: DW_TAG_typedef, name: "__t", file: !1, line: 4, baseType: !5)
|
/external/flatbuffers/tests/FlatBuffers.Test.Swift/Tests/FlatBuffers.Test.SwiftTests/ |
D | FlatBuffersUnionTests.swift | 167 private var __t: Table variable 169 init(_ fb: ByteBuffer, o: Int32) { __t = Table(bb: fb, position: o) } 170 init(_ t: Table) { __t = t } 172 …t32) -> Weapon? { let o = __t.offset(4); return o == 0 ? nil : Weapon.assign(__t.indirect(__t.vect… in weapon() 175 let o = __t.offset(8); return o == 0 ? nil : __t.union(o) in equiped<T: FlatBufferObject>() 196 var __buffer: ByteBuffer! { __t.bb } 199 private var __t: Table variable 201 init(_ t: Table) { __t = t } 202 init(_ fb: ByteBuffer, o: Int32) { __t = Table(bb: fb, position: o)} 204 …var dmg: Int16 { let o = __t.offset(6); return o == 0 ? 0 : __t.readBuffer(of: Int16.self, at: o) } [all …]
|
D | FlatBuffersTests.swift | 74 private var __t: Table variable 77 __t = t 80 …var lan: Int32 { let o = __t.offset(6); return o == 0 ? 0 : __t.readBuffer(of: Int32.self, at: o) } 81 …var log: Int32 { let o = __t.offset(8); return o == 0 ? 0 : __t.readBuffer(of: Int32.self, at: o) } 82 var nameVector: [UInt8]? { return __t.getVector(at: 4) } 83 var name: String? { let o = __t.offset(4); return o == 0 ? nil : __t.string(at: o) }
|
D | FlatBuffersStructsTests.swift | 92 private var __t: Table variable 95 __t = t 98 var vec: Vec? { let o = __t.offset(4); return o == 0 ? nil : Vec(__t.bb, o: o + __t.postion) } 164 private var __t: Table variable 167 __t = t 170 … var vec: Vec2? { let o = __t.offset(4); return o == 0 ? nil : Vec2( __t.bb, o: o + __t.postion) } 171 …var UType: Test? { let o = __t.offset(6); return o == 0 ? Test.none : Test(rawValue: __t.readBuffe…
|
/external/llvm-project/clang/test/Headers/Inputs/include/ |
D | complex | 90 complex<_Tp> __t(__x); 91 __t += __y; 92 return __t; 98 complex<_Tp> __t(__x); 99 __t += __y; 100 return __t; 106 complex<_Tp> __t(__y); 107 __t += __x; 108 return __t; 114 complex<_Tp> __t(__x); [all …]
|
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/Inputs/bugprone-reserved-identifier/system/ |
D | system-header.h | 23 ref(_Tp &__t) noexcept { in ref() argument 24 return reference_wrapper<_Tp>(__t); in ref() 29 ref(reference_wrapper<_Tp> __t) noexcept { in ref() argument 30 return ref(__t.get()); in ref()
|