| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | string_utils.cpp | 30 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()
|
| H A D | flags.inc | 47 "memory to the OS. Negative values disable the feature.")
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APFloat.h | 473 void makeSmallestNormalized(bool Negative = false); 887 Val.makeZero(Negative); 896 Val.makeInf(Negative); 909 return getQNaN(Sem, Negative, &intPayload); 911 return getQNaN(Sem, Negative, nullptr); 919 Val.makeNaN(false, Negative, payload); 927 Val.makeNaN(true, Negative, payload); 936 Val.makeLargest(Negative); 946 Val.makeSmallest(Negative); 955 bool Negative = false) { [all …]
|
| /freebsd-13.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-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ConditionOptimizer.cpp | 249 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-13.1/contrib/llvm-project/llvm/lib/FileCheck/ |
| H A D | FileCheckImpl.h | 124 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()
|
| H A D | FileCheck.cpp | 171 if (Negative) in getSignedValue() 182 if (Negative) in getUnsignedValue() 189 if (!Negative) in getAbsolute()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Constants.h | 286 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-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APFloat.cpp | 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() 4153 void IEEEFloat::makeZero(bool Negative) { in makeZero() argument [all …]
|
| H A D | APInt.cpp | 1000 bool Negative = isNegative(); in ashrSlowCase() local 1030 std::memset(U.pVal + WordsToMove, Negative ? -1 : 0, in ashrSlowCase()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZInstrHFP.td | 101 // Negative absolute value (Load Negative).
|
| H A D | SystemZInstrFP.td | 356 // Negative absolute value (Load Negative).
|
| H A D | SystemZOperators.td | 668 // Negative integer absolute. 712 // Negative fused multiply-add and multiply-subtract.
|
| H A D | SystemZScheduleZ196.td | 773 // Load Complement / Negative / Positive 897 // Load Complement / Negative / Positive
|
| H A D | SystemZScheduleZEC12.td | 811 // Load Complement / Negative / Positive 935 // Load Complement / Negative / Positive
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/iio/accel/ |
| H A D | lis302.txt | 60 Negative values can be used for inverted axis.
|
| /freebsd-13.1/secure/caroot/blacklisted/ |
| H A D | EC-ACC.pem | 17 (Negative)11:d4:c2:14:2b:de:21:eb:57:9d:53:fb:0c:22:3b:ff
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Constants.cpp | 989 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-13.1/contrib/llvm-project/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-13.1/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| H A D | LanaiInstrFormats.td | 60 // condition bits, `Z' (Zero), `N' (Negative), `V' (oVerflow), and `C' 136 // (Zero), `N' (Negative), `V' (oVerflow), and `C' (Carry), according to
|
| /freebsd-13.1/sys/contrib/device-tree/Bindings/mfd/ |
| H A D | qcom-rpm.txt | 236 === Negative Charge Pump custom properties
|
| /freebsd-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
| H A D | sanitizer_flags.inc | 151 "milliseconds). Negative values mean do not attempt to release "
|
| /freebsd-13.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-13.1/share/misc/ |
| H A D | usb_hid_usages | 1068 0x62 Negative Coefficient 1070 0x64 Negative Saturation
|
| /freebsd-13.1/crypto/openssl/doc/man1/ |
| H A D | ocsp.pod | 135 decimal integer unless preceded by B<0x>. Negative integers can also
|