Searched refs:Neg (Results 1 - 25 of 32) sorted by relevance

12

/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DNeg.java19 * $Id: Neg.java 468655 2006-10-28 07:12:06Z minchau $
30 public class Neg extends UnaryOperation class in inherits:UnaryOperation
/external/chromium_org/third_party/skia/src/core/
H A DSkFloat.h31 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);
H A DSkFP.h56 #define SkFPNeg(x) SkFloat::Neg(x)
59 #define SkFPSub(a, b) SkFloat::Add(a, SkFloat::Neg(b))
H A DSkFloat.cpp116 int32_t SkFloat::Neg(int32_t packed) function in class:SkFloat
/external/skia/src/core/
H A DSkFloat.h31 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);
H A DSkFP.h56 #define SkFPNeg(x) SkFloat::Neg(x)
59 #define SkFPSub(a, b) SkFloat::Add(a, SkFloat::Neg(b))
H A DSkFloat.cpp116 int32_t SkFloat::Neg(int32_t packed) function in class:SkFloat
/external/llvm/include/llvm/ADT/
H A DAPFloat.h499 void makeLargest(bool Neg = false);
500 void makeSmallest(bool Neg = false);
501 void makeNaN(bool SNaN = false, bool Neg = false, const APInt *fill = 0);
504 void makeInf(bool Neg = false);
505 void makeZero(bool Neg = false);
/external/libppp/src/
H A Dccp.h125 int Neg; /* ccp_config neg array item */ member in struct:ccp_algorithm
H A Dccp.c186 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]))
303 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) &&
359 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) &&
506 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) &&
540 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]))
604 if (IsAccepted(ccp->cfg.neg[algorithm[f]->Neg]) &&
/external/llvm/lib/Target/R600/
H A DAMDGPUISelDAGToDAG.cpp52 bool FoldOperand(SDValue &Src, SDValue &Sel, SDValue &Neg, SDValue &Abs,
481 bool AMDGPUDAGToDAGISel::FoldOperand(SDValue &Src, SDValue &Sel, SDValue &Neg, argument
486 Neg = CurDAG->getTargetConstant(1, MVT::i32);
531 SDValue &Neg = Ops[NegIdx[i] - 1]; local
534 if (FoldOperand(Src, Sel, Neg, Abs, TII))
588 SDValue &Neg = Ops[NegIdx[i] - 1]; local
590 if (FoldOperand(Src, Sel, Neg, Abs, TII))
H A DAMDGPUISelLowering.cpp256 SDValue Neg = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT), local
259 return DAG.getNode(AMDGPUISD::SMAX, DL, VT, Neg, Op.getOperand(1));
/external/llvm/lib/Option/
H A DArgList.cpp203 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default) const { argument
204 if (Arg *A = getLastArg(Pos, Neg))
209 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier PosAlias, OptSpecifier Neg, argument
211 if (Arg *A = getLastArg(Pos, PosAlias, Neg))
/external/llvm/include/llvm/Option/
H A DArgList.h219 /// hasFlag - Given an option \p Pos and its negative form \p Neg, return
223 bool hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default=true) const;
226 /// form \p Neg, return true if the option or its alias is present, false if
229 bool hasFlag(OptSpecifier Pos, OptSpecifier PosAlias, OptSpecifier Neg,
/external/llvm/lib/Transforms/Scalar/
H A DReassociate.cpp319 static BinaryOperator *LowerNegateToMultiply(Instruction *Neg) { argument
320 Constant *Cst = Constant::getAllOnesValue(Neg->getType());
323 BinaryOperator::CreateMul(Neg->getOperand(1), Cst, "",Neg);
324 Neg->setOperand(1, Constant::getNullValue(Neg->getType())); // Drop use of op.
325 Res->takeName(Neg);
326 Neg->replaceAllUsesWith(Res);
327 Res->setDebugLoc(Neg->getDebugLoc());
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A DAMDGPUISelLowering.cpp155 SDValue Neg = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT), local
158 return DAG.getNode(AMDGPUISD::SMAX, DL, VT, Neg, Op.getOperand(1));
/external/mesa3d/src/gallium/drivers/radeon/
H A DAMDGPUISelLowering.cpp155 SDValue Neg = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT), local
158 return DAG.getNode(AMDGPUISD::SMAX, DL, VT, Neg, Op.getOperand(1));
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java53 import org.apache.xpath.operations.Neg;
443 * @return reference to {@link org.apache.xpath.operations.Neg} instance.
449 return compileUnary(new Neg(), opPos);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp221 Value *Neg = dyn_castNegVal(Op1C); local
223 (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) &&
520 Instruction *Neg = BinaryOperator::CreateFNeg(T); local
523 Neg->copyFastMathFlags(&I);
525 return Neg;
/external/chromium_org/third_party/jinja2/
H A Dnodes.py782 class Neg(UnaryExpr): class in inherits:UnaryExpr
H A Dparser.py533 node = nodes.Neg(self.parse_unary(False), lineno=lineno)
/external/clang/lib/Analysis/
H A DThreadSafety.cpp1464 Expr *BrE, bool Neg);
1581 Expr *BrE, bool Neg) {
1591 if (Neg) branchnum = !branchnum;
1577 getMutexIDs(MutexIDList &Mtxs, AttrType *Attr, Expr *Exp, const NamedDecl *D, const CFGBlock *PredBlock, const CFGBlock *CurrBlock, Expr *BrE, bool Neg) argument
/external/llvm/utils/TableGen/
H A DAsmMatcherEmitter.cpp2262 bool Neg = false;
2265 Neg = true;
2270 if (Neg)
/external/llvm/lib/Transforms/Utils/
H A DSimplifyLibCalls.cpp1282 Value *Neg = B.CreateNeg(Op, "neg"); local
1283 return B.CreateSelect(Pos, Op, Neg);
/external/chromium_org/v8/src/mips/
H A Dmacro-assembler-mips.h588 DEFINE_INSTRUCTION2(Neg);

Completed in 2072 milliseconds

12