Searched refs:fmin (Results 1 - 23 of 23) sorted by relevance

/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_opt_uniform_atomics.c74 OP_NOIMG(fmin, fmin)
H A Dnir_opt_load_store_vectorize.c96 ATOMIC(nir_var_mem_ssbo, ssbo, fmin, 0, 1, -1, 2)
110 ATOMIC(0, deref, fmin, -1, -1, 0, 1)
124 ATOMIC(nir_var_mem_shared, shared, fmin, -1, 0, -1, 1)
138 ATOMIC(nir_var_mem_global, global, fmin, -1, 0, -1, 1)
/xsrc/external/mit/xorg-server.old/dist/dix/
H A Dgetevents.c280 int fmin = 0, tmin = 0, fmax = defmax, tmax = defmax, coord_return; local in function:rescaleValuatorAxis
284 fmin = from->min_value;
292 if(fmin == tmin && fmax == tmax) {
298 if(fmax == fmin) { /* avoid division by 0 */
304 value = (coord + remainder - fmin) * (tmax - tmin) / (fmax - fmin) + tmin;
/xsrc/external/mit/xorg-server/dist/dix/
H A Dgetevents.c302 double fmin = defmin, fmax = defmax; local in function:rescaleValuatorAxis
306 fmin = from->min_value;
314 if (fmin == tmin && fmax == tmax)
317 if (fmax == fmin) /* avoid division by 0 */
320 return (coord - fmin) * (tmax - tmin) / (fmax - fmin) + tmin;
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D20.3.3.rst87 - Revert "nir: Replace an odd comparison involving fmin of -b2f"
H A D21.3.0.rst3824 - nir/opt_algebraic: optimize fmax(-fmin(b, a), b) -> fmax(b, -a)
3825 - Revert "nir/opt_algebraic: optimize fmax(-fmin(b, a), b) -> fmax(b, -a)"
3826 - nir/opt_algebraic: optimize fmax(-fmin(b, a), b) -> fmax(fabs(b), -a)
3865 - ac/llvm: implement nir_intrinsic_image_deref_atomic_{fmin,fmax}
3866 - ac/llvm: implement nir_intrinsic_ssbo_atomic_{fmin,fmax}
3867 - ac/llvm: implement nir_intrinsic_shared_atomic_{fmin,fmax}
3868 - ac/llvm: implement nir_intrinsic_global_atomic_{fmin,fmax}
H A D20.1.0.rst204 - tessellator.cpp:78:7: error: 'fmin' is missing exception
626 - pan/bit: Add fmin/max16 tests
2158 - nir: Mark fmin and fmax as commutative and associative
H A D19.0.0.rst1878 - glsl: Add "built-in" functions to do fmin/fmax(fp64)
H A D19.3.0.rst3014 - nir: fix fmin/fmax support for doubles
H A D20.0.0.rst750 - aco: flush denorms after fmin/fmax on pre-GFX9
H A D21.0.0.rst1506 - Revert "nir: Replace an odd comparison involving fmin of -b2f"
H A D21.1.0.rst2398 - nir/range_analysis: Fix analysis of fmin, fmax, or fsat with NaN source
H A D21.2.0.rst2695 - gallivm: Use range analysis to generate better fmin and fmax code
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/etnaviv/
H A Detnaviv_compiler_nir_emit.c68 OPC(fmin, SELECT, 0_1_0, GT), OPC(fmax, SELECT, 0_1_0, LT),
/xsrc/external/mit/xf86-video-apm/dist/src/
H A Dapm_driver.c1260 double fmax, fmin; local in function:comp_lmn
1273 fmin = fmax / 2.0;
1286 if (!WITHIN(fvco, fmin, fmax))
/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dbrw_nir.c1426 AOP_CASE(fmin): return BRW_AOP_FMIN;
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_peephole.cpp1552 #define CASE(type, dst, fmin, fmax, imin, imax, umin, umax) \
1557 CLAMP(imm0.reg.data.f64, fmin, fmax) : \
1562 CLAMP(imm0.reg.data.f32, fmin, fmax) : \
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_peephole.cpp1605 #define CASE(type, dst, fmin, fmax, imin, imax, umin, umax) \
1610 CLAMP(imm0.reg.data.f64, fmin, fmax) : \
1615 CLAMP(imm0.reg.data.f32, fmin, fmax) : \
/xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/tgsi/
H A Dtgsi_exec.c274 dst->d[0] = fmin(src[0].d[0], src[1].d[0]);
275 dst->d[1] = fmin(src[0].d[1], src[1].d[1]);
276 dst->d[2] = fmin(src[0].d[2], src[1].d[2]);
277 dst->d[3] = fmin(src[0].d[3], src[1].d[3]);
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/panfrost/midgard/
H A Dmidgard_compile.c1203 ALU_CASE(fmin, fmin);
/xsrc/external/mit/MesaLib/dist/src/panfrost/midgard/
H A Dmidgard_compile.c728 ALU_CASE(fmin, fmin);
/xsrc/external/mit/MesaLib/src/compiler/nir/
H A Dnir_constant_expressions.c33149 float16_t dst = fmin(src0, src1);
33175 float32_t dst = fmin(src0, src1);
33197 float64_t dst = fmin(src0, src1);
34407 float16_t dst = fmin(fmax(src0, 0.0), 1.0);
34431 float32_t dst = fmin(fmax(src0, 0.0), 1.0);
34451 float64_t dst = fmin(fmax(src0, 0.0), 1.0);
34487 float16_t dst = fmin(fmax(src0, -1.0), 1.0);
34511 float32_t dst = fmin(fmax(src0, -1.0), 1.0);
34531 float64_t dst = fmin(fmax(src0, -1.0), 1.0);
[all...]
/xsrc/external/mit/MesaLib/dist/src/amd/compiler/
H A Daco_instruction_selection.cpp7629 CASEF(fmin)

Completed in 196 milliseconds