Searched refs:DotProduct (Results 1 - 15 of 15) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/beamformer/
H A Darray_util.cc41 float DotProduct(const Point& a, const Point& b) { function in namespace:webrtc
52 return DotProduct(cross_product, cross_product) < kMaxDotProduct;
56 return std::abs(DotProduct(a, b)) < kMaxDotProduct;
H A Darray_util_unittest.cc40 TEST(ArrayUtilTest, DotProduct) {
41 EXPECT_FLOAT_EQ(0.f, DotProduct(Point(0.f, 0.f, 0.f), Point(1.f, 2.f, 3.f)));
42 EXPECT_FLOAT_EQ(0.f, DotProduct(Point(1.f, 0.f, 2.f), Point(0.f, 3.f, 0.f)));
43 EXPECT_FLOAT_EQ(0.f, DotProduct(Point(1.f, 1.f, 0.f), Point(1.f, -1.f, 0.f)));
44 EXPECT_FLOAT_EQ(2.f, DotProduct(Point(1.f, 0.f, 0.f), Point(2.f, 0.f, 0.f)));
46 DotProduct(Point(-2.f, 0.f, 0.f), Point(3.f, 0.f, 0.f)));
48 DotProduct(Point(1.f, -2.f, 3.f), Point(-3.f, 2.f, -1.f)));
H A Darray_util.h50 float DotProduct(const Point& a, const Point& b);
H A Dnonlinear_beamformer.cc270 DotProduct(*array_normal_, target_direction) *
271 DotProduct(*array_normal_, clockwise_interf_direction) >=
285 DotProduct(*array_normal_, target_direction) *
286 DotProduct(*array_normal_, counterclock_interf_direction) >=
/external/skia/include/core/
H A DSkPoint3.h112 static SkScalar DotProduct(const SkPoint3& a, const SkPoint3& b) { function in struct:SkPoint3
117 return DotProduct(*this, vec);
H A DSkPoint.h145 static int32_t DotProduct(const SkIPoint& a, const SkIPoint& b) { function in struct:SkIPoint
454 static SkScalar DotProduct(const SkPoint& a, const SkPoint& b) { function in struct:SkPoint
469 return DotProduct(*this, vec);
473 return DotProduct(*this, *this);
/external/webrtc/webrtc/modules/audio_processing/intelligibility/
H A Dintelligibility_enhancer.cc202 DotProduct(gains_eq_.get(), filtered_clear_var_.get(), bank_size_);
205 DotProduct(gains_eq_.get(), filtered_clear_var_.get(), bank_size_);
228 DotProduct(gains_eq_.get(), filtered_clear_var_.get(), bank_size_);
362 result[i] = DotProduct(&filter_bank_[i][0], var, freqs_);
366 float IntelligibilityEnhancer::DotProduct(const float* a, function in class:webrtc::IntelligibilityEnhancer
H A Dintelligibility_enhancer.h139 static float DotProduct(const float* a, const float* b, size_t length);
/external/skia/src/core/
H A DSkStrokerPriv.cpp99 SkScalar dotProd = SkPoint::DotProduct(beforeUnitNormal, afterUnitNormal);
137 SkScalar dotProd = SkPoint::DotProduct(beforeUnitNormal, afterUnitNormal);
H A DSkPoint.cpp252 SkScalar uDotV = SkPoint::DotProduct(u, v);
H A DSkGeometry.cpp1299 SkScalar x = SkPoint::DotProduct(uStart, uStop);
1351 const SkScalar dot = SkVector::DotProduct(lastQ, finalP);
H A DSkScan_Hairline.cpp326 return SkVector::DotProduct(p0 - pivot, p2 - pivot) >= 0;
H A DSkPath.cpp1486 SkScalar cosh = SkPoint::DotProduct(before, after);
/external/skia/src/gpu/
H A DGrPathUtils.cpp459 if (SkVector::DotProduct(da, dc) < 0 || SkVector::DotProduct(ab,da) > 0) {
/external/opencv/cxcore/src/
H A Dcxmatmul.cpp3268 CV_DEF_INIT_FUNC_TAB_2D( DotProduct, C1R )

Completed in 345 milliseconds