HomeSort by relevance Sort by last modified time
    Searched full:fmax (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /external/skia/src/views/
SkProgressView.cpp 10 fMax = 0;
24 if (fMax != max)
26 fMax = SkToU16(max);
53 if (fMax == 0)
67 percent = SkMax32(0, SkMin32(percent, fMax << 8)); // now its pinned
68 percent = SkFixedDiv(percent, fMax << 8); // now its 0.16
73 U16CPU value = SkMax32(0, SkMin32(fValue, fMax));
74 percent = SkFixedDiv(value, fMax);
SkWidget.cpp 205 fMax = 0;
215 if (fMax != max)
217 fMax = SkToU16(max);
227 U16 prev = actual_value(fValue, fMax);
228 U16 next = actual_value(value, fMax);
272 U16CPU value = SkMax32(0, SkMin32(fValue, fMax));
285 if (fMax)
287 SkFixed percent = SkFixedDiv(value, fMax);
312 if (fMax)
316 this->setValue(SkScalarRound(percent * fMax));
    [all...]
SkProgressBarView.cpp 12 fMax = 100;
19 if (newProg > 0 && newProg < fMax)
88 fMax = max;
  /bionic/libm/man/
fmax.3 25 .\" $FreeBSD: src/lib/msun/man/fmax.3,v 1.2 2005/01/14 09:12:05 ru Exp $
28 .Dt FMAX 3
31 .Nm fmax ,
43 .Fn fmax "double x" "double y"
56 .Fn fmax ,
86 .Fn fmax ,
fdim.3 73 .Xr fmax 3 ,
math.3 109 fmax maximum function
  /external/skia/include/views/
SkProgressBarView.h 37 int getMax() const { return fMax; }
49 int fMax;
SkWidget.h 209 uint16_t getMax() const { return fMax; }
220 uint16_t fValue, fMax;
278 uint16_t getMax() const { return fMax; }
288 uint16_t fValue, fMax;
  /external/skia/src/animator/
SkDisplayEvents.cpp 68 if ((int) evt->code > keyCode || (int) (evt->fMax != (SkKey) -1 ? evt->fMax : evt->code) < keyCode)
113 if ((int) evt->code > keyCode || (int) (evt->fMax != (SkKey) -1 ? evt->fMax : evt->code) < keyCode)
SkDisplayEvent.cpp 56 kind(kUser), x(0), y(0), fLastCode((SkKey) -1), fMax((SkKey) -1), fTarget(NULL) {
106 if (fMax != (SkKey) -1 && fMax != code)
107 SkDebugf("keys=\"%c - %c\" ", code, fMax);
170 if (index != SK_PROPERTY(keys) || fMax == (SkKey) -1 || fMax == code)
173 size = SkUTF8_FromUnichar(fMax, scratch);
255 fMax = code;
260 fMax = (SkKey) SkUTF8_NextUnichar(&chars);
261 SkASSERT(fMax >= code)
    [all...]
SkDisplayEvent.h 66 SkKey fMax; // if the code expresses a range
  /frameworks/base/libs/rs/scriptc/
rs_math.rsh 114 extern float __attribute__((overloadable)) fmax(float, float);
115 extern float2 __attribute__((overloadable)) fmax(float2, float2);
116 extern float3 __attribute__((overloadable)) fmax(float3, float3);
117 extern float4 __attribute__((overloadable)) fmax(float4, float4);
118 extern float8 __attribute__((overloadable)) fmax(float8, float8);
119 extern float16 __attribute__((overloadable)) fmax(float16, float16);
120 extern float2 __attribute__((overloadable)) fmax(float2, float);
121 extern float3 __attribute__((overloadable)) fmax(float3, float);
122 extern float4 __attribute__((overloadable)) fmax(float4, float);
123 extern float8 __attribute__((overloadable)) fmax(float8, float)
    [all...]
  /bionic/libm/
Makefile-orig 95 fma.3 fmax.3 fmod.3 hypot.3 ieee.3 ieee_test.3 ilogb.3 j0.3 \
128 MLINKS+=fmax.3 fmaxf.3 fmax.3 fmaxl.3 \
129 fmax.3 fmin.3 fmax.3 fminf.3 fmax.3 fminl.3
  /bionic/libm/src/
s_fmax.c 35 fmax(double x, double y) function
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include/
tgmath.h 138 #define fmax(x,y) __TGMATH_REAL_2(x, y, fmax) macro
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/include/
tgmath.h 135 #define fmax(x,y) __TGMATH_REAL_2(x, y, fmax) macro
  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include/
tgmath.h 138 #define fmax(x,y) __TGMATH_REAL_2(x, y, fmax) macro
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/include/
tgmath.h 135 #define fmax(x,y) __TGMATH_REAL_2(x, y, fmax) macro
  /external/jdiff/src/jdiff/
DiffMyers.java 119 int fmin = fmid, fmax = fmid; // Limits of top-down search. local
138 if (fmax < dmax)
139 fd[fdiagoff + ++fmax + 1] = -1;
141 --fmax;
142 for (d = fmax; d >= fmin; d -= 2)
190 if (!odd && fmin <= d && d <= fmax && bd[bdiagoff + d] <= fd[fdiagoff + d])
210 for (d = fmax; d >= fmin; d -= 2)
  /external/skia/src/core/
SkRegion.cpp 717 uint8_t fMax;
742 fMax = gOpMinMax[op].fMax;
748 SkRegion::RunType* stop = operate_on_span(a_runs, b_runs, start, fMin, fMax);
772 uint8_t fMin, fMax;
859 // if ((unsigned)(inside - oper.fMin) <= (unsigned)(oper.fMax - oper.fMin))
    [all...]
  /external/srec/srec/cfront/
frontobj.c 352 int fmax, i, j, high_cut, bandwidth; local
407 fmax = bandwidth;
409 /* finc= fmax/freqobj->ns; */
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
options.h     [all...]
  /external/svox/pico/lib/
picosig2.h 129 picoos_int32 lvalue4; /*reserved for fMax */
  /prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/arm-eabi/bin/
c++ 
g++ 

Completed in 175 milliseconds

1 2 3 4