Home
last modified time | relevance | path

Searched refs:fmax (Results 1 – 25 of 113) 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) =
169 fmax(qNaN, sNaN) = sNaN
172 - fmax(sNaN, sNaN) = sNaN. This specification does not define which of
176 - fmax(qNaN, qNaN) = qNaN. This specification does not define which of
/third_party/flutter/engine/flutter/flow/
Dmatrix_decomposition.cc130 rotation_.set(0.5 * sqrt(fmax(1.0 + row[0].fX - row[1].fY - row[2].fZ, 0.0)), in MatrixDecomposition()
131 0.5 * sqrt(fmax(1.0 - row[0].fX + row[1].fY - row[2].fZ, 0.0)), in MatrixDecomposition()
132 0.5 * sqrt(fmax(1.0 - row[0].fX - row[1].fY + row[2].fZ, 0.0)), in MatrixDecomposition()
133 0.5 * sqrt(fmax(1.0 + row[0].fX + row[1].fY + row[2].fZ, 0.0))); in MatrixDecomposition()
/third_party/skia/third_party/externals/swiftshader/tests/MathUnitTests/
Dunittests.cpp71 const float max_c = fmax(fmax(red_c, green_c), blue_c); in RGB9E5_reference()
72 const float exp_p = fmax(-g_sharedexp_bias - 1, floor(log2(max_c))) + 1 + g_sharedexp_bias; in RGB9E5_reference()
/third_party/musl/libc-test/src/api/
Dtgmath.c136 #ifdef fmax in f()
137 {double r = fmax(x,y);} in f()
139 #error no fmax(x,y) in f()
/third_party/ffmpeg/compat/djgpp/
Dmath.h20 double fmax(double, double);
Dmath.c30 FUN(fmax, double, >)
/third_party/musl/src/math/aarch64/
Dfmax.c3 double fmax(double x, double y) in fmax() function
/third_party/musl/src/math/riscv64/
Dfmax.c5 double fmax(double x, double y) in fmax() function
/third_party/musl/src/math/powerpc64/
Dfmax.c5 double fmax(double x, double y) in fmax() function
/third_party/ffmpeg/libavfilter/
Daf_afftdn.c302 d3 = RATIO * prior[0] + RRATIO * fmax(d2 - 1.0, 0.0); in process_frame()
304 gain *= (gain + M_PI_4 / fmax(d2, 1.0E-6)); in process_frame()
317 d3 = RATIO * prior[i] + RRATIO * fmax(d2 - 1.0, 0.0); in process_frame()
319 gain *= (gain + M_PI_4 / fmax(d2, 1.0E-6)); in process_frame()
331 d3 = RATIO * prior[s->fft_length2] + RRATIO * fmax(d2 - 1.0, 0.0); in process_frame()
333 gain *= gain + M_PI_4 / fmax(d2, 1.0E-6); in process_frame()
358 …if (dnch->sfm_results[2] + 0.013 * m * fmax(0.0, dnch->sfm_results[1] - 20.53) >= dnch->sfm_thresh… in process_frame()
428 dnch->band_excit[i] = fmax(dnch->band_excit[i], in process_frame()
544 dnch->abs_var[i] = fmax(s->max_var * dnch->rel_var[i], 1.0); in set_band_parameters()
593 s->last_noise_reduction = fmax(s->last_noise_floor - s->last_residual_floor, 0); in set_parameters()
[all …]
/third_party/musl/porting/liteos_a/kernel/src/math/
Dfmax.c3 double fmax(double x, double y) in fmax() function
Dfmaxl.c7 return fmax(x, y); in fmaxl()
/third_party/musl/src/math/
Dfmax.c3 double fmax(double x, double y) in fmax() function
Dfmaxl.c7 return fmax(x, y); in fmaxl()
/third_party/skia/third_party/externals/tint/test/intrinsics/gen/max/
Da93419.wgsl.expected.msl9 float4 res = fmax(float4(), float4());
D4883ac.wgsl.expected.msl9 float3 res = fmax(float3(), float3());
D44a39d.wgsl.expected.msl9 float res = fmax(1.0f, 1.0f);
D462050.wgsl.expected.msl9 float2 res = fmax(float2(), float2());
/third_party/musl/ndk_musl_include/
Dtgmath.h172 #undef fmax
235 #define fmax(x,y) __tg_real_2(fmax, (x), (y)) macro
/third_party/musl/porting/liteos_m/kernel/include/
Dtgmath.h172 #undef fmax
235 #define fmax(x,y) __tg_real_2(fmax, (x), (y)) macro
/third_party/musl/porting/uniproton/kernel/include/
Dtgmath.h172 #undef fmax
235 #define fmax(x,y) __tg_real_2(fmax, (x), (y)) macro
/third_party/musl/include/
Dtgmath.h172 #undef fmax
235 #define fmax(x,y) __tg_real_2(fmax, (x), (y)) macro
/third_party/musl/libc-test/src/math/
Dfmax.c26 y = fmax(p->x, p->x2); in main()
/third_party/skia/third_party/externals/tint/test/bug/chromium/
D1273230.wgsl.expected.msl87 float cubeSize = fmax(fmax(bbMax[0], bbMax[1]), bbSize[2]);
/third_party/rust/crates/num-traits/tests/
Dcast.rs199 let fmax = large.raw_offset(-1); localVariable
200 dbg!(" testing max {}\n\tvs. {:.0}\n\tand {:.0}", max, fmax, large);
202 assert_eq!(Some(max), cast::<$f, $t>(fmax));

12345