HomeSort by relevance Sort by last modified time
    Searched refs:Neg (Results 1 - 18 of 18) 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 31 void negate() { fPacked = Neg(fPacked); }
42 void sub(const SkFloat& a) { fPacked = Add(fPacked, Neg(a.fPacked)); }
43 void setSub(const SkFloat& a, const SkFloat& b) { fPacked = Add(a.fPacked, Neg(b.fPacked)); }
95 static int32_t Neg(int32_t);
SkFP.h 56 #define SkFPNeg(x) SkFloat::Neg(x)
59 #define SkFPSub(a, b) SkFloat::Add(a, SkFloat::Neg(b))
SkFloat.cpp 116 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 143 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default) const {
144 if (Arg *A = getLastArg(Pos, Neg))
  /external/clang/include/clang/Driver/
ArgList.h 229 /// Neg, return true if the option is present, false if the
233 bool hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default=true) const;
  /external/llvm/include/llvm/ADT/
APFloat.h 401 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/Transforms/InstCombine/
InstCombineMulDivRem.cpp 190 Value *Neg = dyn_castNegVal(Op1C);
192 (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) &&
InstCombineCompares.cpp     [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp     [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp     [all...]
  /external/v8/src/mips/
macro-assembler-mips.h 579 DEFINE_INSTRUCTION2(Neg);
    [all...]
code-stubs-mips.cc     [all...]
macro-assembler-mips.cc 705 void MacroAssembler::Neg(Register rs, const Operand& rt) {
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]

Completed in 387 milliseconds