Home
last modified time | relevance | path

Searched refs:fmax (Results 1 – 25 of 134) sorted by relevance

123456

/third_party/musl/libc-test/src/functionalext/supplement/math/math_gtest/
Dmath_fmax_test.cpp24 …bool testResult = DoubleUlpCmp(g_fmaxData[i].expected, fmax(g_fmaxData[i].input1, g_fmaxData[i].in…
36 EXPECT_DOUBLE_EQ(17.0, fmax(17.0, 17.0));
37 EXPECT_DOUBLE_EQ(15.0, fmax(15.0, nan("")));
38 EXPECT_DOUBLE_EQ(14.0, fmax(nan(""), 14.0));
/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/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/powerpc64/
Dfmax.c5 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/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/
D44a39d.wgsl.expected.msl9 float res = fmax(1.0f, 1.0f);
D4883ac.wgsl.expected.msl9 float3 res = fmax(float3(), float3());
D462050.wgsl.expected.msl9 float2 res = fmax(float2(), float2());
Da93419.wgsl.expected.msl9 float4 res = fmax(float4(), float4());
/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_m/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/porting/uniproton/kernel/include/
Dtgmath.h172 #undef fmax
235 #define fmax(x,y) __tg_real_2(fmax, (x), (y)) macro
/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/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/mesa3d/src/compiler/nir/tests/
Dserialize_tests.cpp128 nir_ssa_def *fmax = nir_fmax(b, zero, zero); in TEST_P() local
130 nir_alu_instr *fmax_alu = nir_instr_as_alu(fmax->parent_instr); in TEST_P()

123456