Home | History | Annotate | Download | only in big

Lines Matching defs:Signbit

323 // Signbit returns true if x is negative or negative zero.
324 func (x *Float) Signbit() bool {
541 z.neg = math.Signbit(x) // handle -0, -Inf correctly
618 // SetInf sets z to the infinite Float -Inf if signbit is
619 // set, or +Inf if signbit is not set, and returns z. The
622 func (z *Float) SetInf(signbit bool) *Float {
625 z.neg = signbit