/third_party/mesa3d/docs/_extra/specs/ |
D | INTEL_shader_atomic_float_minmax.txt | 166 - 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/ |
D | tgmath.c | 141 #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/ |
D | math.h | 19 double fmin(double, double);
|
D | math.c | 29 FUN(fmin, double, <)
|
/third_party/musl/src/math/aarch64/ |
D | fmin.c | 3 double fmin(double x, double y) in fmin() function
|
/third_party/musl/src/math/riscv64/ |
D | fmin.c | 5 double fmin(double x, double y) in fmin() function
|
/third_party/musl/src/math/powerpc64/ |
D | fmin.c | 5 double fmin(double x, double y) in fmin() function
|
/third_party/musl/porting/liteos_a/kernel/src/math/ |
D | fmin.c | 3 double fmin(double x, double y) in fmin() function
|
D | fminl.c | 7 return fmin(x, y); in fminl()
|
/third_party/musl/src/math/ |
D | fmin.c | 3 double fmin(double x, double y) in fmin() function
|
D | fminl.c | 7 return fmin(x, y); in fminl()
|
/third_party/skia/third_party/externals/tint/test/intrinsics/gen/min/ |
D | aa28ad.wgsl.expected.msl | 9 float2 res = fmin(float2(), float2());
|
D | 93cfc4.wgsl.expected.msl | 9 float3 res = fmin(float3(), float3());
|
D | c76fa6.wgsl.expected.msl | 9 float4 res = fmin(float4(), float4());
|
D | af326d.wgsl.expected.msl | 9 float res = fmin(1.0f, 1.0f);
|
/third_party/musl/ndk_musl_include/ |
D | tgmath.h | 173 #undef fmin 236 #define fmin(x,y) __tg_real_2(fmin, (x), (y)) macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | tgmath.h | 173 #undef fmin 236 #define fmin(x,y) __tg_real_2(fmin, (x), (y)) macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | tgmath.h | 173 #undef fmin 236 #define fmin(x,y) __tg_real_2(fmin, (x), (y)) macro
|
/third_party/musl/include/ |
D | tgmath.h | 173 #undef fmin 236 #define fmin(x,y) __tg_real_2(fmin, (x), (y)) macro
|
/third_party/musl/libc-test/src/math/ |
D | fmin.c | 26 y = fmin(p->x, p->x2); in main()
|
D | test_src_math.gni | 74 "fmin",
|
/third_party/rust/crates/num-traits/tests/ |
D | cast.rs | 185 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/ |
D | nir_opt_uniform_atomics.c | 83 OP_NOIMG(fmin, fmin) in parse_atomic_op()
|
/third_party/flutter/engine/flutter/shell/platform/android/ |
D | android_external_texture_gl.cc | 78 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/ |
D | RISCVInstrInfoD.td | 117 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
|