Home
last modified time | relevance | path

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

1234

/openbsd-src/gnu/llvm/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.")
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAPFloat.h487 void makeSmallestNormalized(bool Negative = false);
899 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) {
901 Val.makeZero(Negative);
908 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) {
910 Val.makeInf(Negative);
919 static APFloat getNaN(const fltSemantics &Sem, bool Negative = false,
923 return getQNaN(Sem, Negative, &intPayload);
925 return getQNaN(Sem, Negative, nullptr);
930 static APFloat getQNaN(const fltSemantics &Sem, bool Negative = false,
933 Val.makeNaN(false, Negative, payload);
[all …]
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/usr.bin/perl/t/op/
H A Dvec.t63 like($@, qr/^Negative offset to vec in lvalue context/);
178 like($@, qr/^Negative offset to vec in lvalue context/,
244 like($@, qr/Negative offset to vec in lvalue context/, "RT131083 lval -1");
H A Dsysio.t22 like($@, qr/^Negative length /);
63 like($@, qr/^Negative length /);
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DExpandVectorPredication.cpp276 bool Negative = false; in getNeutralReductionElement() local
298 Negative = true; in getNeutralReductionElement()
303 return !Flags.noNaNs() ? ConstantFP::getQNaN(EltTy, Negative) in getNeutralReductionElement()
305 ? ConstantFP::getInfinity(EltTy, Negative) in getNeutralReductionElement()
307 APFloat::getLargest(Semantics, Negative)); in getNeutralReductionElement()
/openbsd-src/gnu/usr.bin/perl/ext/POSIX/
H A Dtypemap30 croak(\"%s: Negative signals are not allowed %d\",
/openbsd-src/gnu/llvm/llvm/lib/FileCheck/
H A DFileCheckImpl.h124 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()
/openbsd-src/gnu/usr.bin/perl/dist/Thread-Queue/t/
H A D03_peek.t33 is($q->peek(-3), 9, 'Negative peek');
/openbsd-src/gnu/llvm/llvm/include/llvm/IR/
H A DConstants.h285 static Constant *getNaN(Type *Ty, bool Negative = false,
287 static Constant *getQNaN(Type *Ty, bool Negative = false,
289 static Constant *getSNaN(Type *Ty, bool Negative = false,
291 static Constant *getZero(Type *Ty, bool Negative = false);
293 static Constant *getInfinity(Type *Ty, bool Negative = false);
/openbsd-src/gnu/gcc/gcc/config/i386/
H A Di386.opt27 Target RejectNegative Negative(m64) Report InverseMask(64BIT)
43 Target RejectNegative Negative(m32) Report Mask(64BIT)
/openbsd-src/gnu/usr.bin/perl/dist/Storable/t/
H A Dthreads.t35 # - is \W, so can't use \b at start. Negative look ahead and look behind
/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DAPFloat.cpp791 void IEEEFloat::makeNaN(bool SNaN, bool Negative, const APInt *fill) { in makeNaN() argument
793 sign = Negative; in makeNaN()
3874 void IEEEFloat::makeLargest(bool Negative) { in makeLargest() argument
3880 sign = Negative; in makeLargest()
3902 void IEEEFloat::makeSmallest(bool Negative) { in makeSmallest() argument
3908 sign = Negative; in makeSmallest()
3913 void IEEEFloat::makeSmallestNormalized(bool Negative) { in makeSmallestNormalized() argument
3921 sign = Negative; in makeSmallestNormalized()
4423 void IEEEFloat::makeInf(bool Negative) { in makeInf() argument
4426 makeNaN(false, Negative); in makeInf()
[all …]
/openbsd-src/gnu/gcc/gcc/
H A Dcommon.opt1119 Common JoinedOrMissing Negative(gdwarf-2)
1123 Common JoinedOrMissing Negative(gstabs)
1131 Common JoinedOrMissing Negative(gstabs+)
1135 Common JoinedOrMissing Negative(gvms)
1139 Common JoinedOrMissing Negative(gxcoff)
1143 Common JoinedOrMissing Negative(gxcoff+)
1147 Common JoinedOrMissing Negative(gcoff)
/openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZInstrHFP.td101 // Negative absolute value (Load Negative).
/openbsd-src/gnu/usr.bin/perl/ext/POSIX/t/
H A Dsigaction.t236 like($@, qr/Negative signals/,
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DConstants.cpp975 Constant *ConstantFP::getNaN(Type *Ty, bool Negative, uint64_t Payload) { in getNaN() argument
977 APFloat NaN = APFloat::getNaN(Semantics, Negative, Payload); in getNaN()
986 Constant *ConstantFP::getQNaN(Type *Ty, bool Negative, APInt *Payload) { in getQNaN() argument
988 APFloat NaN = APFloat::getQNaN(Semantics, Negative, Payload); in getQNaN()
997 Constant *ConstantFP::getSNaN(Type *Ty, bool Negative, APInt *Payload) { in getSNaN() argument
999 APFloat NaN = APFloat::getSNaN(Semantics, Negative, Payload); in getSNaN()
1008 Constant *ConstantFP::getZero(Type *Ty, bool Negative) { in getZero() argument
1010 APFloat NegZero = APFloat::getZero(Semantics, Negative); in getZero()
1041 Constant *ConstantFP::getInfinity(Type *Ty, bool Negative) { in getInfinity() argument
1043 Constant *C = get(Ty->getContext(), APFloat::getInf(Semantics, Negative)); in getInfinity()
/openbsd-src/gnu/gcc/gcc/config/s390/
H A Dconstraints.md53 ;; n: Negative extended immediate value (-4G .. -1).
341 Negative extended immediate value (-4G .. -1).
/openbsd-src/gnu/gcc/gcc/doc/
H A Doptions.texi103 @item Negative(@var{othername})
106 propagate through the @code{Negative} property of the option to be
H A Dlibgcc.texi320 toward zero. Negative values all become zero.
328 toward zero. Negative values all become zero.
336 toward zero. Negative values all become zero.
585 These functions convert @var{a} to an unsigned integer. Negative values all become zero.
591 These functions convert @var{a} to an unsigned long. Negative values
/openbsd-src/gnu/usr.bin/perl/dist/Tie-File/
H A DChangeLog77 Bug fixes: Negative 'nrecs' argument to 'splice' is now handled
/openbsd-src/gnu/llvm/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}:
/openbsd-src/gnu/llvm/clang/docs/
H A DThreadSafetyAnalysis.rst481 * ``-Wthread-safety-negative``: Negative capabilities. Off by default.
492 Negative Capabilities
536 Negative requirements are an alternative EXCLUDES that provide
570 Negative requirements are an experimental feature which is off by default,
/openbsd-src/gnu/llvm/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

1234