/external/skia/src/views/ |
D | SkProgressView.cpp | 18 fMax = 0; in SkProgressView() 32 if (fMax != max) in setMax() 34 fMax = SkToU16(max); in setMax() 61 if (fMax == 0) in onDraw() 75 percent = SkMax32(0, SkMin32(percent, fMax << 8)); // now its pinned in onDraw() 76 percent = SkFixedDiv(percent, fMax << 8); // now its 0.16 in onDraw() 81 U16CPU value = SkMax32(0, SkMin32(fValue, fMax)); in onDraw() 82 percent = SkFixedDiv(value, fMax); in onDraw()
|
D | 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));
|
D | SkProgressBarView.cpp | 19 fMax = 100; in SkProgressBarView() 26 if (newProg > 0 && newProg < fMax) in changeProgress() 95 fMax = max; in setMax()
|
/external/skia/src/animator/ |
D | SkDisplayEvent.cpp | 48 kind(kUser), x(0), y(0), fLastCode((SkKey) -1), fMax((SkKey) -1), fTarget(NULL) { in SkDisplayEvent() 98 if (fMax != (SkKey) -1 && fMax != code) in dumpEvent() 99 SkDebugf("keys=\"%c - %c\" ", code, fMax); in dumpEvent() 162 if (index != SK_PROPERTY(keys) || fMax == (SkKey) -1 || fMax == code) in getProperty() 165 size = SkUTF8_FromUnichar(fMax, scratch); in getProperty() 247 fMax = code; in setProperty() 252 fMax = (SkKey) SkUTF8_NextUnichar(&chars); in setProperty() 253 SkASSERT(fMax >= code); in setProperty()
|
D | SkDisplayEvents.cpp | 60 …if ((int) evt->code > keyCode || (int) (evt->fMax != (SkKey) -1 ? evt->fMax : evt->code) < keyCode) in doEvent() 105 …if ((int) evt->code > keyCode || (int) (evt->fMax != (SkKey) -1 ? evt->fMax : evt->code) < keyCode) in removeEvent()
|
D | SkDisplayEvent.h | 58 SkKey fMax; // if the code expresses a range variable
|
/external/skia/include/views/ |
D | SkProgressBarView.h | 30 int getMax() const { return fMax; } in getMax() 42 int fMax; variable
|
D | SkWidget.h | 202 uint16_t getMax() const { return fMax; } in getMax() 213 uint16_t fValue, fMax; 271 uint16_t getMax() const { return fMax; } in getMax() 281 uint16_t fValue, fMax;
|
/external/aac/libFDK/include/ |
D | common_fix.h | 256 #define fixMax(a,b) fMax(a,b) 331 FDK_INLINE FIXP_DBL fMax(FIXP_DBL a, FIXP_DBL b) in fMax() function 336 FDK_INLINE FIXP_SGL fMax(FIXP_SGL a, FIXP_SGL b) in fMax() function 342 FDK_INLINE INT fMax(INT a, INT b) in fMax() function 348 inline UINT fMax(UINT a, UINT b) in fMax() function
|
D | fixpoint_math.h | 415 sum = fMax(fMin((INT)sum, (INT)MAXVAL_SGL), (INT)MINVAL_SGL); in fAddSaturate() 430 sum = fMax(fMin((INT)sum, (INT)(MAXVAL_DBL>>1)), (INT)(MINVAL_DBL>>1)); in fAddSaturate()
|
/external/skia/src/core/ |
D | SkRegion.cpp | 712 uint8_t fMax; member 737 fMax = gOpMinMax[op].fMax; in RgnOper() 743 SkRegion::RunType* stop = operate_on_span(a_runs, b_runs, start, fMin, fMax); in addSpan() 767 uint8_t fMin, fMax; member in RgnOper
|
/external/aac/libAACdec/src/ |
D | channelinfo.h | 435 return fMax(pIcsInfo0->MaxSfBands, pIcsInfo1->MaxSfBands); in GetScaleMaxFactorBandsTransmitted()
|
D | block.cpp | 238 SpecScale_window = fMax(SpecScale_window, (int)pSfbScale[window*16+band]); in CBlock_ScaleSpectralData() 469 locMax = fMax(fixp_abs(pSpectralCoefficient[i]), locMax); in CBlock_InverseQuantizeSpectralData()
|
/external/aac/libAACenc/src/ |
D | aacenc_lib.cpp | 570 sbrBitRate = fMax(sbrBitRate, sbrBitRateLimit+16); in aacEncoder_LimitBitrate()
|