HomeSort by relevance Sort by last modified time
    Searched defs:Distance (Results 1 - 20 of 20) sorted by null

  /external/chromium-trace/catapult/telemetry/telemetry/util/
color_histogram.py 17 """Earth mover's distance.
49 '%s pixel(s) left over after computing histogram distance.'
62 def Distance(self, other):
  /external/clang/unittests/AST/
ASTTypeTraitsTest.cpp 44 unsigned Distance = 1;
45 EXPECT_TRUE(DNT<Expr>().isBaseOf(DNT<Expr>(), &Distance));
46 EXPECT_EQ(0u, Distance);
48 EXPECT_TRUE(DNT<Stmt>().isBaseOf(DNT<IfStmt>(), &Distance));
49 EXPECT_EQ(1u, Distance);
51 Distance = 3;
52 EXPECT_TRUE(DNT<DeclaratorDecl>().isBaseOf(DNT<ParmVarDecl>(), &Distance));
53 EXPECT_EQ(2u, Distance);
  /external/webrtc/webrtc/modules/audio_processing/beamformer/
array_util.h 56 // Returns the minimum distance between any two Points in the given
78 float Distance(CartesianPoint<T> a, CartesianPoint<T> b) {
88 // radius: distance from the camera in meters.
98 T distance() const { return s[2]; } function in struct:webrtc::SphericalPoint
  /frameworks/base/media/mca/filterfw/native/core/
geometry.cpp 40 float Point::Distance(const Point& p0, const Point& p1) {
  /frameworks/base/media/mca/filterpacks/native/base/
geometry.cpp 39 float Point::Distance(const Point& p0, const Point& p1) {
  /external/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 43 unsigned Distance;
44 if (!MatcherKind.isBaseOf(To.MatcherKind, &Distance))
48 *Specificity = 100 - Distance;
  /external/pdfium/xfa/src/fxbarcode/datamatrix/
BC_DataMatrixDetector.cpp 211 FX_FLOAT corr = Distance(bottomLeft, bottomRight) / (FX_FLOAT)dimensionTop;
212 int32_t norm = Distance(topLeft, topRight);
217 corr = Distance(bottomLeft, topLeft) / (FX_FLOAT)dimensionRight;
218 norm = Distance(bottomRight, topRight);
258 FX_FLOAT corr = Distance(bottomLeft, bottomRight) / (FX_FLOAT)dimension;
259 int32_t norm = Distance(topLeft, topRight);
264 corr = Distance(bottomLeft, bottomRight) / (FX_FLOAT)dimension;
265 norm = Distance(bottomRight, topRight);
299 int32_t CBC_DataMatrixDetector::Distance(CBC_ResultPoint* a,
375 FX_FLOAT abDistance = (FX_FLOAT)Distance((CBC_ResultPoint*)(*patterns)[0],
    [all...]
  /external/skia/include/core/
SkPoint.h 241 /** Return the euclidian distance from (0,0) to the point
431 /** Returns the euclidian distance from (0,0) to (x,y)
446 /** Returns the euclidian distance between a and b
448 static SkScalar Distance(const SkPoint& a, const SkPoint& b) {
493 * Returns the squared distance to the infinite line between two pts. Also
502 * Returns the distance to the infinite line between two pts. Also
513 * Returns the squared distance to the line segment between pts a and b
519 * Returns the distance to the line segment between pts a and b.
  /external/llvm/lib/Transforms/Scalar/
LoopInterchange.cpp 134 const SCEV *Distance = D->getDistance(II);
136 dyn_cast_or_null<SCEVConstant>(Distance);
    [all...]
  /external/pdfium/xfa/src/fxbarcode/qrcode/
BC_QRFinderPatternFinder.cpp 165 FX_FLOAT abDistance = Distance((CBC_ResultPoint*)(*patterns)[0],
167 FX_FLOAT bcDistance = Distance((CBC_ResultPoint*)(*patterns)[1],
169 FX_FLOAT acDistance = Distance((CBC_ResultPoint*)(*patterns)[0],
197 FX_FLOAT CBC_QRFinderPatternFinder::Distance(CBC_ResultPoint* point1,
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 90 /// Dependence::DVEntry - Each level in the distance/direction vector
92 /// perhaps a distance.
107 const SCEV *Distance; // NULL implies no distance available.
109 PeelLast(false), Splitable(false), Distance(nullptr) { }
165 /// getDistance - Returns the distance (or NULL) associated with a
251 /// getDistance - Returns the distance (or NULL) associated with a
383 /// 3) Distance - The value d of the dependence distance;
389 enum ConstraintKind { Empty, Point, Distance, Line, Any } Kind
    [all...]
  /external/jhead/
jhead.h 107 float Distance;
  /external/llvm/lib/Analysis/
LoopAccessAnalysis.cpp     [all...]
DependenceAnalysis.cpp 249 // Returns the distance (or NULL) associated with a particular level.
252 return DV[Level - 1].Distance;
310 assert((Kind == Line || Kind == Distance) &&
311 "Kind should be Line (or Distance)");
319 assert((Kind == Line || Kind == Distance) &&
320 "Kind should be Line (or Distance)");
328 assert((Kind == Line || Kind == Distance) &&
329 "Kind should be Line (or Distance)");
334 // If constraint is a distance, returns D.
337 assert(Kind == Distance && "Kind should be Distance")
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 155 /// matching this pattern at the start of \arg Buffer; a distance of zero
523 // match distance and the number of lines skipped to get to this match.
524 unsigned Distance = ComputeMatchDistance(Buffer.substr(i), VariableTable);
525 double Quality = Distance + (NumLinesForward / 100.);
    [all...]
  /external/pdfium/core/src/fpdfapi/fpdf_render/
fpdf_render_pattern.cpp 536 float Distance() {
597 float Distance() { return x.Distance() + y.Distance(); }
624 int Distance(Coon_Color& o) {
653 FX_BOOL bSmall = C1.Distance() < 2 && C2.Distance() < 2 &&
654 D1.Distance() < 2 && D2.Distance() < 2;
665 d_bottom = div_colors[3].Distance(div_colors[0])
    [all...]
  /external/llvm/lib/Support/
CommandLine.cpp 307 unsigned Distance = StringRef(Name).edit_distance(
309 if (!Best || Distance < BestDistance) {
311 BestDistance = Distance;
    [all...]
  /external/v8/src/
assembler.h 260 enum Distance {
303 void link_to(int pos, Distance distance = kFar) {
304 if (distance == kNear) {
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp     [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp     [all...]

Completed in 541 milliseconds