HomeSort by relevance Sort by last modified time
    Searched refs:fMax (Results 1 - 22 of 22) sorted by null

  /external/skia/include/views/animated/
SkProgressBarView.h 30 int getMax() const { return fMax; }
42 int fMax;
  /external/skia/legacy/include/views/
SkProgressBarView.h 30 int getMax() const { return fMax; }
42 int fMax;
SkWidget.h 202 uint16_t getMax() const { return fMax; }
213 uint16_t fValue, fMax;
271 uint16_t getMax() const { return fMax; }
281 uint16_t fValue, fMax;
  /external/skia/legacy/src/views/
SkProgressView.cpp 18 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);
SkProgressBarView.cpp 19 fMax = 100;
26 if (newProg > 0 && newProg < fMax)
95 fMax = max;
SkWidget.cpp 212 fMax = 0;
222 if (fMax != max)
224 fMax = SkToU16(max);
234 U16 prev = actual_value(fValue, fMax);
235 U16 next = actual_value(value, fMax);
279 U16CPU value = SkMax32(0, SkMin32(fValue, fMax));
292 if (fMax)
294 SkFixed percent = SkFixedDiv(value, fMax);
319 if (fMax)
323 this->setValue(SkScalarRound(percent * fMax));
    [all...]
  /external/skia/src/views/
SkProgressView.cpp 18 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/legacy/src/animator/
SkDisplayEvents.cpp 60 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)
SkDisplayEvent.cpp 48 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);
162 if (index != SK_PROPERTY(keys) || fMax == (SkKey) -1 || fMax == code)
165 size = SkUTF8_FromUnichar(fMax, scratch);
247 fMax = code;
252 fMax = (SkKey) SkUTF8_NextUnichar(&chars);
253 SkASSERT(fMax >= code)
    [all...]
SkDisplayEvent.h 58 SkKey fMax; // if the code expresses a range
  /external/skia/src/animator/
SkDisplayEvents.cpp 60 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)
SkDisplayEvent.cpp 48 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 >= code)
    [all...]
SkDisplayEvent.h 58 SkKey fMax; // if the code expresses a range
  /external/aac/libFDK/include/
common_fix.h 255 #define fixMax(a,b) fMax(a,b)
330 FDK_INLINE FIXP_DBL fMax(FIXP_DBL a, FIXP_DBL b)
335 FDK_INLINE FIXP_SGL fMax(FIXP_SGL a, FIXP_SGL b)
340 FDK_INLINE INT fMax(INT a, INT b)
346 inline UINT fMax(UINT a, UINT b)
fixpoint_math.h 415 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/include/views/
SkWidget.h 256 uint16_t getMax() const { return fMax; }
266 uint16_t fValue, fMax;
  /external/aac/libAACdec/src/
channelinfo.h 435 return fMax(pIcsInfo0->MaxSfBands, pIcsInfo1->MaxSfBands);
block.cpp 238 SpecScale_window = fMax(SpecScale_window, (int)pSfbScale[window*16+band]);
469 locMax = fMax(fixp_abs(pSpectralCoefficient[i]), locMax);
  /external/skia/legacy/src/core/
SkRegion.cpp 712 uint8_t fMax;
737 fMax = gOpMinMax[op].fMax;
743 SkRegion::RunType* stop = operate_on_span(a_runs, b_runs, start, fMin, fMax);
767 uint8_t fMin, fMax;
    [all...]
  /external/skia/src/core/
SkRegion.cpp 742 uint8_t fMax;
766 fMax = gOpMinMax[op].fMax;
774 SkRegion::RunType* stop = operate_on_span(a_runs, b_runs, start, fMin, fMax);
804 uint8_t fMin, fMax;
    [all...]
  /external/aac/libAACenc/src/
aacenc_lib.cpp 570 sbrBitRate = fMax(sbrBitRate, sbrBitRateLimit+16);
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdimodel.jar 

Completed in 475 milliseconds