Home | History | Annotate | Download | only in src

Lines Matching refs:accum_type

65   typedef typename __deref::accum_type accum_type;
88 accum_type maxvar = -std::numeric_limits < accum_type >::max();
91 accum_type mean = 0;
95 accum_type var = 0;
97 accum_type diff = accum_type(deref(ctor(*k), j)) - mean;
303 accum_type dist; // distance from d to query point
304 bbf_nn(const __valuetype & _p, accum_type _dist)
315 accum_type dist; // minimum distance from bounds to query point
316 bbf_node(int _node, accum_type _dist)
354 accum_type distance(const __desctype * d, const __valuetype & p) const {
355 accum_type dist = 0;
357 accum_type diff = accum_type(d[j]) - accum_type(deref(p, j));
359 } return (accum_type) sqrt(dist);