| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/tao_tuple/28626e99/include/tao/tuple/ |
| H A D | tuple.hpp | 30 template< typename... Ts > 38 template< typename... Ts, typename A > 39 struct uses_allocator< tao::tuple< Ts... >, A > : true_type {}; 44 template< std::size_t I, typename... Ts > 46 const seq::type_by_index_t< I, Ts... >& get( const tuple< Ts... >& ) noexcept; 48 template< std::size_t I, typename... Ts > 50 seq::type_by_index_t< I, Ts... >& get( tuple< Ts... >& ) noexcept; 52 template< std::size_t I, typename... Ts > 54 seq::type_by_index_t< I, Ts... >&& get( const tuple< Ts... >&& ) noexcept; 263 template< std::size_t... Is, typename... Ts > [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/ |
| H A D | indexed_tuple.hpp | 10 template <class T, class... Ts> 13 template <class T, class... Ts> 14 struct TypeIndex<T, T, Ts...> : std::integral_constant<std::size_t, 0> {}; 16 template <class T, class U, class... Ts> 17 struct TypeIndex<T, U, Ts...> : std::integral_constant<std::size_t, 1 + TypeIndex<T, Ts...>::value>… 26 template <class... Is, class... Ts> 27 class IndexedTuple<TypeList<Is...>, TypeList<Ts...>> : public tuple_polyfill<Ts...> { 29 static_assert(sizeof...(Is) == sizeof...(Ts), "IndexedTuple size mismatch"); 31 using tuple_polyfill<Ts...>::tuple; 44 IndexedTuple<TypeList<Is..., Js...>, TypeList<Ts..., Us...>> [all …]
|
| H A D | type_list.hpp | 16 template <class T, class... Ts> 17 struct TypeCons<T, TypeList<Ts...>> { 18 using Type = TypeList<T, Ts...>; 29 template <template <class> class Predicate, class T, class... Ts> 30 struct TypeFilter<TypeList<T, Ts...>, Predicate> { 31 using Tail = typename TypeFilter<TypeList<Ts...>, Predicate>::Type;
|
| H A D | ignore.hpp | 15 template <class... Ts> void ignore(Ts&&...) {} in ignore() argument
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/testing/ |
| H A D | sysfs-fs-ext4 | 3 Contact: "Theodore Ts'o" <tytso@mit.edu> 12 Contact: "Theodore Ts'o" <tytso@mit.edu> 20 Contact: "Theodore Ts'o" <tytso@mit.edu> 27 Contact: "Theodore Ts'o" <tytso@mit.edu> 34 Contact: "Theodore Ts'o" <tytso@mit.edu> 42 Contact: "Theodore Ts'o" <tytso@mit.edu> 53 Contact: "Theodore Ts'o" <tytso@mit.edu> 61 Contact: "Theodore Ts'o" <tytso@mit.edu> 69 Contact: "Theodore Ts'o" <tytso@mit.edu> 77 Contact: "Theodore Ts'o" <tytso@mit.edu> [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/tao_tuple/28626e99/include/tao/seq/ |
| H A D | type_by_index.hpp | 49 template< std::size_t I, typename... Ts > 50 …impl::get_nth< make_index_sequence< I > >::deduce( std::declval< impl::wrapper< Ts >* >()... ) ) >; 52 template< std::size_t I, typename... Ts > 53 using type_by_index_t = typename type_by_index< I, Ts... >::type;
|
| H A D | make_integer_sequence.hpp | 76 template< typename... Ts > 77 using index_sequence_for = make_index_sequence< sizeof...( Ts ) >;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/math/ |
| H A D | minmax.hpp | 20 template <typename T, typename... Ts> 21 typename std::enable_if_t<std::is_arithmetic<T>::value, T> max(T a, T b, Ts... args) { in max() 35 template <typename T, typename... Ts> 36 typename std::enable_if_t<std::is_arithmetic<T>::value, T> min(T a, T b, Ts... args) { in min()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/core/ |
| H A D | ignore_unused.hpp | 16 template <typename... Ts> 17 BOOST_FORCEINLINE BOOST_CXX14_CONSTEXPR void ignore_unused(Ts const& ...) in ignore_unused() 20 template <typename... Ts>
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/ |
| H A D | data_driven_property_value.hpp | 58 template <class... Ts> 59 auto match(Ts&&... ts) const { in match() 60 return value.match(std::forward<Ts>(ts)...); in match()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/ |
| H A D | possibly_evaluated_property_value.hpp | 38 template <class... Ts> 39 auto match(Ts&&... ts) const { in match() 40 return value.match(std::forward<Ts>(ts)...); in match()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/variant/detail/ |
| H A D | substitute.hpp | 132 , typename... Ts 138 F<Ts...> 145 Ts, Dest, Source
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/protozero/1.5.2/include/protozero/ |
| H A D | pbf_builder.hpp | 98 template <typename... Ts> 99 void add_bytes_vectored(T tag, Ts&&... values) { in add_bytes_vectored() 100 pbf_writer::add_bytes_vectored(pbf_tag_type(tag), std::forward<Ts>(values)...); in add_bytes_vectored()
|
| H A D | pbf_writer.hpp | 534 template <typename... Ts> 535 void add_bytes_vectored(pbf_tag_type tag, Ts&&... values) { in add_bytes_vectored()
|
| /OK3568_Linux_fs/external/camera_engine_rkaiq/rkaiq/xcore/ |
| H A D | task_traits.h | 35 template <typename R, typename... Ts> 37 R operator()(Ts... args);
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/i18n/locales/ |
| H A D | ha_NG | 71 % &T<ts<<<Ts<<<TS 102 collating-element <Ts> from "Ts" 137 <Ts> <ts-digraph>;"<BASE><BASE>";"<CAP><MIN>";IGNORE
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/i18n/locales/ |
| H A D | ha_NG | 71 % &T<ts<<<Ts<<<TS 102 collating-element <Ts> from "Ts" 137 <Ts> <ts-digraph>;"<BASE><BASE>";"<CAP><MIN>";IGNORE
|
| /OK3568_Linux_fs/kernel/Documentation/filesystems/ |
| H A D | ext3.rst | 9 Andrew Morton, Alexander Viro, Ted Ts'o and Stephen Tweedie.
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/setserial/ |
| H A D | setserial_2.17.bb | 4 AUTHOR = "Theodore Ts'o <tytso@mit.edu>"
|
| /OK3568_Linux_fs/buildroot/package/e2fsprogs/ |
| H A D | 0001-libext2fs-add-sanity-check-to-extent-manipulation.patch | 22 Signed-off-by: Theodore Ts'o <tytso@mit.edu>
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/ |
| H A D | writing-bindings.rst | 4 DOs and DON'Ts for designing and writing Devicetree bindings
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm32/include/libcxx/include/ |
| H A D | compare | 34 template<class... Ts> 38 template<class... Ts> 39 using common_comparison_category_t = typename common_comparison_category<Ts...>::type;
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/export-ta_arm64/include/libcxx/include/ |
| H A D | compare | 34 template<class... Ts> 38 template<class... Ts> 39 using common_comparison_category_t = typename common_comparison_category<Ts...>::type;
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/nouveau/nvkm/engine/ce/fuc/ |
| H A D | com.fuc | 625 // Ts = Tys + Td 636 // Ot = ((Tz * nTy * nTx) + (Ty * nTx) + Tx) << Ts 646 // PITCH = (nTx - 1) << Ts
|
| /OK3568_Linux_fs/kernel/Documentation/translations/zh_CN/process/ |
| H A D | magic-number.rst | 30 Theodore Ts'o
|