HomeSort by relevance Sort by last modified time
    Searched defs:fmin (Results 1 - 25 of 26) sorted by null

1 2

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmin.c 35 fmin(double x, double y) function
  /frameworks/rs/driver/runtime/arch/
generic.c 166 extern float __attribute__((overloadable)) fmin(float v1, float v2) { function
172 * FMIN
174 extern float2 __attribute__((overloadable)) fmin(float2 v1, float2 v2) { function
181 extern float3 __attribute__((overloadable)) fmin(float3 v1, float3 v2) { function
189 extern float4 __attribute__((overloadable)) fmin(float4 v1, float4 v2) { function
198 extern float2 __attribute__((overloadable)) fmin(float2 v1, float v2) { function
205 extern float3 __attribute__((overloadable)) fmin(float3 v1, float v2) { function
213 extern float4 __attribute__((overloadable)) fmin(float4 v1, float v2) { function
709 return fmin(v1, v2);
713 return fmin(v1, v2)
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 136 #define fmin(x,y) __TGMATH_REAL_2(x, y, fmin) macro
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
tgmath.h 136 #define fmin(x,y) __TGMATH_REAL_2(x, y, fmin) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 147 #define fmin(x,y) __TGMATH_REAL_2(x, y, fmin) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 147 #define fmin(x,y) __TGMATH_REAL_2(x, y, fmin) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 136 #define fmin(x,y) __TGMATH_REAL_2(x, y, fmin) macro
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
tgmath.h 136 #define fmin(x,y) __TGMATH_REAL_2(x, y, fmin) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
tgmath.h 421 #define fmin(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmin) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/
tgmath.h 430 #define fmin(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmin) macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 421 #define fmin(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmin) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/
tgmath.h 430 #define fmin(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmin) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
tgmath.h 421 #define fmin(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmin) macro
  /external/bzip2/
blocksort.c 78 #define fmin(a,b) ((a) < (b)) ? (a) : (b) macro
166 n = fmin(ltLo-lo, unLo-ltLo); fvswap(lo, unLo-n, n);
167 m = fmin(hi-gtHi, gtHi-unHi); fvswap(unLo, hi-m+1, m);
182 #undef fmin macro
  /external/jdiff/src/jdiff/
DiffMyers.java 119 int fmin = fmid, fmax = fmid; // Limits of top-down search. local
134 if (fmin > dmin)
135 fd[fdiagoff + --fmin - 1] = -1;
137 ++fmin;
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/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
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_math_agree.java 254 // fmin reference functions
255 private float fmin(float v1, float v2) { method in class:UT_math_agree
258 private float[] fmin(float[] v1, float[] v2) { method in class:UT_math_agree
261 private float[] fmin(float[] v1, float v2) { method in class:UT_math_agree
498 // Set results for fmin
499 s.set_fmin_rand_f1_f1(fmin(rand_f1_0, rand_f1_1)); method
500 s.set_fmin_rand_f2_f2(pack_f2(fmin(rand_f2_0, rand_f2_1)));
501 s.set_fmin_rand_f3_f3(pack_f3(fmin(rand_f3_0, rand_f3_1)));
502 s.set_fmin_rand_f4_f4(pack_f4(fmin(rand_f4_0, rand_f4_1)));
503 s.set_fmin_rand_f2_f1(pack_f2(fmin(rand_f2_0, rand_f1_1)))
    [all...]
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_math_agree.java 254 // fmin reference functions
255 private float fmin(float v1, float v2) { method in class:UT_math_agree
258 private float[] fmin(float[] v1, float[] v2) { method in class:UT_math_agree
261 private float[] fmin(float[] v1, float v2) { method in class:UT_math_agree
498 // Set results for fmin
499 s.set_fmin_rand_f1_f1(fmin(rand_f1_0, rand_f1_1)); method
500 s.set_fmin_rand_f2_f2(pack_f2(fmin(rand_f2_0, rand_f2_1)));
501 s.set_fmin_rand_f3_f3(pack_f3(fmin(rand_f3_0, rand_f3_1)));
502 s.set_fmin_rand_f4_f4(pack_f4(fmin(rand_f4_0, rand_f4_1)));
503 s.set_fmin_rand_f2_f1(pack_f2(fmin(rand_f2_0, rand_f1_1)))
    [all...]
  /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/eigen/unsupported/test/mpreal/
mpreal.h 517 friend const mpreal fmin(const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode = default_rnd);
2294 inline const mpreal fmin(const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode) function in namespace:mpfr
    [all...]
  /external/valgrind/main/VEX/switchback/
test_bzip2.c 2100 #define fmin macro
2204 #undef fmin macro
    [all...]
  /external/valgrind/main/exp-sgcheck/tests/
hackedbz2.c 2124 #define fmin macro
2228 #undef fmin macro
    [all...]
  /external/valgrind/main/memcheck/tests/
origin5-bz2.c 2115 #define fmin macro
2219 #undef fmin macro
    [all...]
varinfo6.c 2153 #define fmin macro
2257 #undef fmin macro
    [all...]
  /external/valgrind/main/perf/
bz2.c 2115 #define fmin macro
2219 #undef fmin macro
    [all...]

Completed in 1803 milliseconds

1 2