Lines Matching refs:fp64
185 - soft-fp64: \__fsat64 incorrectly returns NaN for a NaN input. It
2173 - soft-fp64/b2f: Reimplement using bitwise logic ops
2174 - soft-fp64: Don't open-code umulExtended
2175 - soft-fp64: Simplify \__countLeadingZeros32 function
2176 - soft-fp64: Pick a single idiom for treating sign value as a Boolean
2177 - soft-fp64: Store sign value as 0 or 0x80000000
2178 - soft-fp64/fneg: Don't treat NaN specially
2179 - soft-fp64/flt: Perform checks in a different order
2180 - soft-fp64/fsat: Correctly handle NaN
2181 - soft-fp64/fsat: Micro-optimize x < 0 test
2182 - soft-fp64/fsat: Micro-optimize x >= 1 test
2183 - soft-fp64: Relax the way NaN is propagated
2184 - soft-fp64/ffloor: Simplify the >= 0 comparison
2185 - soft-fp64: Optimize \__fmin64 and \__fmax64 by using different
2187 - soft-fp64/fadd: Instead of tracking "b < a", track sign of the
2189 - soft-fp64/fadd: Massively split the live range of zFrac0 and zFrac1
2190 - soft-fp64/fadd: Pick zero or non-zero result based on subtraction
2192 - soft-fp64/fadd: Just let the subtraction happen when the result will
2194 - soft-fp64/fadd: Delete a redundant condition check
2195 - soft-fp64/fadd: Reformat after previous commit
2196 - soft-fp64/fadd: Combine an if-statement into the preceeding
2198 - soft-fp64/fadd: Rename aFrac and bFrac variables
2199 - soft-fp64/fadd: Use absolute value of expDiff
2200 - soft-fp64/fadd: Move common code out of both branches of an
2202 - soft-fp64/fadd: Common code optimization for differing sign case
2203 - soft-fp64: Split a block that was missing a cast on a comparison