| /freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | string_utils.cpp | 21 bool PadWithZero, bool Negative, bool Upper) { in appendNumber() argument 24 RAW_CHECK(Base == 10 || !Negative); in appendNumber() 25 RAW_CHECK(AbsoluteValue || !Negative); in appendNumber() 27 if (Negative && MinNumberLength) in appendNumber() 29 if (Negative && PadWithZero) { in appendNumber() 51 if (Negative && !PadWithZero) in appendNumber() 69 const bool Negative = (Num < 0); in appendSignedDecimal() local 72 : static_cast<u64>(Negative ? -Num : Num); in appendSignedDecimal() 73 appendNumber(UnsignedNum, 10, MinNumberLength, PadWithZero, Negative, in appendSignedDecimal()
|
| H A D | string_utils.h | 36 bool PadWithZero, bool Negative, bool Upper);
|
| H A D | flags.inc | 47 "memory to the OS. Negative values disable the feature.")
|
| /freebsd/contrib/googletest/googletest/samples/ |
| H A D | sample1_unittest.cc | 76 TEST(FactorialTest, Negative) { in TEST() argument 113 TEST(IsPrimeTest, Negative) { in TEST() argument
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | APFloat.h | 654 LLVM_ABI void makeSmallestNormalized(bool Negative = false); 1103 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) { 1105 Val.makeZero(Negative); 1112 static APFloat getOne(const fltSemantics &Sem, bool Negative = false) { 1114 if (Negative) 1122 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) { 1124 Val.makeInf(Negative); 1133 static APFloat getNaN(const fltSemantics &Sem, bool Negative = false, 1137 return getQNaN(Sem, Negative, &intPayload); 1139 return getQNaN(Sem, Negative, nullptr); [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/SandboxIR/ |
| H A D | Constant.cpp | 110 Constant *ConstantFP::getNaN(Type *Ty, bool Negative, uint64_t Payload) { in getNaN() argument 111 auto *LLVMC = llvm::ConstantFP::getNaN(Ty->LLVMTy, Negative, Payload); in getNaN() 114 Constant *ConstantFP::getQNaN(Type *Ty, bool Negative, APInt *Payload) { in getQNaN() argument 115 auto *LLVMC = llvm::ConstantFP::getQNaN(Ty->LLVMTy, Negative, Payload); in getQNaN() 118 Constant *ConstantFP::getSNaN(Type *Ty, bool Negative, APInt *Payload) { in getSNaN() argument 119 auto *LLVMC = llvm::ConstantFP::getSNaN(Ty->LLVMTy, Negative, Payload); in getSNaN() 122 Constant *ConstantFP::getZero(Type *Ty, bool Negative) { in getZero() argument 123 auto *LLVMC = llvm::ConstantFP::getZero(Ty->LLVMTy, Negative); in getZero() 130 Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) { in getInfinity() argument 131 auto *LLVMC = llvm::ConstantFP::getInfinity(Ty->LLVMTy, Negative); in getInfinity()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64ConditionOptimizer.cpp | 247 bool Negative = (Opc == AArch64::ADDSWri || Opc == AArch64::ADDSXri); in adjustCmp() local 251 if (Negative) { in adjustCmp() 260 if (OldImm == 0 && ((Negative && Correction == 1) || in adjustCmp() 261 (!Negative && Correction == -1))) { in adjustCmp()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Constants.h | 308 LLVM_ABI static Constant *getNaN(Type *Ty, bool Negative = false, 310 LLVM_ABI static Constant *getQNaN(Type *Ty, bool Negative = false, 312 LLVM_ABI static Constant *getSNaN(Type *Ty, bool Negative = false, 314 LLVM_ABI static Constant *getZero(Type *Ty, bool Negative = false); 316 LLVM_ABI static Constant *getInfinity(Type *Ty, bool Negative = false);
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | APFloat.cpp | 940 void IEEEFloat::makeNaN(bool SNaN, bool Negative, const APInt *fill) { in makeNaN() argument 944 if (Negative && !semantics->hasSignedRepr) in makeNaN() 949 sign = Negative; in makeNaN() 4159 void IEEEFloat::makeLargest(bool Negative) { in makeLargest() argument 4160 if (Negative && !semantics->hasSignedRepr) in makeLargest() 4168 sign = Negative; in makeLargest() 4191 void IEEEFloat::makeSmallest(bool Negative) { in makeSmallest() argument 4192 if (Negative && !semantics->hasSignedRepr) in makeSmallest() 4200 sign = Negative; in makeSmallest() 4205 void IEEEFloat::makeSmallestNormalized(bool Negative) { in makeSmallestNormalized() argument [all …]
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | BIO_f_prefix.pod | 36 text, using I<indent>. Negative values are not allowed.
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/ |
| H A D | Constant.h | 279 LLVM_ABI static Constant *getNaN(Type *Ty, bool Negative = false, 281 LLVM_ABI static Constant *getQNaN(Type *Ty, bool Negative = false, 283 LLVM_ABI static Constant *getSNaN(Type *Ty, bool Negative = false, 285 LLVM_ABI static Constant *getZero(Type *Ty, bool Negative = false); 288 LLVM_ABI static Constant *getInfinity(Type *Ty, bool Negative = false);
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Constants.cpp | 1026 Constant *ConstantFP::getNaN(Type *Ty, bool Negative, uint64_t Payload) { in getNaN() argument 1028 APFloat NaN = APFloat::getNaN(Semantics, Negative, Payload); in getNaN() 1037 Constant *ConstantFP::getQNaN(Type *Ty, bool Negative, APInt *Payload) { in getQNaN() argument 1039 APFloat NaN = APFloat::getQNaN(Semantics, Negative, Payload); in getQNaN() 1048 Constant *ConstantFP::getSNaN(Type *Ty, bool Negative, APInt *Payload) { in getSNaN() argument 1050 APFloat NaN = APFloat::getSNaN(Semantics, Negative, Payload); in getSNaN() 1059 Constant *ConstantFP::getZero(Type *Ty, bool Negative) { in getZero() argument 1061 APFloat NegZero = APFloat::getZero(Semantics, Negative); in getZero() 1105 Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) { in getInfinity() argument 1107 Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative)); in getInfinity()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZInstrHFP.td | 101 // Negative absolute value (Load Negative).
|
| H A D | SystemZInstrFP.td | 386 // Negative absolute value (Load Negative).
|
| /freebsd/crypto/openssl/test/recipes/30-test_evp_data/ |
| H A D | evpkdf_x942.txt | 89 # Negative tests
|
| H A D | evppkey_ecdsa_sigalg.txt | 182 Title = FIPS Negative tests (using different curves and digests)
|
| H A D | evppkey_ecdsa.txt | 183 Title = FIPS Negative tests (using different curves and digests)
|
| H A D | evppkey_dsa_sigalg.txt | 327 Title = Fips Negative Tests (using different key sizes and digests)
|
| H A D | evppkey_dsa.txt | 327 Title = Fips Negative Tests (using different key sizes and digests)
|
| /freebsd/sys/contrib/device-tree/Bindings/iio/accel/ |
| H A D | lis302.txt | 60 Negative values can be used for inverted axis.
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | LoopUtils.cpp | 1248 bool Negative = false; in getReductionIdentity() local 1272 Negative = true; in getReductionIdentity() 1280 ? ConstantFP::getQNaN(Ty, Negative) in getReductionIdentity() 1282 ? ConstantFP::getInfinity(Ty, Negative) in getReductionIdentity() 1283 : ConstantFP::get(Ty, APFloat::getLargest(Semantics, Negative)); in getReductionIdentity()
|
| /freebsd/contrib/llvm-project/llvm/lib/FileCheck/ |
| H A D | FileCheck.cpp | 127 static APInt toSigned(APInt AbsVal, bool Negative) { in toSigned() argument 131 if (Negative) in toSigned() 139 bool Negative = StrVal.consume_front("-"); in valueFromStringRepr() local 152 return toSigned(ResultValue, Negative); in valueFromStringRepr() 486 bool Negative = Expr.consume_front("-"); in parseNumericOperand() local 489 LiteralValue = toSigned(LiteralValue, Negative); in parseNumericOperand()
|
| /freebsd/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/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/sys/contrib/device-tree/Bindings/mfd/ |
| H A D | qcom-rpm.txt | 236 === Negative Charge Pump custom properties
|