Home
last modified time | relevance | path

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

123

/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dstring_utils.cpp21 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 Dstring_utils.h36 bool PadWithZero, bool Negative, bool Upper);
H A Dflags.inc47 "memory to the OS. Negative values disable the feature.")
/freebsd/contrib/googletest/googletest/samples/
H A Dsample1_unittest.cc76 TEST(FactorialTest, Negative) { in TEST() argument
113 TEST(IsPrimeTest, Negative) { in TEST() argument
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h654 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 DConstant.cpp110 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 DAArch64ConditionOptimizer.cpp247 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 DConstants.h308 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 DAPFloat.cpp940 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 DBIO_f_prefix.pod36 text, using I<indent>. Negative values are not allowed.
/freebsd/contrib/llvm-project/llvm/include/llvm/SandboxIR/
H A DConstant.h279 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 DConstants.cpp1026 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 DSystemZInstrHFP.td101 // Negative absolute value (Load Negative).
H A DSystemZInstrFP.td386 // Negative absolute value (Load Negative).
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/
H A Devpkdf_x942.txt89 # Negative tests
H A Devppkey_ecdsa_sigalg.txt182 Title = FIPS Negative tests (using different curves and digests)
H A Devppkey_ecdsa.txt183 Title = FIPS Negative tests (using different curves and digests)
H A Devppkey_dsa_sigalg.txt327 Title = Fips Negative Tests (using different key sizes and digests)
H A Devppkey_dsa.txt327 Title = Fips Negative Tests (using different key sizes and digests)
/freebsd/sys/contrib/device-tree/Bindings/iio/accel/
H A Dlis302.txt60 Negative values can be used for inverted axis.
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp1248 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 DFileCheck.cpp127 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 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/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiInstrFormats.td60 // 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 Dqcom-rpm.txt236 === Negative Charge Pump custom properties

123