HomeSort by relevance Sort by last modified time
    Searched refs:Neg (Results 1 - 15 of 15) sorted by null

  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Neg.java 19 * $Id: Neg.java 468655 2006-10-28 07:12:06Z minchau $
30 public class Neg extends UnaryOperation
  /external/skia/src/core/
SkFloat.h 38 void negate() { fPacked = Neg(fPacked); }
49 void sub(const SkFloat& a) { fPacked = Add(fPacked, Neg(a.fPacked)); }
50 void setSub(const SkFloat& a, const SkFloat& b) { fPacked = Add(a.fPacked, Neg(b.fPacked)); }
102 static int32_t Neg(int32_t);
SkFP.h 64 #define SkFPNeg(x) SkFloat::Neg(x)
67 #define SkFPSub(a, b) SkFloat::Add(a, SkFloat::Neg(b))
SkFloat.cpp 123 int32_t SkFloat::Neg(int32_t packed)
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 189 // If this is a not or neg instruction, do not count it for rank. This
212 static Instruction *LowerNegateToMultiply(Instruction *Neg,
214 Constant *Cst = Constant::getAllOnesValue(Neg->getType());
216 Instruction *Res = BinaryOperator::CreateMul(Neg->getOperand(1), Cst, "",Neg);
217 ValueRankMap.erase(Neg);
218 Res->takeName(Neg);
219 Neg->replaceAllUsesWith(Res);
220 Res->setDebugLoc(Neg->getDebugLoc());
221 Neg->eraseFromParent()
    [all...]
SimplifyLibCalls.cpp     [all...]
  /external/clang/lib/Driver/
ArgList.cpp 125 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default) const {
126 if (Arg *A = getLastArg(Pos, Neg))
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 248 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS);
249 AM.IndexReg = Neg;
257 if (Neg.getNode()->getNodeId() == -1 ||
258 Neg.getNode()->getNodeId() > N.getNode()->getNodeId()) {
259 CurDAG->RepositionNode(N.getNode(), Neg.getNode());
260 Neg.getNode()->setNodeId(N.getNode()->getNodeId());
  /external/clang/include/clang/Driver/
ArgList.h 219 /// Neg, return true if the option is present, false if the
223 bool hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default=true) const;
  /external/llvm/include/llvm/ADT/
APFloat.h 392 void makeNaN(bool SNaN = false, bool Neg = false, const APInt *fill = 0);
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 53 import org.apache.xpath.operations.Neg;
154 expr = neg(opPos); break;
443 * @return reference to {@link org.apache.xpath.operations.Neg} instance.
447 protected Expression neg(int opPos) throws TransformerException method in class:Compiler
449 return compileUnary(new Neg(), opPos);
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp 885 // transformation incurs an extra mov, due to the neg instruction
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 190 Value *Neg = dyn_castNegVal(Op1C);
192 (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) &&
InstCombineCompares.cpp     [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp     [all...]

Completed in 348 milliseconds