/third_party/mindspore/mindspore/core/mindrt/include/async/ |
D | apply.h | 24 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/ |
D | utility.h | 75 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/ |
D | utility.h | 75 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/ |
D | pack_options.hpp | 139 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/ |
D | index_sequence.hpp | 27 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/ |
D | cpp_future.hpp | 19 template<std::size_t... Ints> 26 return sizeof...(Ints); in size()
|
/third_party/flutter/skia/include/private/ |
D | SkTLogic.h | 44 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/ |
D | FieldMaskUtil.java | 39 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/ |
D | AMDGPUBaseInfo.cpp | 589 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/ |
D | simple_cxx11_metaprogramming.adoc | 753 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/ |
D | strutil_unittest.cc | 809 TEST(StrCat, Ints) { in TEST() argument
|
/third_party/flutter/skia/third_party/externals/wuffs/lib/rac/ |
D | writer.go | 721 sort.Ints(resList)
|
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/ |
D | str_cat_test.cc | 39 TEST(StrCat, Ints) { in TEST() argument
|
/third_party/abseil-cpp/absl/strings/ |
D | str_cat_test.cc | 39 TEST(StrCat, Ints) { in TEST() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
D | Record.cpp | 2275 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/ |
D | json.hpp | 2686 template<std::size_t... Ints> 2693 return sizeof...(Ints); in size()
|