/external/clang/lib/Headers/ |
D | intrin.h | 180 long _InterlockedAddLargeStatistic(__int64 volatile *_Addend, long _Value); 182 long _InterlockedAnd(long volatile *_Value, long _Mask); 184 short _InterlockedAnd16(short volatile *_Value, short _Mask); 186 char _InterlockedAnd8(char volatile *_Value, char _Mask); 216 long _InterlockedExchange(long volatile *_Target, long _Value); 218 short _InterlockedExchange16(short volatile *_Target, short _Value); 220 char _InterlockedExchange8(char volatile *_Target, char _Value); 222 long __cdecl _InterlockedExchangeAdd(long volatile *_Addend, long _Value); 226 short _InterlockedExchangeAdd16(short volatile *_Addend, short _Value); 230 char _InterlockedExchangeAdd8(char volatile *_Addend, char _Value); [all …]
|
D | stdatomic.h | 163 typedef struct atomic_flag { atomic_bool _Value; } atomic_flag; member 178 #define atomic_flag_test_and_set(object) __c11_atomic_exchange(&(object)->_Value, 1, __ATOMIC_SEQ_C… 179 #define atomic_flag_test_and_set_explicit(object, order) __c11_atomic_exchange(&(object)->_Value, 1… 181 #define atomic_flag_clear(object) __c11_atomic_store(&(object)->_Value, 0, __ATOMIC_SEQ_CST) 182 #define atomic_flag_clear_explicit(object, order) __c11_atomic_store(&(object)->_Value, 0, order)
|
/external/libcxx/include/experimental/ |
D | unordered_set | 47 template <class _Value, 48 class _Hash = hash<_Value>, class _Pred = equal_to<_Value>> 49 using unordered_set = _VSTD::unordered_set<_Value, _Hash, _Pred, 50 polymorphic_allocator<_Value>>; 52 template <class _Value, 53 class _Hash = hash<_Value>, class _Pred = equal_to<_Value>> 54 using unordered_multiset = _VSTD::unordered_multiset<_Value, _Hash, _Pred, 55 polymorphic_allocator<_Value>>;
|
D | set | 47 template <class _Value, class _Compare = less<_Value>> 48 using set = _VSTD::set<_Value, _Compare, 49 polymorphic_allocator<_Value>>; 51 template <class _Value, class _Compare = less<_Value>> 52 using multiset = _VSTD::multiset<_Value, _Compare, 53 polymorphic_allocator<_Value>>;
|
D | map | 47 template <class _Key, class _Value, class _Compare = less<_Key>> 48 using map = _VSTD::map<_Key, _Value, _Compare, 49 polymorphic_allocator<pair<const _Key, _Value>>>; 51 template <class _Key, class _Value, class _Compare = less<_Key>> 52 using multimap = _VSTD::multimap<_Key, _Value, _Compare, 53 polymorphic_allocator<pair<const _Key, _Value>>>;
|
D | unordered_map | 53 template <class _Key, class _Value, 55 using unordered_map = _VSTD::unordered_map<_Key, _Value, _Hash, _Pred, 56 polymorphic_allocator<pair<const _Key, _Value>>>; 58 template <class _Key, class _Value, 60 using unordered_multimap = _VSTD::unordered_multimap<_Key, _Value, _Hash, _Pred, 61 polymorphic_allocator<pair<const _Key, _Value>>>;
|
D | functional | 145 template<class _Key, class _Value, class _Hash, class _BinaryPredicate, bool /*useArray*/> class _B… 148 template<class _Key, typename _Value, class _Hash, class _BinaryPredicate> 149 class _BMSkipTable<_Key, _Value, _Hash, _BinaryPredicate, false> { 151 typedef _Value value_type; 154 const _Value __default_value_; 155 std::unordered_map<_Key, _Value, _Hash, _BinaryPredicate> __table; 159 _BMSkipTable(std::size_t __sz, _Value __default, _Hash __hf, _BinaryPredicate __pred) 178 template<class _Key, typename _Value, class _Hash, class _BinaryPredicate> 179 class _BMSkipTable<_Key, _Value, _Hash, _BinaryPredicate, true> { 181 typedef _Value value_type; [all …]
|
/external/libcxx/include/ext/ |
D | hash_set | 213 template <class _Value, class _Hash = hash<_Value>, class _Pred = equal_to<_Value>, 214 class _Alloc = allocator<_Value> > 219 typedef _Value key_type; 331 template <class _Value, class _Hash, class _Pred, class _Alloc> 332 hash_set<_Value, _Hash, _Pred, _Alloc>::hash_set(size_type __n, 339 template <class _Value, class _Hash, class _Pred, class _Alloc> 340 hash_set<_Value, _Hash, _Pred, _Alloc>::hash_set(size_type __n, 347 template <class _Value, class _Hash, class _Pred, class _Alloc> 349 hash_set<_Value, _Hash, _Pred, _Alloc>::hash_set( 356 template <class _Value, class _Hash, class _Pred, class _Alloc> [all …]
|
/external/libcxx/include/ |
D | unordered_set | 376 template <class _Value, class _Hash, class _Pred, class _Alloc> 379 template <class _Value, class _Hash = hash<_Value>, class _Pred = equal_to<_Value>, 380 class _Alloc = allocator<_Value> > 385 typedef _Value key_type; 394 static_assert(sizeof(__diagnose_unordered_container_requirements<_Value, _Hash, _Pred>(0)), ""); 734 template <class _Value, class _Hash, class _Pred, class _Alloc> 735 unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(size_type __n, 745 template <class _Value, class _Hash, class _Pred, class _Alloc> 746 unordered_set<_Value, _Hash, _Pred, _Alloc>::unordered_set(size_type __n, 756 template <class _Value, class _Hash, class _Pred, class _Alloc> [all …]
|
D | __tree | 40 template <class _Key, class _Value> 534 template <class _Key, class _Value> 535 struct __is_tree_value_type_imp<__value_type<_Key, _Value>> : true_type {};
|
D | __hash_table | 42 template <class _Key, class _Value> 43 struct __is_hash_value_type_imp<__hash_value_type<_Key, _Value>> : true_type {};
|
/external/libcxx/test/support/ |
D | container_test_types.h | 441 template <class _Key, class _Value, class _Less, class _Alloc> 443 template <class _Key, class _Value, class _Less, class _Alloc> 445 template <class _Value, class _Less, class _Alloc> 447 template <class _Value, class _Less, class _Alloc> 449 template <class _Key, class _Value, class _Hash, class _Equals, class _Alloc> 451 template <class _Key, class _Value, class _Hash, class _Equals, class _Alloc> 453 template <class _Value, class _Hash, class _Equals, class _Alloc> 455 template <class _Value, class _Hash, class _Equals, class _Alloc>
|
/external/compiler-rt/lib/builtins/ |
D | atomic_flag_clear.c | 24 __c11_atomic_store(&(object)->_Value, 0, __ATOMIC_SEQ_CST); in atomic_flag_clear()
|
D | atomic_flag_test_and_set.c | 24 return __c11_atomic_exchange(&(object)->_Value, 1, __ATOMIC_SEQ_CST); in atomic_flag_test_and_set()
|
D | atomic_flag_clear_explicit.c | 25 __c11_atomic_store(&(object)->_Value, 0, order); in atomic_flag_clear_explicit()
|
D | atomic_flag_test_and_set_explicit.c | 25 return __c11_atomic_exchange(&(object)->_Value, 1, order); in atomic_flag_test_and_set_explicit()
|
/external/clang/test/SemaCXX/ |
D | libstdcxx_map_base_hack.cpp | 10 template<typename _Key, typename _Value, typename _Ex, bool __unique,
|
/external/clang/www/ |
D | libstdc++4.4-clang0x.patch | 533 _Hashtable<_Key, _Value, _Allocator, _ExtractKey, _Equal,
|
/external/llvm/docs/ |
D | ProgrammersManual.rst | 2955 .. _Value:
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/ |
D | ProgrammersManual.rst | 3544 .. _Value:
|