HomeSort by: relevance | last modified time | path
    Searched defs:fmax (Results 1 - 4 of 4) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/tests/
serialize_tests.cpp 128 nir_ssa_def *fmax = nir_fmax(b, zero, zero); local
130 nir_alu_instr *fmax_alu = nir_instr_as_alu(fmax->parent_instr);
  /xsrc/external/mit/xorg-server.old/dist/dix/
getevents.c 280 int fmin = 0, tmin = 0, fmax = defmax, tmax = defmax, coord_return; local
285 fmax = from->max_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/xf86-video-apm/dist/src/
apm_driver.c 1260 double fmax, fmin; local
1268 fmax = 370000.0;
1270 fmax = 250000.0;
1273 fmin = fmax / 2.0;
1286 if (!WITHIN(fvco, fmin, fmax))
  /xsrc/external/mit/xorg-server/dist/dix/
getevents.c 302 double fmin = defmin, fmax = defmax; local
307 fmax = from->max_value + 1;
314 if (fmin == tmin && fmax == tmax)
317 if (fmax == fmin) /* avoid division by 0 */
320 return (coord - fmin) * (tmax - tmin) / (fmax - fmin) + tmin;

Completed in 13 milliseconds