Searched refs:IsNegative (Results 1 - 18 of 18) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DNativeFormatting.cpp51 IntegerStyle Style, bool IsNegative) {
60 if (IsNegative)
77 IntegerStyle Style, bool IsNegative = false) {
81 IsNegative);
83 write_unsigned_impl(S, N, MinDigits, Style, IsNegative);
50 write_unsigned_impl(raw_ostream &S, T N, size_t MinDigits, IntegerStyle Style, bool IsNegative) argument
H A DAPFloat.cpp2827 bool IsNegative = str.front() == '-';
2828 if (IsNegative) {
2852 makeNaN(IsSignaling, IsNegative);
2878 makeNaN(IsSignaling, IsNegative, &Payload);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangle.cpp894 bool IsNegative = MangledName.consumeFront('?'); local
899 return {Ret, IsNegative};
907 return {Ret, IsNegative};
921 bool IsNegative = false; local
923 std::tie(Number, IsNegative) = demangleNumber(MangledName);
924 if (IsNegative)
930 bool IsNegative = false; local
932 std::tie(Number, IsNegative) = demangleNumber(MangledName);
936 return IsNegative ? -I : I;
1280 bool IsNegative local
1437 bool IsNegative = false; local
2075 bool IsNegative = false; local
2283 bool IsNegative = false; local
[all...]
H A DMicrosoftDemangleNodes.cpp188 if (IsNegative)
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormattersHelpers.h91 bool IsNegative() const { function in struct:lldb_private::formatters::InferiorSizedWord
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DMicrosoftDemangleNodes.h554 IntegerLiteralNode(uint64_t Value, bool IsNegative) argument
555 : Node(NodeKind::IntegerLiteral), Value(Value), IsNegative(IsNegative) {}
560 bool IsNegative = false; member in struct:llvm::ms_demangle::IntegerLiteralNode
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp356 void parseSingleInteger(bool IsNegative, OperandVector &Operands) { argument
359 if (IsNegative)
367 bool parseSingleFloat(bool IsNegative, OperandVector &Operands) { argument
372 if (IsNegative)
381 bool parseSpecialFloatMaybe(bool IsNegative, OperandVector &Operands) { argument
394 if (IsNegative)
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DMathExtras.h945 const bool IsNegative = (X < 0) ^ (Y < 0);
946 Result = IsNegative ? (0 - UResult) : UResult;
955 if (IsNegative)
/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DCommonArgs.cpp80 bool IsNegative = Name.startswith("no-"); local
81 if (IsNegative)
83 Features.push_back(Args.MakeArgString((IsNegative ? "-" : "+") + Name));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp740 bool IsNegative = false; local
745 IsNegative = true;
753 if (IsNegative && !TrueVal->hasOneUse() && !ICI->hasOneUse())
759 if (IsNegative)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64InstructionSelector.cpp192 /// \p IsNegative is true if the test should be "not zero".
194 MachineInstr *emitTestBit(Register TestReg, uint64_t Bit, bool IsNegative,
1181 Register TestReg, uint64_t Bit, bool IsNegative, MachineBasicBlock *DstMBB,
1189 TestReg = getTestBitReg(TestReg, Bit, IsNegative, MRI);
1206 unsigned Opc = OpcTable[UseWReg][IsNegative];
1297 emitTestBit(LHS, Bit, /*IsNegative = */ false, DestMBB, MIB);
1306 emitTestBit(LHS, Bit, /*IsNegative = */ true, DestMBB, MIB);
1180 emitTestBit( Register TestReg, uint64_t Bit, bool IsNegative, MachineBasicBlock *DstMBB, MachineIRBuilder &MIB) const argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIParser.cpp2702 bool IsNegative = Token.is(MIToken::minus);
2709 if (IsNegative)
/freebsd-13-stable/contrib/googletest/googletest/test/
H A Dgtest_unittest.cc2374 bool IsNegative(T x) { function in namespace:__anon859
2394 EXPECT_PRED1(IsNegative<int>, -5);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelLowering.cpp1057 bool IsNegative = C && C->getAPIntValue().isNegative(); local
1058 if (IsNegative || isSExtFree(LHS) || isSExtFree(RHS))
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprScalar.cpp1481 Value *IsNegative = Builder.CreateICmpSLT(Result, Zero); local
1485 Result = Builder.CreateSelect(IsNegative, Rounded, Result);
H A DCGBuiltin.cpp1454 llvm::Value *IsNegative = CGF.Builder.CreateICmpSLT(Signed, Zero);
1457 CGF.Builder.CreateSelect(IsNegative, AbsOfNegative, Signed);
1468 // than INT_MIN, i.e when |Result| > (INT_MAX + IsNegative).
1473 CGF.Builder.CreateZExt(IsNegative, OpTy));
1481 CGF.Builder.CreateSelect(IsNegative, NegativeResult, UnsignedResult);
1486 IsNegative, CGF.Builder.CreateIsNotNull(UnsignedResult));
1498 IsNegative, CGF.Builder.CreateNeg(UnsignedResult), UnsignedResult);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp6142 bool IsNegative = Parser.getTok().is(AsmToken::Minus); local
6149 if (IsNegative && Val == 0)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp2958 // Return the absolute or negative absolute of Op; IsNegative decides which.
2960 bool IsNegative) {
2962 if (IsNegative)

Completed in 615 milliseconds