OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:syy
(Results
1 - 2
of
2
) sorted by null
/external/libvpx/vp8/encoder/
ssim.c
75
double
syy
= yym * iw - iwy * iwy;
local
80
if (
syy
< 0.)
syy
= 0.;
83
const double sxsy = sqrt(sxx *
syy
);
89
const double c = (2. * sxsy + C22) / (sxx +
syy
+ C22);
137
double
syy
= yym * iw - iwy * iwy;
local
142
if (
syy
< 0.)
syy
= 0.;
145
const double sxsy = sqrt(sxx *
syy
);
151
const double c = (2. * sxsy + C22) / (sxx +
syy
+ C22)
[
all
...]
/external/webp/src/enc/
filter.c
271
double
syy
= stats->yym * stats->w - ymym;
local
278
if (
syy
< 0.)
syy
= 0.;
282
fden = (xmxm + ymym + C1) * (sxx +
syy
+ C2);
Completed in 35 milliseconds