Searched refs:fMax (Results 1 - 25 of 26) sorted by relevance

12

/external/skia/include/views/animated/
H A DSkProgressBarView.h30 int getMax() const { return fMax; }
42 int fMax; member in class:SkProgressBarView
/external/skia/src/views/
H A DSkProgressView.cpp18 fMax = 0;
32 if (fMax != max)
34 fMax = SkToU16(max);
61 if (fMax == 0)
75 percent = SkMax32(0, SkMin32(percent, fMax << 8)); // now its pinned
76 percent = SkFixedDiv(percent, fMax << 8); // now its 0.16
81 U16CPU value = SkMax32(0, SkMin32(fValue, fMax));
82 percent = SkFixedDiv(value, fMax);
/external/skia/src/pathops/
H A DSkIntersections.h29 fMax = 0; // require that the caller set the max
57 fMax = 2;
65 fMax = 2;
74 fMax = 3; // 2; permit small coincident segment + non-coincident intersection
82 fMax = 3;
89 fMax = 3;
98 fMax = 3;
123 fMax = 2;
130 fMax = 2;
138 fMax
295 unsigned char fMax; member in class:SkIntersections
[all...]
H A DSkDLineIntersection.cpp35 fMax = 2;
76 fMax = 3; // note that we clean up so that there is no more than two in the end
197 fMax = 3; // clean up parallel at the end will limit the result to 2 at the most
273 fMax = 3; // cleanup parallel lines will bring this back line
H A DSkIntersections.cpp69 if (fUsed >= fMax) {
/external/skia/src/animator/
H A DSkDisplayEvent.cpp48 kind(kUser), x(0), y(0), fLastCode((SkKey) -1), fMax((SkKey) -1), fTarget(NULL) {
98 if (fMax != (SkKey) -1 && fMax != code)
99 SkDebugf("keys=\"%c - %c\" ", code, fMax);
158 if (index != SK_PROPERTY(keys) || fMax == (SkKey) -1 || fMax == code)
161 size = SkUTF8_FromUnichar(fMax, scratch);
243 fMax = code;
248 fMax = (SkKey) SkUTF8_NextUnichar(&chars);
249 SkASSERT(fMax >
[all...]
H A DSkDisplayEvents.cpp60 if ((int) evt->code > keyCode || (int) (evt->fMax != (SkKey) -1 ? evt->fMax : evt->code) < keyCode)
105 if ((int) evt->code > keyCode || (int) (evt->fMax != (SkKey) -1 ? evt->fMax : evt->code) < keyCode)
H A DSkDisplayEvent.h58 SkKey fMax; // if the code expresses a range member in class:SkDisplayEvent
/external/skia/src/views/animated/
H A DSkProgressBarView.cpp19 fMax = 100;
26 if (newProg > 0 && newProg < fMax)
95 fMax = max;
/external/pdfium/fpdfsdk/src/pdfwindow/
H A DPWL_ScrollBar.cpp33 fMax = 0;
41 fMax = min;
46 fMax = max;
53 (IsFloatSmaller(x, fMax) || IsFloatEqual(x, fMax));
58 return fMax - fMin;
83 if (IsFloatBigger(fScrollPos, ScrollRange.fMax))
84 fScrollPos = ScrollRange.fMax;
115 SetPos(ScrollRange.fMax);
127 SetPos(ScrollRange.fMax);
904 FX_FLOAT fMax = pInfo->fContentMax - pInfo->fContentMin - pInfo->fPlateWidth; local
966 SetScrollRange(FX_FLOAT fMin,FX_FLOAT fMax,FX_FLOAT fClientWidth) argument
[all...]
/external/pdfium/fpdfsdk/include/pdfwindow/
H A DPWL_ScrollBar.h73 FX_FLOAT fMin,fMax; member in struct:PWL_FLOATRANGE
125 void SetScrollRange(FX_FLOAT fMin,FX_FLOAT fMax,FX_FLOAT fClientWidth);
/external/aac/libFDK/include/
H A Dcommon_fix.h255 #define fixMax(a,b) fMax(a,b)
330 FDK_INLINE FIXP_DBL fMax(FIXP_DBL a, FIXP_DBL b) function
335 FDK_INLINE FIXP_SGL fMax(FIXP_SGL a, FIXP_SGL b) function
340 FDK_INLINE INT fMax(INT a, INT b) function
346 inline UINT fMax(UINT a, UINT b) function
H A Dfixpoint_math.h415 sum = fMax(fMin((INT)sum, (INT)MAXVAL_SGL), (INT)MINVAL_SGL);
430 sum = fMax(fMin((INT)sum, (INT)(MAXVAL_DBL>>1)), (INT)(MINVAL_DBL>>1));
/external/skia/samplecode/
H A DSampleFilterQuality.cpp81 SkScalar fMax; member in struct:AnimValue
89 fMax = max;
96 fMax = 0;
109 if (fValue > fMax) {
110 fValue = fMax;
/external/skia/src/utils/
H A DSkPatchUtils.cpp34 : fMax(0)
71 fMax = fDivisions + 1;
87 return fCurrent > fMax;
107 int fMax, fCurrent, fDivisions; member in class:FwDCubicEvaluator
/external/aac/libPCMutils/src/
H A Dlimiter.cpp284 tmp1 = fMax(tmp1, fAbs(tmp2));
289 tmp = fMax(tmp, threshold);
337 smoothState0 = fMax(smoothState0, gain); /* avoid overshooting target */
/external/aac/libAACdec/src/
H A Dchannelinfo.h435 return fMax(pIcsInfo0->MaxSfBands, pIcsInfo1->MaxSfBands);
H A Dblock.cpp238 SpecScale_window = fMax(SpecScale_window, (int)pSfbScale[window*16+band]);
469 locMax = fMax(fixp_abs(pSpectralCoefficient[i]), locMax);
/external/skia/include/views/
H A DSkWidget.h256 uint16_t getMax() const { return fMax; }
266 uint16_t fValue, fMax; member in class:SkProgressView
/external/pdfium/core/src/fpdfdoc/
H A Dpdf_vt.h185 CPVT_FloatRange() : fMin(0.0f), fMax(0.0f)
188 CPVT_FloatRange(FX_FLOAT min, FX_FLOAT max) : fMin(min), fMax(max)
193 return fMax - fMin;
195 FX_FLOAT fMin, fMax; member in struct:CPVT_FloatRange
/external/skia/src/core/
H A DSkRegion.cpp746 uint8_t fMax; member in struct:__anon13925
770 fMax = gOpMinMax[op].fMax;
778 SkRegion::RunType* stop = operate_on_span(a_runs, b_runs, start, fMin, fMax);
808 uint8_t fMin, fMax; member in class:RgnOper
/external/deqp/modules/glshared/
H A DglsVertexArrayTests.cpp282 float fMax = max.to<float>(); local
284 GLValue::Half h = GLValue::Half::create(fMin + deRandom_getFloat(&rnd) * (fMax - fMin));
H A DglsDrawTest.cpp737 float fMax = max.to<float>(); local
739 GLValue::Half h = GLValue::Half::create(fMin + deRandom_getFloat(&rnd) * (fMax - fMin));
/external/aac/libAACenc/src/
H A Daacenc_lib.cpp733 adjustedBitrate = fMax(initialBitrate, (INT)fDivNorm((FIXP_DBL)(sbrBitRateOut+8), cm.elInfo[e].relativeBits));
/external/skia/tests/
H A DPathOpsDebug.cpp188 SkDebugf("used=%d of %d", fUsed, fMax);

Completed in 583 milliseconds

12