/external/webrtc/webrtc/modules/audio_processing/beamformer/ |
D | array_util_unittest.cc | 40 TEST(ArrayUtilTest, DotProduct) { in TEST() argument 41 EXPECT_FLOAT_EQ(0.f, DotProduct(Point(0.f, 0.f, 0.f), Point(1.f, 2.f, 3.f))); in TEST() 42 EXPECT_FLOAT_EQ(0.f, DotProduct(Point(1.f, 0.f, 2.f), Point(0.f, 3.f, 0.f))); in TEST() 43 EXPECT_FLOAT_EQ(0.f, DotProduct(Point(1.f, 1.f, 0.f), Point(1.f, -1.f, 0.f))); in TEST() 44 EXPECT_FLOAT_EQ(2.f, DotProduct(Point(1.f, 0.f, 0.f), Point(2.f, 0.f, 0.f))); in TEST() 46 DotProduct(Point(-2.f, 0.f, 0.f), Point(3.f, 0.f, 0.f))); in TEST() 48 DotProduct(Point(1.f, -2.f, 3.f), Point(-3.f, 2.f, -1.f))); in TEST()
|
D | array_util.cc | 41 float DotProduct(const Point& a, const Point& b) { in DotProduct() function 52 return DotProduct(cross_product, cross_product) < kMaxDotProduct; in AreParallel() 56 return std::abs(DotProduct(a, b)) < kMaxDotProduct; in ArePerpendicular()
|
D | nonlinear_beamformer.cc | 270 DotProduct(*array_normal_, target_direction) * in InitInterfAngles() 271 DotProduct(*array_normal_, clockwise_interf_direction) >= in InitInterfAngles() 285 DotProduct(*array_normal_, target_direction) * in InitInterfAngles() 286 DotProduct(*array_normal_, counterclock_interf_direction) >= in InitInterfAngles()
|
D | array_util.h | 50 float DotProduct(const Point& a, const Point& b);
|
/external/webrtc/webrtc/modules/audio_processing/intelligibility/ |
D | intelligibility_enhancer.cc | 202 DotProduct(gains_eq_.get(), filtered_clear_var_.get(), bank_size_); in AnalyzeClearBlock() 205 DotProduct(gains_eq_.get(), filtered_clear_var_.get(), bank_size_); in AnalyzeClearBlock() 228 DotProduct(gains_eq_.get(), filtered_clear_var_.get(), bank_size_); in SolveForLambda() 362 result[i] = DotProduct(&filter_bank_[i][0], var, freqs_); in FilterVariance() 366 float IntelligibilityEnhancer::DotProduct(const float* a, in DotProduct() function in webrtc::IntelligibilityEnhancer
|
D | intelligibility_enhancer.h | 139 static float DotProduct(const float* a, const float* b, size_t length);
|
/external/skia/include/core/ |
D | SkPoint3.h | 112 static SkScalar DotProduct(const SkPoint3& a, const SkPoint3& b) { in DotProduct() function 117 return DotProduct(*this, vec); in dot()
|
D | SkPoint.h | 145 static int32_t DotProduct(const SkIPoint& a, const SkIPoint& b) { in DotProduct() function 454 static SkScalar DotProduct(const SkPoint& a, const SkPoint& b) { in DotProduct() function 469 return DotProduct(*this, vec); in dot() 473 return DotProduct(*this, *this); in lengthSqd()
|
/external/ceres-solver/include/ceres/ |
D | rotation.h | 192 T DotProduct(const T x[3], const T y[3]); 397 const T theta2 = DotProduct(angle_axis, angle_axis); in AngleAxisToRotationMatrix() 577 T DotProduct(const T x[3], const T y[3]) { in DotProduct() function 583 const T theta2 = DotProduct(angle_axis, angle_axis); in AngleAxisRotatePoint()
|
/external/skia/src/core/ |
D | SkStrokerPriv.cpp | 115 SkScalar dotProd = SkPoint::DotProduct(beforeUnitNormal, afterUnitNormal); in RoundJoiner() 155 SkScalar dotProd = SkPoint::DotProduct(beforeUnitNormal, afterUnitNormal); in MiterJoiner()
|
D | SkPoint.cpp | 253 SkScalar uDotV = SkPoint::DotProduct(u, v); in distanceToLineSegmentBetweenSqd()
|
D | SkGeometry.cpp | 1266 SkScalar x = SkPoint::DotProduct(uStart, uStop); in BuildUnitArc() 1318 const SkScalar dot = SkVector::DotProduct(lastQ, finalP); in BuildUnitArc()
|
D | SkScan_Hairline.cpp | 277 return SkVector::DotProduct(p0 - pivot, p2 - pivot) >= 0; in lt_90()
|
D | SkPath.cpp | 1452 SkScalar cosh = SkPoint::DotProduct(before, after); in arcTo()
|
/external/pdfium/core/include/fxcrt/ |
D | fx_coordinates.h | 138 baseType DotProduct(baseType otherx, baseType othery) const { in DotProduct() function 141 baseType DotProduct(const FXT_VECTOR& v) const { in DotProduct() function 150 baseType t = DotProduct(otherx, othery); in IsPerpendicular() 170 FX_FLOAT dotProduct = v1.DotProduct(v2); in Cosine()
|
/external/skia/src/gpu/ |
D | GrPathUtils.cpp | 459 if (SkVector::DotProduct(da, dc) < 0 || SkVector::DotProduct(ab,da) > 0) { in convert_noninflect_cubic_to_quads()
|
/external/opencv/cxcore/src/ |
D | cxmatmul.cpp | 3268 CV_DEF_INIT_FUNC_TAB_2D( DotProduct, C1R ) in CV_DEF_INIT_FUNC_TAB_2D() argument
|