OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dot_product
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/media/filters/
wsola_internals.h
23
// 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
);
wsola_internals.cc
44
float*
dot_product
) {
51
memset(
dot_product
, 0, sizeof(*
dot_product
) * a->channels());
56
dot_product
[k] += *ch_a++ * *ch_b++;
/external/ceres-solver/internal/ceres/
incomplete_lq_factorization.cc
82
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/
math_util.cc
678
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 487 milliseconds