/external/webrtc/webrtc/modules/audio_processing/beamformer/ |
H A D | array_util.cc | 41 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 D | array_util_unittest.cc | 40 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 D | array_util.h | 50 float DotProduct(const Point& a, const Point& b);
|
H A D | nonlinear_beamformer.cc | 270 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 D | SkPoint3.h | 112 static SkScalar DotProduct(const SkPoint3& a, const SkPoint3& b) { function in struct:SkPoint3 117 return DotProduct(*this, vec);
|
H A D | SkPoint.h | 145 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 D | intelligibility_enhancer.cc | 202 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 D | intelligibility_enhancer.h | 139 static float DotProduct(const float* a, const float* b, size_t length);
|
/external/ceres-solver/include/ceres/ |
H A D | rotation.h | 192 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 D | SkStrokerPriv.cpp | 115 SkScalar dotProd = SkPoint::DotProduct(beforeUnitNormal, afterUnitNormal); 155 SkScalar dotProd = SkPoint::DotProduct(beforeUnitNormal, afterUnitNormal);
|
H A D | SkPoint.cpp | 253 SkScalar uDotV = SkPoint::DotProduct(u, v);
|
H A D | SkGeometry.cpp | 1266 SkScalar x = SkPoint::DotProduct(uStart, uStop); 1318 const SkScalar dot = SkVector::DotProduct(lastQ, finalP);
|
H A D | SkScan_Hairline.cpp | 277 return SkVector::DotProduct(p0 - pivot, p2 - pivot) >= 0;
|
H A D | SkPath.cpp | 1452 SkScalar cosh = SkPoint::DotProduct(before, after);
|
/external/openfst/src/include/fst/ |
H A D | power-weight.h | 148 inline W DotProduct(const PowerWeight<W, n> &w1, function in namespace:fst
|
H A D | sparse-power-weight.h | 181 inline const W& DotProduct(const SparsePowerWeight<W, K> &w1, function in namespace:fst
|
/external/pdfium/core/include/fxcrt/ |
H A D | fx_coordinates.h | 138 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 D | GrPathUtils.cpp | 459 if (SkVector::DotProduct(da, dc) < 0 || SkVector::DotProduct(ab,da) > 0) {
|
/external/opencv/cxcore/src/ |
H A D | cxmatmul.cpp | 3268 CV_DEF_INIT_FUNC_TAB_2D( DotProduct, C1R )
|