OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:minScale
(Results
1 - 4
of
4
) sorted by null
/external/aac/libAACenc/src/
band_nrg.cpp
300
INT i, j,
minScale
;
306
minScale
= fixMin(sfbMaxScaleSpecLeft[i], sfbMaxScaleSpecRight[i])-4;
307
minScale
= fixMax(0,
minScale
);
309
if (
minScale
> 0) {
311
FIXP_DBL specL = mdctSpectrumLeft[j]<<(
minScale
-1);
312
FIXP_DBL specR = mdctSpectrumRight[j]<<(
minScale
-1);
339
INT
minScale
= fixMin(sfbMaxScaleSpecLeft[i], sfbMaxScaleSpecRight[i]);
340
INT scale = fixMax(0, 2*(
minScale
-4));
adj_thr.cpp
[
all
...]
/external/deqp/framework/randomshaders/
rsgBinaryOps.cpp
215
const float
minScale
= 0.25f;
220
float scale = getQuantizedFloat(rnd,
minScale
, maxScale, scaleStep);
/external/chromium_org/third_party/skia/tests/
MatrixTest.cpp
202
SkScalar
minScale
= mat.getMinScale();
204
REPORTER_ASSERT(reporter, (
minScale
< 0) == (maxScale < 0));
210
REPORTER_ASSERT(reporter, !success || (scales[0] ==
minScale
&& scales[1] == maxScale));
217
// test a bunch of vectors. All should be scaled by between
minScale
and maxScale
235
REPORTER_ASSERT(reporter, SkScalarDiv(
minScale
, d) < gVectorScaleTol);
244
REPORTER_ASSERT(reporter, SkScalarDiv(
minScale
, min) >= gCloseScaleTol);
[
all
...]
Completed in 1269 milliseconds