Home
last modified time | relevance | path

Searched refs:Neg (Results 1 – 25 of 57) sorted by relevance

123

/external/llvm/include/llvm/ADT/
DAPFloat.h569 void makeLargest(bool Neg = false);
570 void makeSmallest(bool Neg = false);
571 void makeNaN(bool SNaN = false, bool Neg = false,
575 void makeInf(bool Neg = false);
576 void makeZero(bool Neg = false);
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
DReassociate.cpp212 static Instruction *LowerNegateToMultiply(Instruction *Neg, in LowerNegateToMultiply() argument
214 Constant *Cst = Constant::getAllOnesValue(Neg->getType()); in LowerNegateToMultiply()
216 Instruction *Res = BinaryOperator::CreateMul(Neg->getOperand(1), Cst, "",Neg); in LowerNegateToMultiply()
217 ValueRankMap.erase(Neg); in LowerNegateToMultiply()
218 Res->takeName(Neg); in LowerNegateToMultiply()
219 Neg->replaceAllUsesWith(Res); in LowerNegateToMultiply()
220 Res->setDebugLoc(Neg->getDebugLoc()); in LowerNegateToMultiply()
221 Neg->eraseFromParent(); in LowerNegateToMultiply()
/external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
DSystemZISelDAGToDAG.cpp248 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS); in MatchAddress() local
249 AM.IndexReg = Neg; in MatchAddress()
257 if (Neg.getNode()->getNodeId() == -1 || in MatchAddress()
258 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) { in MatchAddress()
259 CurDAG->RepositionNode(N.getNode(), Neg.getNode()); in MatchAddress()
260 Neg.getNode()->setNodeId(N.getNode()->getNodeId()); in MatchAddress()
/external/llvm/lib/Support/
Draw_ostream.cpp440 bool Neg = (FN.DecValue < 0); in operator <<() local
441 uint64_t N = Neg ? -static_cast<uint64_t>(FN.DecValue) : FN.DecValue; in operator <<()
448 if (Neg) in operator <<()
452 if (Neg) in operator <<()
/external/apache-xml/src/main/java/org/apache/xpath/operations/
DNeg.java30 public class Neg extends UnaryOperation class
/external/llvm/lib/Option/
DArgList.cpp221 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default) const { in hasFlag() argument
222 if (Arg *A = getLastArg(Pos, Neg)) in hasFlag()
227 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier PosAlias, OptSpecifier Neg, in hasFlag() argument
229 if (Arg *A = getLastArg(Pos, PosAlias, Neg)) in hasFlag()
/external/protobuf/csharp/src/Google.Protobuf.Test/
DSampleMessages.cs85 … RepeatedNestedEnum = { TestAllTypes.Types.NestedEnum.Foo, TestAllTypes.Types.NestedEnum.Neg }, in CreateFullTestAllTypes()
DGeneratedMessageTest.cs188 … RepeatedNestedEnum = { TestAllTypes.Types.NestedEnum.Foo, TestAllTypes.Types.NestedEnum.Neg }, in RoundTrip_RepeatedValues()
482 … RepeatedNestedEnum = { TestAllTypes.Types.NestedEnum.Foo, TestAllTypes.Types.NestedEnum.Neg }, in CloneRepeatedNonMessageValues()
/external/llvm/lib/Transforms/Scalar/
DReassociate.cpp253 static BinaryOperator *LowerNegateToMultiply(Instruction *Neg) { in LowerNegateToMultiply() argument
254 Type *Ty = Neg->getType(); in LowerNegateToMultiply()
258 BinaryOperator *Res = CreateMul(Neg->getOperand(1), NegOne, "", Neg, Neg); in LowerNegateToMultiply()
259 Neg->setOperand(1, Constant::getNullValue(Ty)); // Drop use of op. in LowerNegateToMultiply()
260 Res->takeName(Neg); in LowerNegateToMultiply()
261 Neg->replaceAllUsesWith(Res); in LowerNegateToMultiply()
262 Res->setDebugLoc(Neg->getDebugLoc()); in LowerNegateToMultiply()
/external/clang/include/clang/Analysis/Analyses/
DThreadSafety.h175 virtual void handleNegativeNotHeld(StringRef Kind, Name LockName, Name Neg, in handleNegativeNotHeld() argument
DThreadSafetyCommon.h263 CapabilityExpr(const til::SExpr *E, bool Neg) : CapExpr(E), Negated(Neg) {} in CapabilityExpr() argument
/external/llvm/include/llvm/Option/
DArgList.h248 bool hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default=true) const;
254 bool hasFlag(OptSpecifier Pos, OptSpecifier PosAlias, OptSpecifier Neg,
/external/clang/lib/Analysis/
DThreadSafetyCommon.cpp166 bool Neg = false; in translateAttrExpr() local
169 Neg = true; in translateAttrExpr()
175 Neg = true; in translateAttrExpr()
190 return CapabilityExpr(CE->expr(), Neg); in translateAttrExpr()
192 return CapabilityExpr(E, Neg); in translateAttrExpr()
/external/llvm/lib/Target/AMDGPU/
DR600ISelLowering.h95 SDValue &Neg, SDValue &Abs, SDValue &Sel, SDValue &Imm,
/external/mesa3d/src/gallium/drivers/radeon/
DAMDGPUISelLowering.cpp155 SDValue Neg = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT), in LowerIntrinsicIABS() local
158 return DAG.getNode(AMDGPUISD::SMAX, DL, VT, Neg, Op.getOperand(1)); in LowerIntrinsicIABS()
/external/gemmlowp/internal/
Dfixedpoint_neon.h58 inline int32x4_t Neg(int32x4_t a) { in Neg() function
Dfixedpoint.h70 tIntegerType Neg(tIntegerType a) { in Neg() function
335 MAKE_FIXEDPOINT_UNARY_FUNC(operator-, Neg)
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp315 Value *Neg = dyn_castNegVal(Op1C); in visitMul() local
317 (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) && in visitMul()
684 Value *Neg = Builder->CreateFNeg(T); in visitFMul() local
685 Neg->takeName(&I); in visitFMul()
686 return replaceInstUsesWith(I, Neg); in visitFMul()
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
DAPFloat.h392 void makeNaN(bool SNaN = false, bool Neg = false, const APInt *fill = 0);
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DCompiler.java53 import org.apache.xpath.operations.Neg;
449 return compileUnary(new Neg(), opPos); in neg()
/external/vulkan-validation-layers/libs/glm/detail/
Dintrinsic_common.inl161 __m128 Neg = _mm_set1_ps(-1.0f); local
167 __m128 And0 = _mm_and_ps(Cmp0, Neg);
/external/swiftshader/third_party/LLVM/lib/Target/X86/
DX86ISelDAGToDAG.cpp915 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS); in MatchAddressRecursively() local
916 AM.IndexReg = Neg; in MatchAddressRecursively()
925 if (Neg.getNode()->getNodeId() == -1 || in MatchAddressRecursively()
926 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) { in MatchAddressRecursively()
927 CurDAG->RepositionNode(N.getNode(), Neg.getNode()); in MatchAddressRecursively()
928 Neg.getNode()->setNodeId(N.getNode()->getNodeId()); in MatchAddressRecursively()
/external/llvm/lib/Target/AMDGPU/AsmParser/
DAMDGPUAsmParser.cpp67 bool Neg; member
70 bool hasFPModifiers() const { return Abs || Neg; } in hasFPModifiers()
77 Operand |= Neg ? SISrcMods::NEG : 0; in getFPModifiersOperand()
375 bool Negate = Imm.Mods.Neg; // Only negate can get here in addImmOperands()
536 OS << "abs:" << Mods.Abs << " neg: " << Mods.Neg << " sext:" << Mods.Sext; in operator <<()
1065 Mods.Neg = true; in parseRegOrImmWithFPInputMods()
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp190 Value *Neg = dyn_castNegVal(Op1C); in visitMul() local
192 (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) && in visitMul()
/external/boringssl/src/ssl/test/runner/
Dsign.go151 return new(big.Int).Neg(n)

123