Home | History | Annotate | Download | only in ADT

Lines Matching refs:Negative

316   /// negative.
381 /// example, should negative and positive zero hash to different codes? Are
451 /// \param Negative - True iff the number should be negative
452 void makeSmallestNormalized(bool Negative = false);
852 /// Factory for Positive and Negative Zero.
854 /// \param Negative True iff the number should be negative.
855 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) {
857 Val.makeZero(Negative);
861 /// Factory for Positive and Negative Infinity.
863 /// \param Negative True iff the number should be negative.
864 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) {
866 Val.makeInf(Negative);
872 /// \param Negative - True iff the NaN generated should be negative.
875 static APFloat getNaN(const fltSemantics &Sem, bool Negative = false,
879 return getQNaN(Sem, Negative, &fill);
881 return getQNaN(Sem, Negative, nullptr);
886 static APFloat getQNaN(const fltSemantics &Sem, bool Negative = false,
889 Val.makeNaN(false, Negative, payload);
894 static APFloat getSNaN(const fltSemantics &Sem, bool Negative = false,
897 Val.makeNaN(true, Negative, payload);
903 /// \param Negative - True iff the number should be negative
904 static APFloat getLargest(const fltSemantics &Sem, bool Negative = false) {
906 Val.makeLargest(Negative);
913 /// \param Negative - True iff the number should be negative
914 static APFloat getSmallest(const fltSemantics &Sem, bool Negative = false) {
916 Val.makeSmallest(Negative);
923 /// \param Negative - True iff the number should be negative
925 bool Negative = false) {
927 Val.makeSmallestNormalized(Negative);