Home
last modified time | relevance | path

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

/third_party/abseil-cpp/absl/time/internal/cctz/include/cctz/
Dcivil_time_detail.h46 using diff_t = std::int_fast64_t; variable
107 CONSTEXPR_F fields n_day(year_t y, month_t m, diff_t d, diff_t cd, hour_t hh, in n_day()
168 CONSTEXPR_F fields n_mon(year_t y, diff_t m, diff_t d, diff_t cd, hour_t hh, in n_mon()
180 CONSTEXPR_F fields n_hour(year_t y, diff_t m, diff_t d, diff_t cd, diff_t hh, in n_hour()
190 CONSTEXPR_F fields n_min(year_t y, diff_t m, diff_t d, diff_t hh, diff_t ch, in n_min()
191 diff_t mm, second_t ss) noexcept { in n_min()
201 CONSTEXPR_F fields n_sec(year_t y, diff_t m, diff_t d, diff_t hh, diff_t mm, in n_sec()
202 diff_t ss) noexcept { in n_sec()
221 diff_t cm = ss / 60; in n_sec()
236 CONSTEXPR_F fields step(second_tag, fields f, diff_t n) noexcept { in step()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/include/cctz/
Dcivil_time_detail.h46 using diff_t = std::int_fast64_t; variable
107 CONSTEXPR_F fields n_day(year_t y, month_t m, diff_t d, diff_t cd, hour_t hh, in n_day()
168 CONSTEXPR_F fields n_mon(year_t y, diff_t m, diff_t d, diff_t cd, hour_t hh, in n_mon()
180 CONSTEXPR_F fields n_hour(year_t y, diff_t m, diff_t d, diff_t cd, diff_t hh, in n_hour()
190 CONSTEXPR_F fields n_min(year_t y, diff_t m, diff_t d, diff_t hh, diff_t ch, in n_min()
191 diff_t mm, second_t ss) noexcept { in n_min()
201 CONSTEXPR_F fields n_sec(year_t y, diff_t m, diff_t d, diff_t hh, diff_t mm, in n_sec()
202 diff_t ss) noexcept { in n_sec()
221 diff_t cm = ss / 60; in n_sec()
236 CONSTEXPR_F fields step(second_tag, fields f, diff_t n) noexcept { in step()
[all …]
/third_party/boost/libs/range/test/
Dstring.cpp136 typedef boost::range_difference<std::string>::type diff_t; in check_char() typedef
146 const diff_t my_string_length = 14; in check_char()
170 const diff_t sz = str_size(char_s); in check_char()
174 BOOST_CHECK_EQUAL( sz, static_cast<diff_t>(std::char_traits<char>::length(char_s)) ); in check_char()
182 …BOOST_CHECK_EQUAL( str_size( my_string ), static_cast<diff_t>(std::char_traits<char>::length(my_st… in check_char()
238 typedef boost::range_difference<std::wstring>::type diff_t; in check_string() typedef
239 const diff_t sz = str_size( char_ws ); in check_string()
243 BOOST_CHECK_EQUAL( sz, static_cast<diff_t>(std::char_traits<wchar_t>::length(char_ws)) ); in check_string()
/third_party/boost/libs/range/test/algorithm_test/
Dcount_if.cpp36 …_TYPENAME std::iterator_traits<BOOST_DEDUCED_TYPENAME Container::iterator>::difference_type diff_t; in test_count_if_impl() typedef
76 … BOOST_CHECK_EQUAL( static_cast<diff_t>(cont.size()), boost::count_if(cont, true_predicate()) ); in test_count_if_impl()
77 …BOOST_CHECK_EQUAL( static_cast<diff_t>(cont.size()), boost::count_if(cref_cont, true_predicate()) … in test_count_if_impl()
78 …BOOST_CHECK_EQUAL( static_cast<diff_t>(cont.size()), boost::count_if(boost::make_iterator_range(co… in test_count_if_impl()
/third_party/boost/libs/stl_interfaces/example/
Dreverse_iterator.cpp36 using diff_t = typename std::iterator_traits<BidiIter>::difference_type; typedef
61 diff_t operator-(reverse_iterator other) const in operator -()
65 reverse_iterator & operator+=(diff_t n) in operator +=()
/third_party/boost/boost/graph/
Dminimum_degree_ordering.hpp304 diff_t; typedef in boost::detail::mmd_impl
310 typedef detail::Stacks< diff_t > Workspace;
313 typedef Numbering< InversePermutationMap, diff_t, vertex_t,
316 typedef degreelists_marker< diff_t, vertex_t, VertexIndexMap >
318 typedef Marker< diff_t, vertex_t, VertexIndexMap > MarkerP;
687 diff_t size = supernode_size[get(index_vertex_map, i)]; in build_permutation()
701 diff_t parent = i; in build_permutation()
707 diff_t root = parent; in build_permutation()
708 diff_t num = prev[root - 1] + 1; in build_permutation()
713 diff_t next_node = -prev[parent - 1]; in build_permutation()
[all …]
Dbandwidth.hpp78 typename detail::numeric_traits< size_type >::difference_type diff_t; in edgesum() typedef
83 diff_t f_u = get(index_map, source(*i, g)); in edgesum()
84 diff_t f_v = get(index_map, target(*i, g)); in edgesum()
/third_party/boost/boost/math/differentiation/
Dautodiff.hpp733 using diff_t = typename std::array<RealType, Order + 1>::difference_type; in operator *=() typedef
737 v[j] = std::inner_product(v.cbegin(), v.cend() - diff_t(i), cr.v.crbegin() + diff_t(i), zero); in operator *=()
740 v[j] = std::inner_product(cr.v.cbegin(), cr.v.cend(), v.crbegin() + diff_t(i), zero); in operator *=()
742 …v[j] = std::inner_product(cr.v.cbegin(), cr.v.cbegin() + diff_t(j + 1), v.crbegin() + diff_t(i), z… in operator *=()
755 using diff_t = typename std::array<RealType, Order + 1>::difference_type; in operator /=() typedef
761 … cr.v.cbegin() + 1, cr.v.cend() - diff_t(j), v.crbegin() + diff_t(k), zero)) /= cr.v.front(); in operator /=()
765 … cr.v.cbegin() + 1, cr.v.cend() - diff_t(j), v.crbegin() + diff_t(k), zero)) /= cr.v.front(); in operator /=()
854 using diff_t = typename std::array<RealType, Order + 1>::difference_type; in operator *() typedef
859 …retval.v[i] = std::inner_product(v.cbegin(), v.cend() - diff_t(j), cr.v.crbegin() + diff_t(k), zer… in operator *()
862 …retval.v[i] = std::inner_product(cr.v.cbegin(), cr.v.cend() - diff_t(j), v.crbegin() + diff_t(k), … in operator *()
[all …]
/third_party/boost/boost/gil/
Dalgorithm.hpp190 using diff_t = typename std::iterator_traits<iterator_from_2d<IL>>::difference_type; typedef
191 BOOST_FORCEINLINE void operator()(iterator_from_2d<IL> src, diff_t n, O dst) const { in operator ()()
195 diff_t l=src.width()-src.x_pos(); in operator ()()
196 diff_t numToCopy=(n<l ? n:l); in operator ()()
208 using diff_t = typename std::iterator_traits<I>::difference_type; typedef
209 BOOST_FORCEINLINE void operator()(I src, diff_t n, iterator_from_2d<OL> dst) const { in operator ()()
213 diff_t l=dst.width()-dst.x_pos(); in operator ()()
214 diff_t numToCopy=(n<l ? n:l); in operator ()()
226 using diff_t = typename iterator_from_2d<IL>::difference_type; typedef
227 …BOOST_FORCEINLINE void operator()(iterator_from_2d<IL> src, diff_t n, iterator_from_2d<OL> dst) co… in operator ()()
[all …]
/third_party/boost/boost/sort/pdqsort/
Dpdqsort.hpp400 typedef typename std::iterator_traits<Iter>::difference_type diff_t; in pdqsort_loop() typedef
404 diff_t size = end - begin; in pdqsort_loop()
414 diff_t s2 = size / 2; in pdqsort_loop()
441 diff_t l_size = pivot_pos - begin; in pdqsort_loop()
442 diff_t r_size = end - (pivot_pos + 1); in pdqsort_loop()
/third_party/boost/boost/spirit/home/classic/iterator/
Dfixed_size_queue.hpp104 typedef typename base_t::difference_type diff_t;
121 return diff_t(pos2 - pos1);
123 return -diff_t(pos1 - pos2);
/third_party/abseil-cpp/absl/time/
Dcivil_time.h360 using civil_diff_t = time_internal::cctz::diff_t;
/third_party/skia/third_party/externals/abseil-cpp/absl/time/
Dcivil_time.h360 using civil_diff_t = time_internal::cctz::diff_t;
/third_party/boost/boost/stl_interfaces/
Diterator_interface.hpp631 iter, category, value_t, ref, ptr, diff_t) \ argument
653 diff_t>::value, \
/third_party/boost/libs/range/test/adaptor_test/
Dstrided.cpp51 diff_t BOOST_RANGE_UNUSED; in strided_test_impl()