Lines Matching refs:residuals
144 bool operator()(const double* x0, double* residuals) const { in operator()
145 return functor_(x0, residuals); in operator()
150 double* residuals) const { in operator()
151 return functor_(x0, x1, residuals); in operator()
157 double* residuals) const { in operator()
158 return functor_(x0, x1, x2, residuals); in operator()
165 double* residuals) const { in operator()
166 return functor_(x0, x1, x2, x3, residuals); in operator()
174 double* residuals) const { in operator()
175 return functor_(x0, x1, x2, x3, x4, residuals); in operator()
184 double* residuals) const { in operator()
185 return functor_(x0, x1, x2, x3, x4, x5, residuals); in operator()
195 double* residuals) const { in operator()
196 return functor_(x0, x1, x2, x3, x4, x5, x6, residuals); in operator()
207 double* residuals) const { in operator()
208 return functor_(x0, x1, x2, x3, x4, x5, x6, x7, residuals); in operator()
220 double* residuals) const { in operator()
221 return functor_(x0, x1, x2, x3, x4, x5, x6, x7, x8, residuals); in operator()
234 double* residuals) const { in operator()
235 return functor_(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, residuals); in operator()
239 bool operator()(const T* x0, T* residuals) const { in operator()
240 return functor_(x0, residuals); in operator()
246 T* residuals) const { in operator()
247 return functor_(x0, x1, residuals); in operator()
254 T* residuals) const { in operator()
255 return functor_(x0, x1, x2, residuals); in operator()
263 T* residuals) const { in operator()
264 return functor_(x0, x1, x2, x3, residuals); in operator()
273 T* residuals) const { in operator()
274 return functor_(x0, x1, x2, x3, x4, residuals); in operator()
284 T* residuals) const { in operator()
285 return functor_(x0, x1, x2, x3, x4, x5, residuals); in operator()
296 T* residuals) const { in operator()
297 return functor_(x0, x1, x2, x3, x4, x5, x6, residuals); in operator()
309 T* residuals) const { in operator()
310 return functor_(x0, x1, x2, x3, x4, x5, x6, x7, residuals); in operator()
323 T* residuals) const { in operator()
324 return functor_(x0, x1, x2, x3, x4, x5, x6, x7, x8, residuals); in operator()
338 T* residuals) const { in operator()
339 return functor_(x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, residuals); in operator()