Searched refs:DotProduct (Results 1 - 19 of 19) 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/ceres-solver/include/ceres/
H A Drotation.h192 T DotProduct(const T x[3], const T y[3]);
397 const T theta2 = DotProduct(angle_axis, angle_axis);
577 T DotProduct(const T x[3], const T y[3]) { function in namespace:ceres
583 const T theta2 = DotProduct(angle_axis, angle_axis);
/external/skia/src/core/
H A DSkStrokerPriv.cpp115 SkScalar dotProd = SkPoint::DotProduct(beforeUnitNormal, afterUnitNormal);
155 SkScalar dotProd = SkPoint::DotProduct(beforeUnitNormal, afterUnitNormal);
H A DSkPoint.cpp253 SkScalar uDotV = SkPoint::DotProduct(u, v);
H A DSkGeometry.cpp1266 SkScalar x = SkPoint::DotProduct(uStart, uStop);
1318 const SkScalar dot = SkVector::DotProduct(lastQ, finalP);
H A DSkScan_Hairline.cpp277 return SkVector::DotProduct(p0 - pivot, p2 - pivot) >= 0;
H A DSkPath.cpp1452 SkScalar cosh = SkPoint::DotProduct(before, after);
/external/openfst/src/include/fst/
H A Dpower-weight.h148 inline W DotProduct(const PowerWeight<W, n> &w1, function in namespace:fst
H A Dsparse-power-weight.h181 inline const W& DotProduct(const SparsePowerWeight<W, K> &w1, function in namespace:fst
/external/pdfium/core/include/fxcrt/
H A Dfx_coordinates.h138 baseType DotProduct(baseType otherx, baseType othery) const { function in class:CFX_VTemplate
141 baseType DotProduct(const FXT_VECTOR& v) const { function in class:CFX_VTemplate
150 baseType t = DotProduct(otherx, othery);
170 FX_FLOAT dotProduct = v1.DotProduct(v2);
/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 1309 milliseconds