/third_party/boost/boost/math/differentiation/ |
D | lanczos_smoothing.hpp | 267 m_f.resize(interior.size()); 270 m_f[j] = static_cast<Real>(interior[j])/m_dt; 275 m_f = detail::interior_velocity_filter<Real>(n, approximation_order); 276 for (auto & x : m_f) 318 m_f.resize(n+1); 319 for (std::size_t i = 0; i < m_f.size(); ++i) 321 m_f[i] = static_cast<Real>(f[i+n])/(m_dt*m_dt); 340 m_f.resize(n+1); 341 for (std::size_t i = 0; i < m_f.size(); ++i) 343 m_f[i] = f[i+n]/(m_dt*m_dt); [all …]
|
/third_party/boost/boost/iterator/ |
D | function_output_iterator.hpp | 32 : m_f(f) {} in function_output_iterator() 35 output_proxy(UnaryFunction& f) : m_f(f) { } in output_proxy() 37 m_f(value); in operator =() 40 UnaryFunction& m_f; member 42 output_proxy operator*() { return output_proxy(m_f); } in operator *() 46 UnaryFunction m_f; member in boost::iterators::function_output_iterator
|
D | transform_iterator.hpp | 92 : super_t(x), m_f(f) { } in transform_iterator() 118 : super_t(t.base()), m_f(t.functor()) in transform_iterator() 122 { return m_f; } in functor() 126 { return m_f(*this->base()); } in dereference() 130 UnaryFunc m_f; member in boost::iterators::transform_iterator
|
/third_party/boost/libs/iterator/doc/ |
D | func_output_iter_ref.rst | 31 UnaryFunction m_f; // exposition only 57 with ``m_f`` constructed from ``f``. 63 is equivalent to ``m_f(t)`` for all ``t``.
|
D | transform_iterator_ref.rst | 38 UnaryFunction m_f; // exposition only 125 :Returns: An instance of ``transform_iterator`` with ``m_f`` 131 :Returns: An instance of ``transform_iterator`` with ``m_f`` 144 :Returns: An instance of ``transform_iterator`` with ``m_f`` 152 :Returns: ``m_f`` 162 :Returns: ``m_f(*m_iterator)``
|
D | make_transform_iterator.rst | 11 :Returns: An instance of ``transform_iterator<UnaryFunction, Iterator>`` with ``m_f`` 22 :Returns: An instance of ``transform_iterator<UnaryFunction, Iterator>`` with ``m_f``
|
/third_party/mesa3d/src/panfrost/lib/ |
D | pan_attributes.c | 107 double m_f = ceil(t_f / hw_divisor_d); in panfrost_compute_magic_divisor() local 108 unsigned m = m_f; in panfrost_compute_magic_divisor()
|
/third_party/boost/libs/iterator/doc/quickbook/ |
D | transform_iterator.qbk | 83 UnaryFunction m_f; // exposition only 169 [*Returns: ] An instance of `transform_iterator` with `m_f` 174 [*Returns: ] An instance of `transform_iterator` with `m_f` 184 [*Returns: ] An instance of `transform_iterator` with `m_f` 192 [*Returns: ] `m_f` 202 [*Returns: ] `m_f(*m_iterator)`
|
D | function_output_iterator.qbk | 65 UnaryFunction m_f; // exposition only 82 with `m_f` constructed from `f`. 87 is equivalent to `m_f(t)` for all `t`.
|
/third_party/boost/libs/safe_numerics/test/ |
D | test_interval.cpp | 24 const fptr<T> m_f; member 74 const T result = opi.m_f(r1, r2); in test_type_operator() 89 const T resultx = opi.m_f(r1, r2); in test_type_operator()
|
/third_party/boost/libs/math/test/ |
D | functor.hpp | 196 negate_type(F f) : m_f(f){} in negate_type() 201 return -Real(m_f(row)); in operator ()() 204 F m_f; member
|
/third_party/boost/libs/numeric/odeint/examples/ |
D | molecular_dynamics_cells.cpp | 74 F m_f; member 75 conservative_interaction( F const &f = F() ) : m_f( f ) { } in conservative_interaction() 81 double f = m_f( r ); in operator ()()
|
/third_party/boost/libs/python/src/object/ |
D | function.cpp | 574 , m_f(f) in bind_return() 581 m_result = m_f->call(m_args, m_keywords); in operator ()() 586 function const* m_f; member
|
/third_party/boost/libs/date_time/test/gregorian/ |
D | testdate_input_facet.cpp | 452 std::string m_f[] = {"Januar","Februar","Marz","April", in main() local 464 months_full.assign(m_f, m_f+12); in main()
|
/third_party/skia/third_party/externals/wuffs/release/c/ |
D | wuffs-v0.3.c | 9706 FILE* m_f; 39206 FileInput::FileInput(FILE* f) : m_f(f) {} in FileInput() 39210 if (!m_f) { in CopyIn() 39218 size_t n = fread(dst->writer_pointer(), 1, dst->writer_length(), m_f); in CopyIn() 39220 dst->meta.closed = feof(m_f); in CopyIn() 39221 if (ferror(m_f)) { in CopyIn()
|