/external/libcxx/src/ |
D | valarray.cpp | 22 size_t __k = __size_.size() != 0; in __init() local 24 __k *= __size_[__i]; in __init() 25 __1d_.resize(__k); in __init() 28 __k = 0; in __init() 29 __1d_[__k] = __start; in __init() 37 ++__k; in __init() 38 __1d_[__k] = __1d_[__k-1] + __stride_[__i]; in __init() 40 __1d_[__k] -= __stride_[__j] * (__size_[__j] - 1); in __init()
|
/external/libcxx/include/ |
D | map | 1126 mapped_type& operator[](const key_type& __k); 1128 mapped_type& operator[](key_type&& __k); 1131 mapped_type& at(const key_type& __k); 1132 const mapped_type& at(const key_type& __k) const; 1203 pair<iterator, bool> try_emplace(const key_type& __k, _Args&&... __args) 1205 return __tree_.__emplace_unique_key_args(__k, 1207 _VSTD::forward_as_tuple(__k), 1213 pair<iterator, bool> try_emplace(key_type&& __k, _Args&&... __args) 1215 return __tree_.__emplace_unique_key_args(__k, 1217 _VSTD::forward_as_tuple(_VSTD::move(__k)), [all …]
|
D | set | 682 size_type erase(const key_type& __k) 683 {return __tree_.__erase_unique(__k);} 764 iterator find(const key_type& __k) {return __tree_.find(__k);} 766 const_iterator find(const key_type& __k) const {return __tree_.find(__k);} 771 find(const _K2& __k) {return __tree_.find(__k);} 775 find(const _K2& __k) const {return __tree_.find(__k);} 779 size_type count(const key_type& __k) const 780 {return __tree_.__count_unique(__k);} 785 count(const _K2& __k) const {return __tree_.__count_multi(__k);} 788 iterator lower_bound(const key_type& __k) [all …]
|
D | unordered_map | 1101 pair<iterator, bool> try_emplace(const key_type& __k, _Args&&... __args) 1103 return __table_.__emplace_unique_key_args(__k, _VSTD::piecewise_construct, 1104 _VSTD::forward_as_tuple(__k), 1110 pair<iterator, bool> try_emplace(key_type&& __k, _Args&&... __args) 1112 return __table_.__emplace_unique_key_args(__k, _VSTD::piecewise_construct, 1113 _VSTD::forward_as_tuple(_VSTD::move(__k)), 1119 iterator try_emplace(const_iterator __h, const key_type& __k, _Args&&... __args) 1128 return try_emplace(__k, _VSTD::forward<_Args>(__args)...).first; 1133 iterator try_emplace(const_iterator __h, key_type&& __k, _Args&&... __args) 1142 return try_emplace(_VSTD::move(__k), _VSTD::forward<_Args>(__args)...).first; [all …]
|
D | unordered_set | 593 size_type erase(const key_type& __k) {return __table_.__erase_unique(__k);} 673 iterator find(const key_type& __k) {return __table_.find(__k);} 675 const_iterator find(const key_type& __k) const {return __table_.find(__k);} 677 size_type count(const key_type& __k) const {return __table_.__count_unique(__k);} 679 pair<iterator, iterator> equal_range(const key_type& __k) 680 {return __table_.__equal_range_unique(__k);} 682 pair<const_iterator, const_iterator> equal_range(const key_type& __k) const 683 {return __table_.__equal_range_unique(__k);} 693 size_type bucket(const key_type& __k) const {return __table_.bucket(__k);} 1223 size_type erase(const key_type& __k) {return __table_.__erase_multi(__k);} [all …]
|
D | __tree | 1376 size_type __erase_unique(const _Key& __k); 1378 size_type __erase_multi(const _Key& __k); 1390 size_type __count_unique(const _Key& __k) const; 1392 size_type __count_multi(const _Key& __k) const; 1428 __equal_range_unique(const _Key& __k); 1431 __equal_range_unique(const _Key& __k) const; 1435 __equal_range_multi(const _Key& __k); 1438 __equal_range_multi(const _Key& __k) const; 2142 __tree<_Tp, _Compare, _Allocator>::__emplace_unique_key_args(_Key const& __k, _Args&&... __args) 2147 __tree<_Tp, _Compare, _Allocator>::__emplace_unique_key_args(_Key const& __k, _Args& __args) [all …]
|
D | __hash_table | 1071 pair<iterator, bool> __emplace_unique_key_args(_Key const& __k, _Args&&... __args); 1219 size_type bucket(const _Key& __k) const 1223 return __constrain_hash(hash_function()(__k), bucket_count()); 1237 size_type __erase_unique(const _Key& __k); 1239 size_type __erase_multi(const _Key& __k); 1244 size_type __count_unique(const _Key& __k) const; 1246 size_type __count_multi(const _Key& __k) const; 1250 __equal_range_unique(const _Key& __k); 1253 __equal_range_unique(const _Key& __k) const; 1257 __equal_range_multi(const _Key& __k); [all …]
|
D | random | 1957 const unsigned __k = 1; 1958 uint32_t __ar[__k+3]; 1959 __q.generate(__ar, __ar + __k + 3); 1970 const unsigned __k = 2; 1971 uint32_t __ar[__k+3]; 1972 __q.generate(__ar, __ar + __k + 3); 2327 const unsigned __k = 1; 2328 uint32_t __ar[__n * __k]; 2329 __q.generate(__ar, __ar + __n * __k); 2352 const unsigned __k = 2; [all …]
|
D | algorithm | 2832 for (size_t __k = 0; __k < __n0_; ++__k) 2845 for (size_t __k = __n0_; __k < __n_; ++__k) 3034 _Distance __k = 0; 3035 for (; __first != __last && __k < __n; ++__first, (void)++__k) 3036 __output_iter[__k] = *__first; 3037 _Distance __sz = __k; 3038 for (; __first != __last; ++__first, (void)++__k) { 3039 _Distance __r = _VSTD::uniform_int_distribution<_Distance>(0, __k)(__g); 3043 return __output_iter + _VSTD::min(__n, __k); 3697 for (_BirdirectionalIterator __k = __i; __k != __first && __comp(__t, *--__k); --__j) [all …]
|
D | utility | 1006 _Size __k = __loadword<_Size>(__data); 1007 __k *= __m; 1008 __k ^= __k >> __r; 1009 __k *= __m; 1011 __h ^= __k;
|
D | list | 2121 for (__link_pointer __k = __f.__ptr_; 2122 __k != __l.__ptr_; __k = __k->__next_) 2124 if (__j->__ptr_ == __k)
|
/external/libcxx/include/ext/ |
D | hash_set | 291 size_type erase(const key_type& __k) {return __table_.__erase_unique(__k);} 307 iterator find(const key_type& __k) {return __table_.find(__k);} 309 const_iterator find(const key_type& __k) const {return __table_.find(__k);} 311 size_type count(const key_type& __k) const {return __table_.__count_unique(__k);} 313 pair<iterator, iterator> equal_range(const key_type& __k) 314 {return __table_.__equal_range_unique(__k);} 316 pair<const_iterator, const_iterator> equal_range(const key_type& __k) const 317 {return __table_.__equal_range_unique(__k);} 512 size_type erase(const key_type& __k) {return __table_.__erase_multi(__k);} 528 iterator find(const key_type& __k) {return __table_.find(__k);} [all …]
|
D | hash_map | 558 size_type erase(const key_type& __k) {return __table_.__erase_unique(__k);} 576 iterator find(const key_type& __k) {return __table_.find(__k);} 578 const_iterator find(const key_type& __k) const {return __table_.find(__k);} 580 size_type count(const key_type& __k) const {return __table_.__count_unique(__k);} 582 pair<iterator, iterator> equal_range(const key_type& __k) 583 {return __table_.__equal_range_unique(__k);} 585 pair<const_iterator, const_iterator> equal_range(const key_type& __k) const 586 {return __table_.__equal_range_unique(__k);} 588 mapped_type& operator[](const key_type& __k); 603 __node_holder __construct_node(const key_type& __k); [all …]
|
/external/libcxx/include/experimental/ |
D | functional | 290 difference_type __k = __skip[__cur [ __j - 1 ]]; 291 difference_type __m = __j - __k - 1; 292 if (__k < __j && __m > __suffix[ __j ]) 308 std::size_t __k = 0; 311 while ( __k > 0 && !__pred ( __f[__k], __f[__i] )) 312 __k = __prefix [ __k - 1 ]; 314 if ( __pred ( __f[__k], __f[__i] )) 315 __k++; 316 __prefix [ __i ] = __k; 339 const difference_type __k = __i - __scratch[__i] + 1; [all …]
|
/external/libcxx/benchmarks/ |
D | unordered_set_operations.bench.cpp | 86 uint32_t __k = data; in operator ()() local 87 __k *= __m; in operator ()() 88 __k ^= __k >> __r; in operator ()() 89 __k *= __m; in operator ()() 91 __h ^= __k; in operator ()()
|
/external/clang/test/CodeGen/ |
D | avx512f-builtins.c | 1397 __m512i test_mm512_mask_and_epi32(__m512i __src,__mmask16 __k, __m512i __a, __m512i __b) { in test_mm512_mask_and_epi32() argument 1402 return _mm512_mask_and_epi32(__src, __k,__a, __b); in test_mm512_mask_and_epi32() 1405 __m512i test_mm512_maskz_and_epi32(__mmask16 __k, __m512i __a, __m512i __b) { in test_mm512_maskz_and_epi32() argument 1410 return _mm512_maskz_and_epi32(__k,__a, __b); in test_mm512_maskz_and_epi32() 1413 __m512i test_mm512_mask_and_epi64(__m512i __src,__mmask8 __k, __m512i __a, __m512i __b) { in test_mm512_mask_and_epi64() argument 1418 return _mm512_mask_and_epi64(__src, __k,__a, __b); in test_mm512_mask_and_epi64() 1421 __m512i test_mm512_maskz_and_epi64(__mmask8 __k, __m512i __a, __m512i __b) { in test_mm512_maskz_and_epi64() argument 1426 return _mm512_maskz_and_epi64(__k,__a, __b); in test_mm512_maskz_and_epi64() 1429 __m512i test_mm512_mask_or_epi32(__m512i __src,__mmask16 __k, __m512i __a, __m512i __b) { in test_mm512_mask_or_epi32() argument 1434 return _mm512_mask_or_epi32(__src, __k,__a, __b); in test_mm512_mask_or_epi32() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Hexagon/ |
D | bit-loop-rc-mismatch.ll | 7 define weak_odr hidden i32 @fred(i32* %this, i32* nocapture readonly dereferenceable(4) %__k) #0 al… 9 %call = tail call i64 @danny(i32* %this, i32* nonnull dereferenceable(4) %__k) #2
|
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/ |
D | p5-0x.cpp | 173 int& operator[](const string& __k); 175 int& operator[](const string&& __k);
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | avx512-logic.ll | 442 define <8 x i64> @test_mm512_mask_and_epi32(<8 x i64> %__src, i16 zeroext %__k, <8 x i64> %__a, <8 … 458 %2 = bitcast i16 %__k to <16 x i1> 464 define <8 x i64> @test_mm512_mask_or_epi32(<8 x i64> %__src, i16 zeroext %__k, <8 x i64> %__a, <8 x… 480 %2 = bitcast i16 %__k to <16 x i1> 486 define <8 x i64> @test_mm512_mask_xor_epi32(<8 x i64> %__src, i16 zeroext %__k, <8 x i64> %__a, <8 … 502 %2 = bitcast i16 %__k to <16 x i1>
|
D | avx512-intrinsics-fast-isel.ll | 1668 define <8 x i64> @test_mm512_maskz_mul_epi32(i8 zeroext %__k, <8 x i64> %__A, <8 x i64> %__B) nounw… 1687 %5 = bitcast i8 %__k to <8 x i1> 1692 define <8 x i64> @test_mm512_mask_mul_epi32(i8 zeroext %__k, <8 x i64> %__A, <8 x i64> %__B, <8 x i… 1713 %5 = bitcast i8 %__k to <8 x i1> 1734 define <8 x i64> @test_mm512_maskz_mul_epu32(i8 zeroext %__k, <8 x i64> %__A, <8 x i64> %__B) nounw… 1751 %3 = bitcast i8 %__k to <8 x i1> 1756 define <8 x i64> @test_mm512_mask_mul_epu32(i8 zeroext %__k, <8 x i64> %__A, <8 x i64> %__B, <8 x i… 1775 %3 = bitcast i8 %__k to <8 x i1>
|
D | avx512-schedule.ll | 5455 define <8 x i64> @test_mm512_mask_and_epi32(<8 x i64> %__src, i16 zeroext %__k, <8 x i64> %__a, <8 … 5471 %2 = bitcast i16 %__k to <16 x i1> 5477 define <8 x i64> @test_mm512_mask_or_epi32(<8 x i64> %__src, i16 zeroext %__k, <8 x i64> %__a, <8 x… 5493 %2 = bitcast i16 %__k to <16 x i1> 5499 define <8 x i64> @test_mm512_mask_xor_epi32(<8 x i64> %__src, i16 zeroext %__k, <8 x i64> %__a, <8 … 5515 %2 = bitcast i16 %__k to <16 x i1>
|
/external/clang/lib/Headers/ |
D | avx512fintrin.h | 514 _mm512_mask_and_epi32(__m512i __src, __mmask16 __k, __m512i __a, __m512i __b) in _mm512_mask_and_epi32() argument 516 return (__m512i)__builtin_ia32_selectd_512((__mmask16)__k, in _mm512_mask_and_epi32() 522 _mm512_maskz_and_epi32(__mmask16 __k, __m512i __a, __m512i __b) in _mm512_maskz_and_epi32() argument 525 __k, __a, __b); in _mm512_maskz_and_epi32() 535 _mm512_mask_and_epi64(__m512i __src, __mmask8 __k, __m512i __a, __m512i __b) in _mm512_mask_and_epi64() argument 537 return (__m512i) __builtin_ia32_selectq_512 ((__mmask8) __k, in _mm512_mask_and_epi64() 543 _mm512_maskz_and_epi64(__mmask8 __k, __m512i __a, __m512i __b) in _mm512_maskz_and_epi64() argument 546 __k, __a, __b); in _mm512_maskz_and_epi64() 604 _mm512_mask_or_epi32(__m512i __src, __mmask16 __k, __m512i __a, __m512i __b) in _mm512_mask_or_epi32() argument 606 return (__m512i)__builtin_ia32_selectd_512((__mmask16)__k, in _mm512_mask_or_epi32() [all …]
|