/frameworks/base/libs/hwui/ |
Patch.cpp | 139 float v2 = fmax(0.0f, stepY - vOffset) / bitmapHeight; 191 float u2 = fmax(0.0f, stepX - uOffset) / bitmapWidth;
|
PathCache.cpp | 98 const float pathWidth = fmax(bounds.width(), 1.0f); 99 const float pathHeight = fmax(bounds.height(), 1.0f); 104 offset = (int) floorf(fmax(paint->getStrokeWidth(), 1.0f) * 1.5f + 0.5f);
|
/frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/ |
math.rs | 142 TEST_FN_FUNC_FN_FN(fmax); 143 TEST_FN_FUNC_FN_F(fmax);
|
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/ |
math.rs.bak | 261 TEST_FN_FUNC_FN_FN(fmax); 262 TEST_FN_FUNC_FN_F(fmax);
|
math.rs | 275 TEST_FN_FUNC_FN_FN(fmax); 276 TEST_FN_FUNC_FN_F(fmax);
|
math.rs.orig | 275 TEST_FN_FUNC_FN_FN(fmax); 276 TEST_FN_FUNC_FN_F(fmax);
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/ |
tgmath.h | 135 #define fmax(x,y) __TGMATH_REAL_2(x, y, fmax) macro
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/ |
tgmath.h | 135 #define fmax(x,y) __TGMATH_REAL_2(x, y, fmax) macro
|
/prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/ |
tgmath.h | 146 #define fmax(x,y) __TGMATH_REAL_2(x, y, fmax) macro
|
/prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/ |
tgmath.h | 146 #define fmax(x,y) __TGMATH_REAL_2(x, y, fmax) macro
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/ |
tgmath.h | 135 #define fmax(x,y) __TGMATH_REAL_2(x, y, fmax) macro
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/ |
tgmath.h | 135 #define fmax(x,y) __TGMATH_REAL_2(x, y, fmax) macro
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1_impl/ |
cmath | 65 #undef fmax 195 using ::fmax; 513 fmax(float __x, float __y) 517 fmax(long double __x, long double __y) 522 fmax(_Tp __x, _Up __y) 525 return fmax(__type(__x), __type(__y));
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/ |
cmath | 65 #undef fmax 195 using ::fmax; 513 fmax(float __x, float __y) 517 fmax(long double __x, long double __y) 522 fmax(_Tp __x, _Up __y) 525 return fmax(__type(__x), __type(__y));
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/ |
cmath | 65 #undef fmax 195 using ::fmax; 513 fmax(float __x, float __y) 517 fmax(long double __x, long double __y) 522 fmax(_Tp __x, _Up __y) 525 return fmax(__type(__x), __type(__y));
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/ |
cmath | 65 #undef fmax 195 using ::fmax; 513 fmax(float __x, float __y) 517 fmax(long double __x, long double __y) 522 fmax(_Tp __x, _Up __y) 525 return fmax(__type(__x), __type(__y));
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1_impl/ |
cmath | 65 #undef fmax 195 using ::fmax; 513 fmax(float __x, float __y) 517 fmax(long double __x, long double __y) 522 fmax(_Tp __x, _Up __y) 525 return fmax(__type(__x), __type(__y));
|
/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)
|
/frameworks/rs/driver/runtime/ |
rs_cl.c | 17 extern float __attribute__((overloadable)) fmax(float v, float v2); 18 extern float2 __attribute__((overloadable)) fmax(float2 v, float v2); 19 extern float3 __attribute__((overloadable)) fmax(float3 v, float v2); 20 extern float4 __attribute__((overloadable)) fmax(float4 v, float v2); [all...] |
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
math.rs | 275 TEST_FN_FUNC_FN_FN(fmax); 276 TEST_FN_FUNC_FN_F(fmax);
|
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
math.rs | 275 TEST_FN_FUNC_FN_FN(fmax); 276 TEST_FN_FUNC_FN_F(fmax);
|
/bionic/tests/ |
math_test.cpp | 579 TEST(math, fmax) { 580 ASSERT_FLOAT_EQ(12.0, fmax(12.0, 10.0)); 581 ASSERT_FLOAT_EQ(12.0, fmax(12.0, nan(""))); 582 ASSERT_FLOAT_EQ(12.0, fmax(nan(""), 12.0));
|
/external/aac/libSBRenc/src/ |
fram_gen.cpp | 236 INT bufferFrameStart, INT numberTimeSlots, INT fmax); 369 INT fmax = 0; local 521 fmax = calcFillLengthMax(tranPos, numberTimeSlots); 553 length_v_freq, bmax, bufferFrameStart, numberTimeSlots, fmax); 629 length_v_freq, bmax, bufferFrameStart, numberTimeSlots, fmax); 1020 int fmax; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
AMDGPUISelLowering.h | 117 FMAX,
|
AMDGPUInstrInfo.td | 36 def AMDGPUfmax : SDNode<"AMDGPUISD::FMAX", SDTFPBinOp,
|