| /freebsd-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | APFloat.h | 452 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 D | sample1_unittest.cc | 76 TEST(FactorialTest, Negative) { in TEST() argument 116 TEST(IsPrimeTest, Negative) { in TEST() argument
|
| /freebsd-12.1/contrib/llvm/lib/Target/AArch64/ |
| H A D | AArch64ConditionOptimizer.cpp | 248 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 D | Constants.h | 293 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 D | i386.opt | 27 Target RejectNegative Negative(m64) Report InverseMask(64BIT) 43 Target RejectNegative Negative(m32) Report Mask(64BIT)
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | APFloat.cpp | 691 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 D | APInt.cpp | 918 bool Negative = isNegative(); in ashrSlowCase() local 948 std::memset(U.pVal + WordsToMove, Negative ? -1 : 0, in ashrSlowCase()
|
| /freebsd-12.1/contrib/gcc/ |
| H A D | common.opt | 1119 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 D | SystemZInstrHFP.td | 102 // Negative absolute value (Load Negative).
|
| H A D | SystemZInstrFP.td | 344 // Negative absolute value (Load Negative).
|
| H A D | SystemZOperators.td | 634 // Negative integer absolute. 676 // Negative fused multiply-add and multiply-subtract.
|
| H A D | SystemZScheduleZEC12.td | 812 // Load Complement / Negative / Positive 936 // Load Complement / Negative / Positive
|
| H A D | SystemZScheduleZ196.td | 774 // Load Complement / Negative / Positive 898 // Load Complement / Negative / Positive
|
| /freebsd-12.1/contrib/gcc/config/s390/ |
| H A D | constraints.md | 53 ;; n: Negative extended immediate value (-4G .. -1). 341 Negative extended immediate value (-4G .. -1).
|
| /freebsd-12.1/contrib/llvm/lib/IR/ |
| H A D | Constants.cpp | 726 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 D | options.texi | 103 @item Negative(@var{othername}) 106 propagate through the @code{Negative} property of the option to be
|
| H A D | libgcc.texi | 325 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 D | README_P9.txt | 178 - 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 D | LanaiInstrFormats.td | 61 // 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 D | sanitizer_flags.inc | 141 "milliseconds). Negative values mean do not attempt to release "
|
| /freebsd-12.1/crypto/openssl/doc/man3/ |
| H A D | SSL_CTX_dane_enable.pod | 166 Negative return values indicate resource problems (out of memory, etc.) in the
|
| /freebsd-12.1/contrib/gdb/gdb/doc/ |
| H A D | stabs.texinfo | 1333 * 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 D | usb_hid_usages | 1068 0x62 Negative Coefficient 1070 0x64 Negative Saturation
|
| /freebsd-12.1/crypto/openssl/doc/man1/ |
| H A D | ocsp.pod | 135 decimal integer unless preceded by B<0x>. Negative integers can also
|
| /freebsd-12.1/contrib/llvm/lib/Target/ARC/ |
| H A D | ARCInstrFormats.td | 103 // (Zero/Negative/Carry/oVerflow).
|