Home
last modified time | relevance | path

Searched refs:Ints (Results 1 – 16 of 16) sorted by relevance

/third_party/mindspore/mindspore/core/mindrt/include/async/
Dapply.h24 template <typename T, T... Ints>
26 static constexpr std::size_t Size() noexcept { return sizeof...(Ints); } in Size()
31 template <typename T, std::size_t N, std::size_t... Ints>
32 struct IntegerSequence : public IntegerSequence<T, N - 1, N - 1, Ints...> {};
34 template <typename T, std::size_t... Ints>
35 struct IntegerSequence<T, 0, Ints...> {
36 using type = IntegerSequenceBase<T, Ints...>;
44 template <std::size_t... Ints>
45 using index_sequence = IntegerSequenceBase<std::size_t, Ints...>;
53 template <typename Func, typename Tuple, std::size_t... Ints>
[all …]
/third_party/abseil-cpp/absl/utility/
Dutility.h75 template <typename T, T... Ints>
78 static constexpr size_t size() noexcept { return sizeof...(Ints); } in size()
86 template <size_t... Ints>
87 using index_sequence = integer_sequence<size_t, Ints...>;
95 template <typename T, T... Ints, size_t SeqSize>
96 struct Extend<integer_sequence<T, Ints...>, SeqSize, 0> {
97 using type = integer_sequence<T, Ints..., (Ints + SeqSize)...>;
100 template <typename T, T... Ints, size_t SeqSize>
101 struct Extend<integer_sequence<T, Ints...>, SeqSize, 1> {
102 using type = integer_sequence<T, Ints..., (Ints + SeqSize)..., 2 * SeqSize>;
/third_party/skia/third_party/externals/abseil-cpp/absl/utility/
Dutility.h75 template <typename T, T... Ints>
78 static constexpr size_t size() noexcept { return sizeof...(Ints); } in size()
86 template <size_t... Ints>
87 using index_sequence = integer_sequence<size_t, Ints...>;
95 template <typename T, T... Ints, size_t SeqSize>
96 struct Extend<integer_sequence<T, Ints...>, SeqSize, 0> {
97 using type = integer_sequence<T, Ints..., (Ints + SeqSize)...>;
100 template <typename T, T... Ints, size_t SeqSize>
101 struct Extend<integer_sequence<T, Ints...>, SeqSize, 1> {
102 using type = integer_sequence<T, Ints..., (Ints + SeqSize)..., 2 * SeqSize>;
/third_party/boost/boost/intrusive/
Dpack_options.hpp139 template<int ...Ints, class ...Types>
140 typelist<typename typelist_element<(sizeof...(Types) - 1) - Ints, typelist<Types...> >::type...>
141 inverted_typelist(index_tuple<Ints...>, typelist<Types...>)
143 …return typelist<typename typelist_element<(sizeof...(Types) - 1) - Ints, typelist<Types...> >::typ…
161 template<class Typelist, int ...Ints>
162 struct invert_typelist_impl< Typelist, index_tuple<Ints...> >
166 <typename typelist_element<last_idx - Ints, Typelist>::type...> type;
/third_party/boost/boost/fusion/support/detail/
Dindex_sequence.hpp27 template <std::size_t ...Ints>
28 using index_sequence = std::index_sequence<Ints...>;
36 template <std::size_t ...Ints>
43 { return sizeof...(Ints); }
/third_party/json/include/nlohmann/detail/meta/
Dcpp_future.hpp19 template<std::size_t... Ints>
26 return sizeof...(Ints); in size()
/third_party/flutter/skia/include/private/
DSkTLogic.h44 template <std::size_t... Ints> struct index_sequence {
47 static constexpr std::size_t size() noexcept { return sizeof...(Ints); } in size()
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
DFieldMaskUtil.java39 import com.google.common.primitives.Ints;
149 return fromFieldNumbers(type, Ints.asList(fieldNumbers)); in fromFieldNumbers()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/Utils/
DAMDGPUBaseInfo.cpp589 std::pair<int, int> Ints = Default; in getIntegerPairAttribute() local
591 if (Strs.first.trim().getAsInteger(0, Ints.first)) { in getIntegerPairAttribute()
595 if (Strs.second.trim().getAsInteger(0, Ints.second)) { in getIntegerPairAttribute()
602 return Ints; in getIntegerPairAttribute()
/third_party/boost/libs/mp11/doc/article/
Dsimple_cxx11_metaprogramming.adoc753 template<class T, T... Ints> struct integer_sequence
759 template<class T, T... Ints> struct next_integer_sequence<integer_sequence<T, Ints...>>
761 using type = integer_sequence<T, Ints..., sizeof...(Ints)>;
780 template<std::size_t... Ints>
781 using index_sequence = integer_sequence<std::size_t, Ints...>;
/third_party/protobuf/src/google/protobuf/stubs/
Dstrutil_unittest.cc809 TEST(StrCat, Ints) { in TEST() argument
/third_party/flutter/skia/third_party/externals/wuffs/lib/rac/
Dwriter.go721 sort.Ints(resList)
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dstr_cat_test.cc39 TEST(StrCat, Ints) { in TEST() argument
/third_party/abseil-cpp/absl/strings/
Dstr_cat_test.cc39 TEST(StrCat, Ints) { in TEST() argument
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
DRecord.cpp2275 std::vector<int64_t> Ints; in getValueAsListOfInts() local
2278 Ints.push_back(II->getValue()); in getValueAsListOfInts()
2285 return Ints; in getValueAsListOfInts()
/third_party/json/single_include/nlohmann/
Djson.hpp2686 template<std::size_t... Ints>
2693 return sizeof...(Ints); in size()