Searched refs:dot_product (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/media/filters/
H A Dwsola_internals.h23 // given. |dot_product[k]| is the dot-product of channel |k|. The caller should
24 // allocate sufficient space for |dot_product|.
30 float* dot_product);
H A Dwsola_internals.cc44 float* dot_product) {
51 memset(dot_product, 0, sizeof(*dot_product) * a->channels());
56 dot_product[k] += *ch_a++ * *ch_b++;
39 MultiChannelDotProduct(const AudioBus* a, int frame_offset_a, const AudioBus* b, int frame_offset_b, int num_frames, float* dot_product) argument
/external/ceres-solver/internal/ceres/
H A Dincomplete_lq_factorization.cc82 double dot_product = 0.0; local
85 dot_product += a_values[idx_a++] * b_values[idx_b++];
97 return dot_product;
/external/chromium_org/cc/base/
H A Dmath_util.cc678 double dot_product = gfx::DotProduct(v1, v2) / v1.Length() / v2.Length(); local
680 dot_product = std::max(-1.0, std::min(1.0, dot_product));
681 return static_cast<float>(Rad2Deg(std::acos(dot_product)));

Completed in 1012 milliseconds