Home
last modified time | relevance | path

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

123

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A 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()
H A Dflags.inc47 "memory to the OS. Negative values disable the feature.")
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ADT/
H A DAPFloat.h535 void makeSmallestNormalized(bool Negative = false);
959 Val.makeZero(Negative);
968 Val.makeInf(Negative);
981 return getQNaN(Sem, Negative, &intPayload);
983 return getQNaN(Sem, Negative, nullptr);
991 Val.makeNaN(false, Negative, payload);
999 Val.makeNaN(true, Negative, payload);
1008 Val.makeLargest(Negative);
1018 Val.makeSmallest(Negative);
1027 bool Negative = false) {
[all …]
/freebsd-14.2/contrib/googletest/googletest/samples/
H A Dsample1_unittest.cc76 TEST(FactorialTest, Negative) { in TEST() argument
113 TEST(IsPrimeTest, Negative) { in TEST() argument
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A 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-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DExpandVectorPredication.cpp362 bool Negative = false; in getNeutralReductionElement() local
384 Negative = true; in getNeutralReductionElement()
389 return !Flags.noNaNs() ? ConstantFP::getQNaN(EltTy, Negative) in getNeutralReductionElement()
391 ? ConstantFP::getInfinity(EltTy, Negative) in getNeutralReductionElement()
393 APFloat::getLargest(Semantics, Negative)); in getNeutralReductionElement()
/freebsd-14.2/sys/contrib/device-tree/Bindings/display/panel/
H A Dsony,tulip-truly-nt35521.yaml30 description: Negative 5V supply
H A Dmantix,mlaf057we51-x.yaml34 description: Negative analog power supply
H A Dsony,td4353-jdi.yaml34 description: Negative 5.5V supply
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DConstants.h284 static Constant *getNaN(Type *Ty, bool Negative = false,
286 static Constant *getQNaN(Type *Ty, bool Negative = false,
288 static Constant *getSNaN(Type *Ty, bool Negative = false,
290 static Constant *getZero(Type *Ty, bool Negative = false);
292 static Constant *getInfinity(Type *Ty, bool Negative = false);
/freebsd-14.2/sys/contrib/device-tree/Bindings/iio/frequency/
H A Dadi,admv1013.yaml58 se-neg - Single-Ended Mode, Negative Side Disabled.
H A Dadi,admv1014.yaml95 se-neg - Single-Ended Mode, Negative Side Disabled.
/freebsd-14.2/crypto/openssl/doc/man3/
H A DBIO_f_prefix.pod36 text, using I<indent>. Negative values are not allowed.
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp887 sign = Negative; in makeNaN()
3896 void IEEEFloat::makeLargest(bool Negative) { in makeLargest() argument
3902 sign = Negative; in makeLargest()
3925 void IEEEFloat::makeSmallest(bool Negative) { in makeSmallest() argument
3931 sign = Negative; in makeSmallest()
3944 sign = Negative; in makeSmallestNormalized()
4475 void IEEEFloat::makeInf(bool Negative) { in makeInf() argument
4478 makeNaN(false, Negative); in makeInf()
4482 sign = Negative; in makeInf()
4487 void IEEEFloat::makeZero(bool Negative) { in makeZero() argument
[all …]
/freebsd-14.2/crypto/openssl/test/recipes/30-test_evp_data/
H A Devpkdf_x942.txt88 # Negative tests
H A Devppkey_ecdsa.txt183 Title = FIPS Negative tests (using different curves and digests)
H A Devppkey_dsa.txt324 Title = Fips Negative Tests (using different key sizes and digests)
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZInstrHFP.td101 // Negative absolute value (Load Negative).
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DConstants.cpp968 Constant *ConstantFP::getNaN(Type *Ty, bool Negative, uint64_t Payload) { in getNaN() argument
970 APFloat NaN = APFloat::getNaN(Semantics, Negative, Payload); in getNaN()
979 Constant *ConstantFP::getQNaN(Type *Ty, bool Negative, APInt *Payload) { in getQNaN() argument
981 APFloat NaN = APFloat::getQNaN(Semantics, Negative, Payload); in getQNaN()
990 Constant *ConstantFP::getSNaN(Type *Ty, bool Negative, APInt *Payload) { in getSNaN() argument
992 APFloat NaN = APFloat::getSNaN(Semantics, Negative, Payload); in getSNaN()
1001 Constant *ConstantFP::getZero(Type *Ty, bool Negative) { in getZero() argument
1003 APFloat NegZero = APFloat::getZero(Semantics, Negative); in getZero()
1027 Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) { in getInfinity() argument
1029 Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative)); in getInfinity()
/freebsd-14.2/sys/contrib/device-tree/Bindings/iio/accel/
H A Dlis302.txt60 Negative values can be used for inverted axis.
/freebsd-14.2/secure/caroot/untrusted/
H A DEC-ACC.pem16 (Negative)11:d4:c2:14:2b:de:21:eb:57:9d:53:fb:0c:22:3b:ff
/freebsd-14.2/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp128 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()
443 bool Negative = Expr.consume_front("-"); in parseNumericOperand() local
446 LiteralValue = toSigned(LiteralValue, Negative); in parseNumericOperand()
/freebsd-14.2/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-14.2/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-14.2/sys/contrib/device-tree/Bindings/mfd/
H A Dqcom-rpm.txt236 === Negative Charge Pump custom properties

123