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

1 2 3

  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmin.c 35 fmin(double x, double y) function
  /bionic/libm/
builtins.cpp 56 double fmin(double x, double y) { return __builtin_fmin(x, y); } function
  /external/apache-commons-math/src/main/java/org/apache/commons/math/analysis/solvers/
BisectionSolver.java 107 double fmin; local
112 fmin = f.value(min);
115 if (fm * fmin > 0.0) {
  /external/tensorflow/tensorflow/compiler/tf2xla/kernels/
quantize_and_dequantize_op.cc 59 const xla::Computation* fmin = ctx->GetOrCreateMin(data_type); variable
61 b->ReduceAll(input, XlaHelpers::MaxValue(b, data_type), *fmin);
  /frameworks/rs/driver/runtime/arch/
generic.c 170 extern float __attribute__((overloadable)) fmin(float v1, float v2) { function
176 * FMIN
178 extern float2 __attribute__((overloadable)) fmin(float2 v1, float2 v2) { function
185 extern float3 __attribute__((overloadable)) fmin(float3 v1, float3 v2) { function
193 extern float4 __attribute__((overloadable)) fmin(float4 v1, float4 v2) { function
202 extern float2 __attribute__((overloadable)) fmin(float2 v1, float v2) { function
209 extern float3 __attribute__((overloadable)) fmin(float3 v1, float v2) { function
217 extern float4 __attribute__((overloadable)) fmin(float4 v1, float v2) { function
601 return fmin(v1, v2);
605 return fmin(v1, v2)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
mathinline.h 140 __NTH (fmin (double __x, double __y)) function
  /frameworks/av/media/libaudioprocessing/
AudioResamplerFirGen.h 529 double fmax, fmin; local
534 fmin = fmax = trf;
544 else if (trf<fmin) {
545 fmin = trf;
553 firMin = fmin * norm;
604 double fmin, fmax; local
605 testFir(coef, L, halfNumCoef, 0., fp, passSteps, fmin, fmax);
606 double d1 = (fmax - fmin)/2.;
607 passMin = fmin;
610 testFir(coef, L, halfNumCoef, fs, 0.5, stopSteps, fmin, fmax)
    [all...]
  /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/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
tgmath.h 428 #define fmin(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmin) macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/include/
tgmath.h 136 #define fmin(x,y) __TGMATH_REAL_2(x, y, 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/python/cpython2/Modules/
clmodule.c 529 float fmin, fmax; local
539 fmin = CL_TypeIsFloat(min);
541 return Py_BuildValue("(ff)", fmin, fmax);
    [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
  /external/libcxx/test/std/depr/depr.c.headers/
math_h.pass.cpp 77 Ambiguous fmin(Ambiguous, Ambiguous){ return Ambiguous(); } function
    [all...]
  /external/libcxx/test/std/numerics/c.math/
cmath.pass.cpp 79 Ambiguous fmin(Ambiguous, Ambiguous){ return Ambiguous(); } function
    [all...]
  /frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/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/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_math_agree.java 304 // fmin reference functions
305 private float fmin(float v1, float v2) { method in class:UT_math_agree
309 private float[] fmin(float[] v1, float[] v2) { method in class:UT_math_agree
313 private float[] fmin(float[] v1, float v2) { method in class:UT_math_agree
552 // Set results for fmin
553 s.set_fmin_rand_f1_f1(fmin(rand_f1_0, rand_f1_1)); method
554 s.set_fmin_rand_f2_f2(pack_f2(fmin(rand_f2_0, rand_f2_1)));
555 s.set_fmin_rand_f3_f3(pack_f3(fmin(rand_f3_0, rand_f3_1)));
556 s.set_fmin_rand_f4_f4(pack_f4(fmin(rand_f4_0, rand_f4_1)));
557 s.set_fmin_rand_f2_f1(pack_f2(fmin(rand_f2_0, rand_f1_1)))
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_math_agree.java 306 // fmin reference functions
307 private float fmin(float v1, float v2) { method in class:UT_math_agree
311 private float[] fmin(float[] v1, float[] v2) { method in class:UT_math_agree
315 private float[] fmin(float[] v1, float v2) { method in class:UT_math_agree
554 // Set results for fmin
555 s.set_fmin_rand_f1_f1(fmin(rand_f1_0, rand_f1_1)); method
556 s.set_fmin_rand_f2_f2(pack_f2(fmin(rand_f2_0, rand_f2_1)));
557 s.set_fmin_rand_f3_f3(pack_f3(fmin(rand_f3_0, rand_f3_1)));
558 s.set_fmin_rand_f4_f4(pack_f4(fmin(rand_f4_0, rand_f4_1)));
559 s.set_fmin_rand_f2_f1(pack_f2(fmin(rand_f2_0, rand_f1_1)))
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/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/host/darwin-x86/clang-3859424/lib64/clang/4.0/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/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/
tgmath.h 781 // fmin
789 __tg_fmin(double __x, double __y) {return fmin(__x, __y);}
795 #undef fmin macro
796 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ macro
  /prebuilts/clang/host/darwin-x86/clang-4393122/lib64/clang/5.0.1/include/
tgmath.h 781 // fmin
789 __tg_fmin(double __x, double __y) {return fmin(__x, __y);}
795 #undef fmin macro
796 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ macro
  /prebuilts/clang/host/darwin-x86/clang-4479392/lib64/clang/5.0.2/include/
tgmath.h 781 // fmin
789 __tg_fmin(double __x, double __y) {return fmin(__x, __y);}
795 #undef fmin macro
796 #define fmin(__x, __y) __tg_fmin(__tg_promote2((__x), (__y))(__x), \ macro

Completed in 1438 milliseconds

1 2 3