Searched refs:i_max (Results 1 – 6 of 6) sorted by relevance
/third_party/boost/boost/math/differentiation/ |
D | autodiff_cpp11.hpp | 143 size_t const i_max = order < order_sum ? order : order_sum; in apply_coefficients_nonhorner() local 144 for (size_t i = 1; i <= i_max; ++i) { in apply_coefficients_nonhorner() 191 size_t const i_max = order < order_sum ? order : order_sum; in apply_derivatives_nonhorner() local 192 for (size_t i = 1; i <= i_max; ++i) { in apply_derivatives_nonhorner() 216 size_t const i_max = m0 + m1 < Order ? Order - (m0 + m1) : 0; in epsilon_multiply_cpp11() local 218 for (size_t i = 0, j = Order; i <= i_max; ++i, --j) in epsilon_multiply_cpp11() 235 size_t const i_max = m0 + m1 < Order ? Order - (m0 + m1) : 0; in epsilon_multiply_cpp11() local 237 for (size_t i = 0, j = Order; i <= i_max; ++i, --j) in epsilon_multiply_cpp11()
|
D | autodiff.hpp | 1085 size_t const i_max = (std::min)(order, order_sum); in apply_coefficients_nonhorner() local 1086 for (size_t i = 1; i <= i_max; ++i) { in apply_coefficients_nonhorner() 1111 size_t const i_max = (std::min)(order, order_sum); in apply_coefficients_nonhorner() local 1113 size_t const i_max = order < order_sum ? order : order_sum; in apply_coefficients_nonhorner() local 1115 for (size_t i = 1; i <= i_max; ++i) { in apply_coefficients_nonhorner() 1177 size_t const i_max = (std::min)(order, order_sum); in apply_derivatives_nonhorner() local 1178 for (size_t i = 1; i <= i_max; ++i) { in apply_derivatives_nonhorner() 1204 size_t const i_max = (std::min)(order, order_sum); in apply_derivatives_nonhorner() local 1206 size_t const i_max = order < order_sum ? order : order_sum; in apply_derivatives_nonhorner() local 1208 for (size_t i = 1; i <= i_max; ++i) { in apply_derivatives_nonhorner() [all …]
|
/third_party/boost/boost/math/interpolators/detail/ |
D | vector_barycentric_rational_detail.hpp | 70 int64_t i_max = k; in calculate_weights() local 73 i_max = n - approximation_order - 1; in calculate_weights() 76 for(int64_t i = i_min; i <= i_max; ++i) in calculate_weights()
|
D | barycentric_rational_detail.hpp | 109 int64_t i_max = k; in calculate_weights() local 112 i_max = n - approximation_order - 1; in calculate_weights() 115 for(int64_t i = i_min; i <= i_max; ++i) in calculate_weights()
|
/third_party/node/deps/npm/node_modules/cli-table3/src/ |
D | layout-manager.js | 56 let i_max = Math.min(rows.length - 1, y); 58 for (let i = 0; i <= i_max; i++) {
|
/third_party/curl/lib/vtls/ |
D | openssl.c | 493 size_t i, i_max; in ossl_seed() local 494 for(i = 0, i_max = len / sizeof(struct curltime); i < i_max; ++i) { in ossl_seed()
|