HomeSort by relevance Sort by last modified time
    Searched refs:fmin (Results 76 - 100 of 176) sorted by null

1 2 34 5 6 7 8

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/
math.h 58 using std::tr1::fmin;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/
math.h 58 using std::tr1::fmin;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/tr1/
math.h 58 using std::tr1::fmin;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/tr1/
math.h 58 using std::tr1::fmin;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/tr1/
math.h 58 using std::tr1::fmin;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
math.h 58 using std::tr1::fmin;
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/scriptc/
rs_cl.rsh 459 extern float __attribute__((const, overloadable)) fmin(float x, float y);
460 FN_FUNC_FN_FN(fmin);
461 FN_FUNC_FN_F(fmin);
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/scriptc/
rs_cl.rsh 459 extern float __attribute__((const, overloadable)) fmin(float x, float y);
460 FN_FUNC_FN_FN(fmin);
461 FN_FUNC_FN_F(fmin);
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/scriptc/
rs_cl.rsh 459 extern float __attribute__((const, overloadable)) fmin(float x, float y);
460 FN_FUNC_FN_FN(fmin);
461 FN_FUNC_FN_F(fmin);
  /bionic/libm/include/
math.h 272 double fmin(double, double) __pure2;
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMath.cpp 112 return fmin(v - i, 0x1.fffffep-1f);
  /bionic/tests/
math_test.cpp 690 TEST(math, fmin) {
691 ASSERT_DOUBLE_EQ(10.0, fmin(12.0, 10.0));
692 ASSERT_DOUBLE_EQ(12.0, fmin(12.0, nan("")));
693 ASSERT_DOUBLE_EQ(12.0, fmin(nan(""), 12.0));
    [all...]
  /frameworks/rs/driver/runtime/
rs_cl.c 12 extern float __attribute__((overloadable)) fmin(float v, float v2);
13 extern float2 __attribute__((overloadable)) fmin(float2 v, float v2);
14 extern float3 __attribute__((overloadable)) fmin(float3 v, float v2);
15 extern float4 __attribute__((overloadable)) fmin(float4 v, float v2);
437 extern float __attribute__((overloadable)) fmin(float, float);
447 return fmin(v - i, 0x1.fffffep-1f);
    [all...]
  /external/clang/lib/Headers/
tgmath.h 772 // fmin
780 __tg_fmin(double __x, double __y) {return fmin(__x, __y);}
786 #undef fmin macro
787 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ macro
  /prebuilts/clang/darwin-x86/host/3.6/lib/clang/3.6/include/
tgmath.h 772 // fmin
780 __tg_fmin(double __x, double __y) {return fmin(__x, __y);}
786 #undef fmin macro
787 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ macro
  /prebuilts/clang/linux-x86/host/3.6/lib/clang/3.6/include/
tgmath.h 772 // fmin
780 __tg_fmin(double __x, double __y) {return fmin(__x, __y);}
786 #undef fmin macro
787 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ macro
  /prebuilts/misc/darwin-x86/analyzer/lib/clang/3.3/include/
tgmath.h 772 // fmin
780 __tg_fmin(double __x, double __y) {return fmin(__x, __y);}
786 #undef fmin macro
787 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ macro
  /prebuilts/misc/linux-x86/analyzer/lib/clang/3.3/include/
tgmath.h 772 // fmin
780 __tg_fmin(double __x, double __y) {return fmin(__x, __y);}
786 #undef fmin macro
787 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ macro
  /prebuilts/sdk/renderscript/clang-include/
tgmath.h 772 // fmin
780 __tg_fmin(double __x, double __y) {return fmin(__x, __y);}
786 #undef fmin macro
787 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ macro
  /external/fio/
gettime.c 292 if ((fmax(this, mean) - fmin(this, mean)) > S)
  /external/libcxx/test/std/depr/depr.c.headers/
math_h.pass.cpp 429 static_assert((std::is_same<decltype(fmin((double)0, (double)0)), double>::value), "");
432 assert(fmin(1,0) == 0);
  /external/ltrace/etc/
libm.so.conf 352 double fmin(double, double);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
math_h.pass.cpp 434 static_assert((std::is_same<decltype(fmin((double)0, (double)0)), double>::value), "");
437 assert(fmin(1,0) == 0);
  /development/ndk/platforms/android-13/include/
math.h 279 double fmin(double, double) __NDK_FPABI_MATH__ __pure2;
  /development/ndk/platforms/android-18/include/
math.h 280 double fmin(double, double) __NDK_FPABI_MATH__ __pure2;

Completed in 993 milliseconds

1 2 34 5 6 7 8