HomeSort by relevance Sort by last modified time
    Searched full:fmax (Results 76 - 100 of 359) sorted by null

1 2 34 5 6 7 8 91011>>

  /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/base/libs/hwui/
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/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);
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
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);
  /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,
  /external/clang/lib/Headers/
tgmath.h 754 // fmax
762 __tg_fmax(double __x, double __y) {return fmax(__x, __y);}
768 #undef fmax macro
769 #define fmax(__x, __y) __tg_fmax(__tg_promote2((__x), (__y))(__x), \ macro
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 228 return DAG.getNode(AMDGPUISD::FMAX, DL, VT, Op.getOperand(1),
319 return DAG.getNode(AMDGPUISD::FMAX, DL, VT, LHS, RHS);
328 return DAG.getNode(AMDGPUISD::FMAX, DL, VT, LHS, RHS);
499 NODE_NAME_CASE(FMAX)
AMDGPUISelLowering.h 129 FMAX,
AMDGPUInstrInfo.td 33 def AMDGPUfmax : SDNode<"AMDGPUISD::FMAX", SDTFPBinOp,
  /external/mesa3d/src/gallium/drivers/radeon/
AMDGPUISelLowering.h 117 FMAX,
AMDGPUInstrInfo.td 36 def AMDGPUfmax : SDNode<"AMDGPUISD::FMAX", SDTFPBinOp,
  /prebuilts/sdk/renderscript/clang-include/
tgmath.h 754 // fmax
762 __tg_fmax(double __x, double __y) {return fmax(__x, __y);}
768 #undef fmax macro
769 #define fmax(__x, __y) __tg_fmax(__tg_promote2((__x), (__y))(__x), \ macro

Completed in 1583 milliseconds

1 2 34 5 6 7 8 91011>>