Home
last modified time | relevance | path

Searched refs:Negative (Results 1 – 25 of 48) sorted by relevance

12

/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DAPFloat.h452 void makeSmallestNormalized(bool Negative = false);
857 Val.makeZero(Negative);
866 Val.makeInf(Negative);
879 return getQNaN(Sem, Negative, &intPayload);
881 return getQNaN(Sem, Negative, nullptr);
889 Val.makeNaN(false, Negative, payload);
897 Val.makeNaN(true, Negative, payload);
906 Val.makeLargest(Negative);
916 Val.makeSmallest(Negative);
925 bool Negative = false) {
[all …]
/freebsd-12.1/contrib/googletest/googletest/samples/
H A Dsample1_unittest.cc76 TEST(FactorialTest, Negative) { in TEST() argument
116 TEST(IsPrimeTest, Negative) { in TEST() argument
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64ConditionOptimizer.cpp248 bool Negative = (Opc == AArch64::ADDSWri || Opc == AArch64::ADDSXri); in adjustCmp() local
252 if (Negative) { in adjustCmp()
261 if (OldImm == 0 && ((Negative && Correction == 1) || in adjustCmp()
262 (!Negative && Correction == -1))) { in adjustCmp()
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DConstants.h293 static Constant *getNaN(Type *Ty, bool Negative = false, uint64_t Payload = 0);
294 static Constant *getQNaN(Type *Ty, bool Negative = false,
296 static Constant *getSNaN(Type *Ty, bool Negative = false,
299 static Constant *getInfinity(Type *Ty, bool Negative = false);
/freebsd-12.1/contrib/gcc/config/i386/
H A Di386.opt27 Target RejectNegative Negative(m64) Report InverseMask(64BIT)
43 Target RejectNegative Negative(m32) Report Mask(64BIT)
/freebsd-12.1/contrib/llvm/lib/Support/
H A DAPFloat.cpp691 sign = Negative; in makeNaN()
3250 void IEEEFloat::makeLargest(bool Negative) { in makeLargest() argument
3256 sign = Negative; in makeLargest()
3275 void IEEEFloat::makeSmallest(bool Negative) { in makeSmallest() argument
3281 sign = Negative; in makeSmallest()
3286 void IEEEFloat::makeSmallestNormalized(bool Negative) { in makeSmallestNormalized() argument
3294 sign = Negative; in makeSmallestNormalized()
3770 void IEEEFloat::makeInf(bool Negative) { in makeInf() argument
3772 sign = Negative; in makeInf()
3777 void IEEEFloat::makeZero(bool Negative) { in makeZero() argument
[all …]
H A DAPInt.cpp918 bool Negative = isNegative(); in ashrSlowCase() local
948 std::memset(U.pVal + WordsToMove, Negative ? -1 : 0, in ashrSlowCase()
/freebsd-12.1/contrib/gcc/
H A Dcommon.opt1119 Common JoinedOrMissing Negative(gdwarf-2)
1123 Common JoinedOrMissing Negative(gstabs)
1131 Common JoinedOrMissing Negative(gstabs+)
1135 Common JoinedOrMissing Negative(gvms)
1139 Common JoinedOrMissing Negative(gxcoff)
1143 Common JoinedOrMissing Negative(gxcoff+)
1147 Common JoinedOrMissing Negative(gcoff)
/freebsd-12.1/contrib/llvm/lib/Target/SystemZ/
H A DSystemZInstrHFP.td102 // Negative absolute value (Load Negative).
H A DSystemZInstrFP.td344 // Negative absolute value (Load Negative).
H A DSystemZOperators.td634 // Negative integer absolute.
676 // Negative fused multiply-add and multiply-subtract.
H A DSystemZScheduleZEC12.td812 // Load Complement / Negative / Positive
936 // Load Complement / Negative / Positive
H A DSystemZScheduleZ196.td774 // Load Complement / Negative / Positive
898 // Load Complement / Negative / Positive
/freebsd-12.1/contrib/gcc/config/s390/
H A Dconstraints.md53 ;; n: Negative extended immediate value (-4G .. -1).
341 Negative extended immediate value (-4G .. -1).
/freebsd-12.1/contrib/llvm/lib/IR/
H A DConstants.cpp726 Constant *ConstantFP::getNaN(Type *Ty, bool Negative, uint64_t Payload) { in getNaN() argument
728 APFloat NaN = APFloat::getNaN(Semantics, Negative, Payload); in getNaN()
737 Constant *ConstantFP::getQNaN(Type *Ty, bool Negative, APInt *Payload) { in getQNaN() argument
739 APFloat NaN = APFloat::getQNaN(Semantics, Negative, Payload); in getQNaN()
748 Constant *ConstantFP::getSNaN(Type *Ty, bool Negative, APInt *Payload) { in getSNaN() argument
750 APFloat NaN = APFloat::getSNaN(Semantics, Negative, Payload); in getSNaN()
808 Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) { in getInfinity() argument
810 Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative)); in getInfinity()
/freebsd-12.1/contrib/gcc/doc/
H A Doptions.texi103 @item Negative(@var{othername})
106 propagate through the @code{Negative} property of the option to be
H A Dlibgcc.texi325 toward zero. Negative values all become zero.
333 toward zero. Negative values all become zero.
341 toward zero. Negative values all become zero.
590 These functions convert @var{a} to an unsigned integer. Negative values all become zero.
596 These functions convert @var{a} to an unsigned long. Negative values
/freebsd-12.1/contrib/llvm/lib/Target/PowerPC/
H A DREADME_P9.txt178 - QP Absolute/Negative-Absolute/Negate: xsabsqp xsnabsqp xsnegqp
221 - QP (Negative) Multiply-{Add/Subtract}: xsmaddqp xsmsubqp xsnmaddqp xsnmsubqp
245 - Round to Odd of QP (Negative) Multiply-{Add/Subtract}:
/freebsd-12.1/contrib/llvm/lib/Target/Lanai/
H A DLanaiInstrFormats.td61 // condition bits, `Z' (Zero), `N' (Negative), `V' (oVerflow), and `C'
137 // (Zero), `N' (Negative), `V' (oVerflow), and `C' (Carry), according to
/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flags.inc141 "milliseconds). Negative values mean do not attempt to release "
/freebsd-12.1/crypto/openssl/doc/man3/
H A DSSL_CTX_dane_enable.pod166 Negative return values indicate resource problems (out of memory, etc.) in the
/freebsd-12.1/contrib/gdb/gdb/doc/
H A Dstabs.texinfo1333 * Negative Type Numbers:: Builtin types using negative type numbers
1465 actually uses negative type numbers (@pxref{Negative Type Numbers}).
1500 uses negative type numbers (@pxref{Negative Type Numbers}).
1504 uses negative type numbers (@pxref{Negative Type Numbers}).
1518 @node Negative Type Numbers
1519 @subsection Negative Type Numbers
1741 character type (@pxref{Negative Type Numbers}). I'm not sure how this
1990 cases where decimal is perfectly good. Negative decimal values are
3500 Reference to builtin type; see @ref{Negative Type Numbers}.
/freebsd-12.1/share/misc/
H A Dusb_hid_usages1068 0x62 Negative Coefficient
1070 0x64 Negative Saturation
/freebsd-12.1/crypto/openssl/doc/man1/
H A Docsp.pod135 decimal integer unless preceded by B<0x>. Negative integers can also
/freebsd-12.1/contrib/llvm/lib/Target/ARC/
H A DARCInstrFormats.td103 // (Zero/Negative/Carry/oVerflow).

12