Lines Matching refs:calls
48 BallPointStuff() : calls(0), count(0) {} in BallPointStuff()
49 BallPointStuff(const VectorType &inP) : p(inP), calls(0), count(0) {} in BallPointStuff()
52 bool intersectVolume(const BoxType &r) { ++calls; return r.contains(p); } in intersectVolume()
54 ++calls; in intersectObject()
60 …bool intersectVolumeVolume(const BoxType &r1, const BoxType &r2) { ++calls; return !(r1.intersecti… in intersectVolumeVolume()
61 …bool intersectVolumeObject(const BoxType &r, const BallType &b) { ++calls; return r.squaredExterio… in intersectVolumeObject()
62 …bool intersectObjectVolume(const BallType &b, const BoxType &r) { ++calls; return r.squaredExterio… in intersectObjectVolume()
64 ++calls; in intersectObjectObject()
69 …bool intersectVolumeObject(const BoxType &r, const VectorType &v) { ++calls; return r.contains(v);… in intersectVolumeObject()
71 ++calls; in intersectObjectObject()
77 double minimumOnVolume(const BoxType &r) { ++calls; return r.squaredExteriorDistance(p); } in minimumOnVolume()
78 …double minimumOnObject(const BallType &b) { ++calls; return (std::max)(0., (b.center - p).squaredN… in minimumOnObject()
79 …double minimumOnVolumeVolume(const BoxType &r1, const BoxType &r2) { ++calls; return r1.squaredExt… in minimumOnVolumeVolume()
80 …double minimumOnVolumeObject(const BoxType &r, const BallType &b) { ++calls; return SQR((std::max)… in minimumOnVolumeObject()
81 …double minimumOnObjectVolume(const BallType &b, const BoxType &r) { ++calls; return SQR((std::max)… in minimumOnObjectVolume()
82 …double minimumOnObjectObject(const BallType &b1, const BallType &b2){ ++calls; return SQR((std::ma… in minimumOnObjectObject()
83 …double minimumOnVolumeObject(const BoxType &r, const VectorType &v) { ++calls; return r.squaredExt… in minimumOnVolumeObject()
84 …double minimumOnObjectObject(const BallType &b, const VectorType &v){ ++calls; return SQR((std::ma… in minimumOnObjectObject()
87 int calls; member