/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/llvm-project/llvm/include/llvm/ADT/ |
H A D | APFloat.h | 558 void makeSmallestNormalized(bool Negative = false); 988 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) { 990 Val.makeZero(Negative); 997 static APFloat getOne(const fltSemantics &Sem, bool Negative = false) { 998 return APFloat(Sem, Negative ? -1 : 1); 1004 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) { 1006 Val.makeInf(Negative); 1015 static APFloat getNaN(const fltSemantics &Sem, bool Negative = false, 1019 return getQNaN(Sem, Negative, &intPayload); 1021 return getQNaN(Sem, Negative, nullptr); [all …]
|
/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/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/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | ExpandVectorPredication.cpp | 368 bool Negative = false; in getNeutralReductionElement() local 392 Negative = true; in getNeutralReductionElement() 401 ? ConstantFP::getQNaN(EltTy, Negative) in getNeutralReductionElement() 403 ? ConstantFP::getInfinity(EltTy, Negative) in getNeutralReductionElement() 405 APFloat::getLargest(Semantics, Negative)); in getNeutralReductionElement()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Constants.h | 300 static Constant *getNaN(Type *Ty, bool Negative = false, 302 static Constant *getQNaN(Type *Ty, bool Negative = false, 304 static Constant *getSNaN(Type *Ty, bool Negative = false, 306 static Constant *getZero(Type *Ty, bool Negative = false); 308 static Constant *getInfinity(Type *Ty, bool Negative = false);
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | BIO_f_prefix.pod | 36 text, using I<indent>. Negative values are not allowed.
|
H A D | SSL_CTX_dane_enable.pod | 166 Negative return values indicate resource problems (out of memory, etc.) in the
|
/freebsd/crypto/openssl/test/recipes/30-test_evp_data/ |
H A D | evpkdf_x942.txt | 88 # Negative tests
|
H A D | evppkey_ecdsa.txt | 183 Title = FIPS Negative tests (using different curves and digests)
|
H A D | evppkey_dsa.txt | 324 Title = Fips Negative Tests (using different key sizes and digests)
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | APFloat.cpp | 911 void IEEEFloat::makeNaN(bool SNaN, bool Negative, const APInt *fill) { in makeNaN() argument 916 sign = Negative; in makeNaN() 3994 void IEEEFloat::makeLargest(bool Negative) { in makeLargest() argument 4000 sign = Negative; in makeLargest() 4023 void IEEEFloat::makeSmallest(bool Negative) { in makeSmallest() argument 4029 sign = Negative; in makeSmallest() 4034 void IEEEFloat::makeSmallestNormalized(bool Negative) { in makeSmallestNormalized() argument 4042 sign = Negative; in makeSmallestNormalized() 4593 void IEEEFloat::makeInf(bool Negative) { in makeInf() argument 4599 makeNaN(false, Negative); in makeInf() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Constants.cpp | 1005 Constant *ConstantFP::getNaN(Type *Ty, bool Negative, uint64_t Payload) { in getNaN() argument 1007 APFloat NaN = APFloat::getNaN(Semantics, Negative, Payload); in getNaN() 1016 Constant *ConstantFP::getQNaN(Type *Ty, bool Negative, APInt *Payload) { in getQNaN() argument 1018 APFloat NaN = APFloat::getQNaN(Semantics, Negative, Payload); in getQNaN() 1027 Constant *ConstantFP::getSNaN(Type *Ty, bool Negative, APInt *Payload) { in getSNaN() argument 1029 APFloat NaN = APFloat::getSNaN(Semantics, Negative, Payload); in getSNaN() 1038 Constant *ConstantFP::getZero(Type *Ty, bool Negative) { in getZero() argument 1040 APFloat NegZero = APFloat::getZero(Semantics, Negative); in getZero() 1084 Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) { in getInfinity() argument 1086 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 | 348 // Negative absolute value (Load Negative).
|
H A D | SystemZOperators.td | 779 // Negative integer absolute. 823 // Negative fused multiply-add and multiply-subtract.
|
/freebsd/sys/contrib/device-tree/Bindings/iio/accel/ |
H A D | lis302.txt | 60 Negative values can be used for inverted axis.
|
/freebsd/secure/caroot/untrusted/ |
H A D | EC-ACC.pem | 16 (Negative)11:d4:c2:14:2b:de:21:eb:57:9d:53:fb:0c:22:3b:ff
|
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/ |
H A D | FileCheck.cpp | 128 static APInt toSigned(APInt AbsVal, bool Negative) { in toSigned() argument 132 if (Negative) in toSigned() 140 bool Negative = StrVal.consume_front("-"); in valueFromStringRepr() local 153 return toSigned(ResultValue, Negative); in valueFromStringRepr() 449 bool Negative = Expr.consume_front("-"); in parseNumericOperand() local 452 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
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_flags.inc | 154 "milliseconds). Negative values mean do not attempt to release "
|