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

  /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
nir_opt_algebraic.py 940 def ldexp(f, exp, bits): function
945 # ldexp(FLT_MAX, -278) to get it to flush all the way to zero. The GLSL
963 # technically defines ldexp as f * 2.0^exp, simply multiplying once doesn't
973 (('ldexp@16', 'x', 'exp'), ldexp('x', 'exp', 16), 'options->lower_ldexp'),
974 (('ldexp@32', 'x', 'exp'), ldexp('x', 'exp', 32), 'options->lower_ldexp'),
975 (('ldexp@64', 'x', 'exp'), ldexp('x', 'exp', 64), 'options->lower_ldexp'),
  /xsrc/external/mit/MesaLib/dist/src/compiler/nir/
nir_opt_algebraic.py 2139 def ldexp(f, exp, bits): function
2143 # FLT_MAX, you actually have to do ldexp(FLT_MAX, -278) to get it to flush
2152 # a floating-point value using ldexp() should yield the original input
2180 # technically defines ldexp as f * 2.0^exp, simply multiplying once doesn't
2190 (('ldexp@16', 'x', 'exp'), ldexp('x', 'exp', 16), 'options->lower_ldexp'),
2191 (('ldexp@32', 'x', 'exp'), ldexp('x', 'exp', 32), 'options->lower_ldexp'),
2192 (('ldexp@64', 'x', 'exp'), ldexp('x', 'exp', 64), 'options->lower_ldexp')
    [all...]

Completed in 10 milliseconds