Home
last modified time | relevance | path

Searched refs:fmin (Results 1 – 25 of 108) sorted by relevance

12345

/third_party/mesa3d/docs/_extra/specs/
DINTEL_shader_atomic_float_minmax.txt166 - fmin(qNaN, x) = fmin(x, qNaN) = fmax(qNaN, x) = fmax(x, qNaN) = x
167 - fmin(sNaN, x) = fmin(x, sNaN) = fmax(sNaN, x) = fmax(x, sNaN) = sNaN
168 - fmin(sNaN, qNaN) = fmin(qNaN, sNaN) = fmax(sNaN, qNaN) =
170 - fmin(sNaN, sNaN) = sNaN. This specification does not define which of
174 - fmin(qNaN, qNaN) = qNaN. This specification does not define which of
/third_party/musl/libc-test/src/api/
Dtgmath.c141 #ifdef fmin in f()
142 {double r = fmin(x,y);} in f()
144 #error no fmin(x,y) in f()
/third_party/ffmpeg/compat/djgpp/
Dmath.h19 double fmin(double, double);
Dmath.c29 FUN(fmin, double, <)
/third_party/musl/src/math/aarch64/
Dfmin.c3 double fmin(double x, double y) in fmin() function
/third_party/musl/src/math/riscv64/
Dfmin.c5 double fmin(double x, double y) in fmin() function
/third_party/musl/src/math/powerpc64/
Dfmin.c5 double fmin(double x, double y) in fmin() function
/third_party/musl/porting/liteos_a/kernel/src/math/
Dfmin.c3 double fmin(double x, double y) in fmin() function
Dfminl.c7 return fmin(x, y); in fminl()
/third_party/musl/src/math/
Dfmin.c3 double fmin(double x, double y) in fmin() function
Dfminl.c7 return fmin(x, y); in fminl()
/third_party/skia/third_party/externals/tint/test/intrinsics/gen/min/
Daa28ad.wgsl.expected.msl9 float2 res = fmin(float2(), float2());
D93cfc4.wgsl.expected.msl9 float3 res = fmin(float3(), float3());
Dc76fa6.wgsl.expected.msl9 float4 res = fmin(float4(), float4());
Daf326d.wgsl.expected.msl9 float res = fmin(1.0f, 1.0f);
/third_party/musl/ndk_musl_include/
Dtgmath.h173 #undef fmin
236 #define fmin(x,y) __tg_real_2(fmin, (x), (y)) macro
/third_party/musl/porting/liteos_m/kernel/include/
Dtgmath.h173 #undef fmin
236 #define fmin(x,y) __tg_real_2(fmin, (x), (y)) macro
/third_party/musl/porting/uniproton/kernel/include/
Dtgmath.h173 #undef fmin
236 #define fmin(x,y) __tg_real_2(fmin, (x), (y)) macro
/third_party/musl/include/
Dtgmath.h173 #undef fmin
236 #define fmin(x,y) __tg_real_2(fmin, (x), (y)) macro
/third_party/musl/libc-test/src/math/
Dfmin.c26 y = fmin(p->x, p->x2); in main()
Dtest_src_math.gni74 "fmin",
/third_party/rust/crates/num-traits/tests/
Dcast.rs185 let fmin = small.raw_offset(-1); localVariable
186 dbg!(" testing min {}\n\tvs. {:.0}\n\tand {:.0}", $t::MIN, fmin, small);
188 assert_eq!(Some($t::MIN), cast::<$f, $t>(fmin));
/third_party/mesa3d/src/compiler/nir/
Dnir_opt_uniform_atomics.c83 OP_NOIMG(fmin, fmin) in parse_atomic_op()
/third_party/flutter/engine/flutter/shell/platform/android/
Dandroid_external_texture_gl.cc78 const double minScale = fmin(scaleX, fabs(scaleY)); in ScaleToFill()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVInstrInfoD.td117 def FMIN_D : FPALUD_rr<0b0010101, 0b000, "fmin.d">;
277 // The RISC-V 2.2 user-level ISA spec defines fmin and fmax as returning the
280 // draft 2.3 ISA spec changes the definition of fmin and fmax in a way that

12345