Searched defs:DotProduct (Results 1 - 4 of 4) 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;
/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

Completed in 869 milliseconds