Home | History | Annotate | Download | only in big

Lines Matching defs:Add

465 			// add 1 to mantissa
1217 // TODO(gri) having a combined add-and-shift primitive
1223 z.mant = z.mant.add(x.mant, t)
1226 z.mant = z.mant.add(x.mant, z.mant)
1230 z.mant = z.mant.add(x.mant, y.mant)
1234 z.mant = z.mant.add(t, y.mant)
1237 z.mant = z.mant.add(z.mant, y.mant)
1338 // d extra words needed => add d "0 digits" to x
1426 // Add sets z to the rounded sum x+y and returns z. If z's precision is 0,
1430 // result. Add panics with ErrNaN if x and y are infinities with opposite
1434 func (z *Float) Add(x, y *Float) *Float {
1502 // Precision, rounding, and accuracy reporting are as for Add.
1566 // Precision, rounding, and accuracy reporting are as for Add.
1611 // Precision, rounding, and accuracy reporting are as for Add.