Home
last modified time | relevance | path

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

123

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
Dstring_utils.cpp30 bool Negative, bool Upper) { in appendNumber() argument
33 RAW_CHECK(Base == 10 || !Negative); in appendNumber()
34 RAW_CHECK(AbsoluteValue || !Negative); in appendNumber()
37 if (Negative && MinNumberLength) in appendNumber()
39 if (Negative && PadWithZero) in appendNumber()
60 if (Negative && !PadWithZero) in appendNumber()
80 const bool Negative = (Num < 0); in appendSignedDecimal() local
83 : static_cast<u64>(Negative ? -Num : Num); in appendSignedDecimal()
85 PadWithZero, Negative, /*Upper=*/false); in appendSignedDecimal()
Dflags.inc47 "memory to the OS. Negative values disable the feature.")
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/
DAPFloat.h473 void makeSmallestNormalized(bool Negative = false);
885 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) {
887 Val.makeZero(Negative);
894 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) {
896 Val.makeInf(Negative);
905 static APFloat getNaN(const fltSemantics &Sem, bool Negative = false,
909 return getQNaN(Sem, Negative, &intPayload);
911 return getQNaN(Sem, Negative, nullptr);
916 static APFloat getQNaN(const fltSemantics &Sem, bool Negative = false,
919 Val.makeNaN(false, Negative, payload);
[all …]
/freebsd-12-stable/contrib/googletest/googletest/samples/
Dsample1_unittest.cc76 TEST(FactorialTest, Negative) { in TEST() argument
116 TEST(IsPrimeTest, Negative) { in TEST() argument
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
DAArch64ConditionOptimizer.cpp249 bool Negative = (Opc == AArch64::ADDSWri || Opc == AArch64::ADDSXri); in adjustCmp() local
253 if (Negative) { in adjustCmp()
262 if (OldImm == 0 && ((Negative && Correction == 1) || in adjustCmp()
263 (!Negative && Correction == -1))) { in adjustCmp()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/FileCheck/
DFileCheckImpl.h124 bool Negative; variable
128 explicit ExpressionValue(T Val) : Value(Val), Negative(Val < 0) {} in ExpressionValue()
140 assert((Value != 0 || !Negative) && "Unexpected negative zero!"); in isNegative()
141 return Negative; in isNegative()
DFileCheck.cpp171 if (Negative) in getSignedValue()
182 if (Negative) in getUnsignedValue()
189 if (!Negative) in getAbsolute()
/freebsd-12-stable/contrib/gcc/config/i386/
Di386.opt27 Target RejectNegative Negative(m64) Report InverseMask(64BIT)
43 Target RejectNegative Negative(m32) Report Mask(64BIT)
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/IR/
DConstants.h286 static Constant *getNaN(Type *Ty, bool Negative = false,
288 static Constant *getQNaN(Type *Ty, bool Negative = false,
290 static Constant *getSNaN(Type *Ty, bool Negative = false,
293 static Constant *getInfinity(Type *Ty, bool Negative = false);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Support/
DAPFloat.cpp762 void IEEEFloat::makeNaN(bool SNaN, bool Negative, const APInt *fill) { in makeNaN() argument
764 sign = Negative; in makeNaN()
3614 void IEEEFloat::makeLargest(bool Negative) { in makeLargest() argument
3620 sign = Negative; in makeLargest()
3639 void IEEEFloat::makeSmallest(bool Negative) { in makeSmallest() argument
3645 sign = Negative; in makeSmallest()
3650 void IEEEFloat::makeSmallestNormalized(bool Negative) { in makeSmallestNormalized() argument
3658 sign = Negative; in makeSmallestNormalized()
4146 void IEEEFloat::makeInf(bool Negative) { in makeInf() argument
4148 sign = Negative; in makeInf()
[all …]
DAPInt.cpp1000 bool Negative = isNegative(); in ashrSlowCase() local
1030 std::memset(U.pVal + WordsToMove, Negative ? -1 : 0, in ashrSlowCase()
/freebsd-12-stable/contrib/gcc/
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-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
DSystemZInstrHFP.td101 // Negative absolute value (Load Negative).
DSystemZInstrFP.td356 // Negative absolute value (Load Negative).
DSystemZOperators.td668 // Negative integer absolute.
712 // Negative fused multiply-add and multiply-subtract.
/freebsd-12-stable/contrib/gcc/config/s390/
Dconstraints.md53 ;; n: Negative extended immediate value (-4G .. -1).
341 Negative extended immediate value (-4G .. -1).
/freebsd-12-stable/contrib/gcc/doc/
Doptions.texi103 @item Negative(@var{othername})
106 propagate through the @code{Negative} property of the option to be
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-stable/secure/caroot/blacklisted/
DEC-ACC.pem17 (Negative)11:d4:c2:14:2b:de:21:eb:57:9d:53:fb:0c:22:3b:ff
/freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/
DConstants.cpp989 Constant *ConstantFP::getNaN(Type *Ty, bool Negative, uint64_t Payload) { in getNaN() argument
991 APFloat NaN = APFloat::getNaN(Semantics, Negative, Payload); in getNaN()
1000 Constant *ConstantFP::getQNaN(Type *Ty, bool Negative, APInt *Payload) { in getQNaN() argument
1002 APFloat NaN = APFloat::getQNaN(Semantics, Negative, Payload); in getQNaN()
1011 Constant *ConstantFP::getSNaN(Type *Ty, bool Negative, APInt *Payload) { in getSNaN() argument
1013 APFloat NaN = APFloat::getSNaN(Semantics, Negative, Payload); in getSNaN()
1056 Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) { in getInfinity() argument
1058 Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative)); in getInfinity()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
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-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
DLanaiInstrFormats.td60 // condition bits, `Z' (Zero), `N' (Negative), `V' (oVerflow), and `C'
136 // (Zero), `N' (Negative), `V' (oVerflow), and `C' (Carry), according to
/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
Dsanitizer_flags.inc151 "milliseconds). Negative values mean do not attempt to release "
/freebsd-12-stable/crypto/openssl/doc/man3/
DSSL_CTX_dane_enable.pod166 Negative return values indicate resource problems (out of memory, etc.) in the
/freebsd-12-stable/contrib/gdb/gdb/doc/
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}.

123