Home
last modified time | relevance | path

Searched refs:__table (Results 1 – 15 of 15) sorted by relevance

/OK3568_Linux_fs/u-boot/arch/arm/mach-uniphier/
H A Dsoc-info.h28 #define UNIPHIER_DEFINE_SOCDATA_FUNC(__func_name, __table) \ argument
29 static typeof(&__table[0]) __func_name(void) \
35 for (i = 0; i < ARRAY_SIZE(__table); i++) { \
36 if (__table[i].soc_id == soc_id) \
37 return &__table[i]; \
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/ext/
H A Dhash_set228 typedef __hash_table<value_type, hasher, key_equal, allocator_type> __table;
230 __table __table_;
233 typedef typename __table::pointer pointer;
234 typedef typename __table::const_pointer const_pointer;
235 typedef typename __table::size_type size_type;
236 typedef typename __table::difference_type difference_type;
238 typedef typename __table::const_iterator iterator;
239 typedef typename __table::const_iterator const_iterator;
450 typedef __hash_table<value_type, hasher, key_equal, allocator_type> __table;
452 __table __table_;
[all …]
H A Dhash_map486 __key_equal, __allocator_type> __table;
488 __table __table_;
490 typedef typename __table::__node_pointer __node_pointer;
491 typedef typename __table::__node_const_pointer __node_const_pointer;
492 typedef typename __table::__node_traits __node_traits;
493 typedef typename __table::__node_allocator __node_allocator;
494 typedef typename __table::__node __node;
504 typedef __hash_map_iterator<typename __table::iterator> iterator;
505 typedef __hash_map_const_iterator<typename __table::const_iterator> const_iterator;
760 __key_equal, __allocator_type> __table;
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ext/
H A Dhash_set228 typedef __hash_table<value_type, hasher, key_equal, allocator_type> __table;
230 __table __table_;
233 typedef typename __table::pointer pointer;
234 typedef typename __table::const_pointer const_pointer;
235 typedef typename __table::size_type size_type;
236 typedef typename __table::difference_type difference_type;
238 typedef typename __table::const_iterator iterator;
239 typedef typename __table::const_iterator const_iterator;
450 typedef __hash_table<value_type, hasher, key_equal, allocator_type> __table;
452 __table __table_;
[all …]
H A Dhash_map486 __key_equal, __allocator_type> __table;
488 __table __table_;
490 typedef typename __table::__node_pointer __node_pointer;
491 typedef typename __table::__node_const_pointer __node_const_pointer;
492 typedef typename __table::__node_traits __node_traits;
493 typedef typename __table::__node_allocator __node_allocator;
494 typedef typename __table::__node __node;
504 typedef __hash_map_iterator<typename __table::iterator> iterator;
505 typedef __hash_map_const_iterator<typename __table::const_iterator> const_iterator;
760 __key_equal, __allocator_type> __table;
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/
H A Dunordered_map866 __key_equal, __allocator_type> __table;
868 __table __table_;
870 typedef typename __table::_NodeTypes _NodeTypes;
871 typedef typename __table::__node_pointer __node_pointer;
872 typedef typename __table::__node_const_pointer __node_const_pointer;
873 typedef typename __table::__node_traits __node_traits;
874 typedef typename __table::__node_allocator __node_allocator;
875 typedef typename __table::__node __node;
880 static_assert((is_same<typename __table::__container_value_type, value_type>::value), "");
881 static_assert((is_same<typename __table::__node_value_type, __value_type>::value), "");
[all …]
H A Dunordered_set397 typedef __hash_table<value_type, hasher, key_equal, allocator_type> __table;
399 __table __table_;
402 typedef typename __table::pointer pointer;
403 typedef typename __table::const_pointer const_pointer;
404 typedef typename __table::size_type size_type;
405 typedef typename __table::difference_type difference_type;
407 typedef typename __table::const_iterator iterator;
408 typedef typename __table::const_iterator const_iterator;
409 typedef typename __table::const_local_iterator local_iterator;
410 typedef typename __table::const_local_iterator const_local_iterator;
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/
H A Dunordered_map866 __key_equal, __allocator_type> __table;
868 __table __table_;
870 typedef typename __table::_NodeTypes _NodeTypes;
871 typedef typename __table::__node_pointer __node_pointer;
872 typedef typename __table::__node_const_pointer __node_const_pointer;
873 typedef typename __table::__node_traits __node_traits;
874 typedef typename __table::__node_allocator __node_allocator;
875 typedef typename __table::__node __node;
880 static_assert((is_same<typename __table::__container_value_type, value_type>::value), "");
881 static_assert((is_same<typename __table::__node_value_type, __value_type>::value), "");
[all …]
H A Dunordered_set397 typedef __hash_table<value_type, hasher, key_equal, allocator_type> __table;
399 __table __table_;
402 typedef typename __table::pointer pointer;
403 typedef typename __table::const_pointer const_pointer;
404 typedef typename __table::size_type size_type;
405 typedef typename __table::difference_type difference_type;
407 typedef typename __table::const_iterator iterator;
408 typedef typename __table::const_iterator const_iterator;
409 typedef typename __table::const_local_iterator local_iterator;
410 typedef typename __table::const_local_iterator const_local_iterator;
[all …]
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/experimental/
H A Dfunctional155 std::unordered_map<_Key, _Value, _Hash, _BinaryPredicate> __table;
160 : __default_value_(__default), __table(__sz, __hf, __pred) {}
165 __table [__key] = __val; // Would skip_.insert (val) be better here?
171 auto __it = __table.find (__key);
172 return __it == __table.end() ? __default_value_ : __it->second;
186 skip_map __table;
192 std::fill_n(__table.begin(), __table.size(), __default);
198 __table[static_cast<unsigned_key_type>(__key)] = __val;
204 return __table[static_cast<unsigned_key_type>(__key)];
/OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/experimental/
H A Dfunctional155 std::unordered_map<_Key, _Value, _Hash, _BinaryPredicate> __table;
160 : __default_value_(__default), __table(__sz, __hf, __pred) {}
165 __table [__key] = __val; // Would skip_.insert (val) be better here?
171 auto __it = __table.find (__key);
172 return __it == __table.end() ? __default_value_ : __it->second;
186 skip_map __table;
192 std::fill_n(__table.begin(), __table.size(), __default);
198 __table[static_cast<unsigned_key_type>(__key)] = __val;
204 return __table[static_cast<unsigned_key_type>(__key)];
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/bits/
H A Dlocale_facets.h718 ctype(const mask* __table = 0, bool __del = false, size_t __refs = 0); in _GLIBCXX_VISIBILITY()
731 ctype(__c_locale __cloc, const mask* __table = 0, bool __del = false, in _GLIBCXX_VISIBILITY()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/bits/
H A Dlocale_facets.h718 ctype(const mask* __table = 0, bool __del = false, size_t __refs = 0); in _GLIBCXX_VISIBILITY()
731 ctype(__c_locale __cloc, const mask* __table = 0, bool __del = false, in _GLIBCXX_VISIBILITY()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/pstl/
H A Dalgorithm_impl.h1749 …_ReduceType __table[] = {__broken, __broken, __broken, __broken, __broken, __all_tr… in __pattern_is_partitioned()
1755 [&__pred, &__table, __is_vector](_ForwardIterator __i, _ForwardIterator __j, in __pattern_is_partitioned()
1801 return (__value == -1) ? __res : __table[__value * 4 + __res]; in __pattern_is_partitioned()
1804 [&__table](_ReduceType __val1, _ReduceType __val2) -> _ReduceType { in __pattern_is_partitioned()
1810 return __table[__val1 * 4 + __val2]; in __pattern_is_partitioned()
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/pstl/
H A Dalgorithm_impl.h1749 …_ReduceType __table[] = {__broken, __broken, __broken, __broken, __broken, __all_tr… in __pattern_is_partitioned()
1755 [&__pred, &__table, __is_vector](_ForwardIterator __i, _ForwardIterator __j, in __pattern_is_partitioned()
1801 return (__value == -1) ? __res : __table[__value * 4 + __res]; in __pattern_is_partitioned()
1804 [&__table](_ReduceType __val1, _ReduceType __val2) -> _ReduceType { in __pattern_is_partitioned()
1810 return __table[__val1 * 4 + __val2]; in __pattern_is_partitioned()