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

1 2 3 4 5 6 7

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestFmin.rs 26 return fmin(inX, inY);
31 return fmin(inX, inY);
36 return fmin(inX, inY);
41 return fmin(inX, inY);
46 return fmin(inX, inY);
51 return fmin(inX, inY);
56 return fmin(inX, inY);
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
bwfilter.rs 31 imageMin = fmin(sr,imageMin);
46 localMin = fmin(g,b);
47 localMin = fmin(r,localMin);
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
bwfilter.rs 31 imageMin = fmin(sr,imageMin);
46 localMin = fmin(g,b);
47 localMin = fmin(r,localMin);
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
bwfilter.rs 31 imageMin = fmin(sr,imageMin);
46 localMin = fmin(g,b);
47 localMin = fmin(r,localMin);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_fmin.c 35 fmin(double x, double y) function
  /bionic/libm/
fake_long_double.c 31 long double fminl(long double a1, long double a2) { return fmin(a1, a2); }
  /external/llvm/test/MC/AArch64/
neon-max-min.s 81 fmin v10.2s, v15.2s, v22.2s
82 fmin v3.4s, v5.4s, v6.4s
83 fmin v17.2d, v13.2d, v2.2d
85 // CHECK: fmin v10.2s, v15.2s, v22.2s // encoding: [0xea,0xf5,0xb6,0x0e]
86 // CHECK: fmin v3.4s, v5.4s, v6.4s // encoding: [0xa3,0xf4,0xa6,0x4e]
87 // CHECK: fmin v17.2d, v13.2d, v2.2d // encoding: [0xb1,0xf5,0xe2,0x4e]
  /frameworks/av/services/audioflinger/
AudioResamplerFirGen.h 526 double fmax, fmin; local
531 fmin = fmax = trf;
541 else if (trf<fmin) {
542 fmin = trf;
549 firMin = fmin * norm;
597 double fmin, fmax; local
598 testFir(coef, L, halfNumCoef, 0., fp, passSteps, fmin, fmax);
599 double d1 = (fmax - fmin)/2.;
600 passMin = fmin;
603 testFir(coef, L, halfNumCoef, fs, 0.5, stopSteps, fmin, fmax)
    [all...]
  /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)
  /frameworks/base/libs/hwui/
FontRenderer.cpp 561 mBounds->left = fmin(mBounds->left, x1);
562 mBounds->top = fmin(mBounds->top, y3);
579 mBounds->left = fmin(mBounds->left, fmin(x1, fmin(x2, fmin(x3, x4))));
580 mBounds->top = fmin(mBounds->top, fmin(y1, fmin(y2, fmin(y3, y4))))
    [all...]
Caches.cpp 713 propertyAmbientRatio = fmin(fmax(atof(value), 0.0), 10.0);
717 propertyLightDiameter = fmin(fmax(atof(value), 0.0), 3000.0);
721 propertyLightPosY = fmin(fmax(atof(value), 0.0), 3000.0);
725 propertyLightPosZ = fmin(fmax(atof(value), 0.0), 3000.0);
  /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...]
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMathFuncs.cpp 57 IMPORT_F32_FN_F32_F32(fmin)
  /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
597 return fmin(v1, v2);
601 return fmin(v1, v2)
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 271 /// double fmin(double x, double y);
272 fmin, enumerator in enum:llvm::LibFunc::Func
736 case LibFunc::fmin: case LibFunc::fminf: case LibFunc::fminl:
  /external/llvm/test/MC/Mips/msa/
test_3rf.s 39 # CHECK: fmin.w $w24, $w1, $w30 # encoding: [0x7b,0x1e,0x0e,0x1b]
40 # CHECK: fmin.d $w27, $w27, $w10 # encoding: [0x7b,0x2a,0xde,0xdb]
122 fmin.w $w24, $w1, $w30
123 fmin.d $w27, $w27, $w10
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.8/lib/gcc/arm-eabi/4.8/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.8/lib/gcc/arm-eabi/4.8/include/
tgmath.h 136 #define fmin(x,y) __TGMATH_REAL_2(x, y, 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/clang/test/CodeGen/
libcall-declarations.c 97 double fmin(double, double);
281 F(fmaxf), F(fmaxl), F(fmin), F(fminf), F(fminl),
396 // CHECK-NOERRNO: declare double @fmin(double, double) [[NUW]]
554 // CHECK-ERRNO: declare double @fmin(double, double) [[NUW]]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/bits/
mathcalls.h 342 __MATHCALL (fmin,, (_Mdouble_ __x, _Mdouble_ __y));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
tgmath.h 428 #define fmin(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, fmin) macro

Completed in 1242 milliseconds

1 2 3 4 5 6 7