/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
H A D | Neg.java | 19 * $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 D | SkFloat.h | 29 void negate() { fPacked = Neg(fPacked); } 40 void sub(const SkFloat& a) { fPacked = Add(fPacked, Neg(a.fPacked)); } 41 void setSub(const SkFloat& a, const SkFloat& b) { fPacked = Add(a.fPacked, Neg(b.fPacked)); } 93 static int32_t Neg(int32_t);
|
H A D | SkFloat.cpp | 116 int32_t SkFloat::Neg(int32_t packed) function in class:SkFloat
|
/external/skia/src/core/ |
H A D | SkFloat.h | 29 void negate() { fPacked = Neg(fPacked); } 40 void sub(const SkFloat& a) { fPacked = Add(fPacked, Neg(a.fPacked)); } 41 void setSub(const SkFloat& a, const SkFloat& b) { fPacked = Add(a.fPacked, Neg(b.fPacked)); } 93 static int32_t Neg(int32_t);
|
H A D | SkFloat.cpp | 116 int32_t SkFloat::Neg(int32_t packed) function in class:SkFloat
|
/external/llvm/include/llvm/ADT/ |
H A D | APFloat.h | 501 void makeLargest(bool Neg = false); 502 void makeSmallest(bool Neg = false); 503 void makeNaN(bool SNaN = false, bool Neg = false, 507 void makeInf(bool Neg = false); 508 void makeZero(bool Neg = false);
|
/external/llvm/lib/Option/ |
H A D | ArgList.cpp | 194 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default) const { argument 195 if (Arg *A = getLastArg(Pos, Neg)) 200 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier PosAlias, OptSpecifier Neg, argument 202 if (Arg *A = getLastArg(Pos, PosAlias, Neg))
|
/external/llvm/include/llvm/Option/ |
H A D | ArgList.h | 230 /// hasFlag - Given an option \p Pos and its negative form \p Neg, return 234 bool hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default=true) const; 237 /// form \p Neg, return true if the option or its alias is present, false if 240 bool hasFlag(OptSpecifier Pos, OptSpecifier PosAlias, OptSpecifier Neg,
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | Reassociate.cpp | 319 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 D | AMDGPUISelLowering.cpp | 155 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 D | AMDGPUISelLowering.cpp | 155 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 D | Compiler.java | 53 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 D | InstCombineMulDivRem.cpp | 230 Value *Neg = dyn_castNegVal(Op1C); local 232 (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) && 563 Value *Neg = Builder->CreateFNeg(T); local 564 Neg->takeName(&I); 565 return ReplaceInstUsesWith(I, Neg);
|
/external/chromium_org/v8/src/compiler/arm64/ |
H A D | code-generator-arm64.cc | 248 __ Neg(i.OutputRegister(), i.InputOperand(0)); 251 __ Neg(i.OutputRegister32(), i.InputOperand32(0));
|
/external/llvm/lib/Target/R600/ |
H A D | R600ISelLowering.cpp | 2053 FoldOperand(SDNode *ParentNode, unsigned SrcIdx, SDValue &Src, SDValue &Neg, argument 2061 if (!Neg.getNode()) 2064 Neg = DAG.getTargetConstant(1, MVT::i32); 2226 SDValue &Neg = Ops[NegIdx[i] - 1]; local 2233 if (FoldOperand(Node, i, Src, Neg, Abs, Sel, FakeOp, DAG)) 2280 SDValue &Neg = Ops[NegIdx[i] - 1]; local 2292 if (FoldOperand(Node, i, Src, Neg, Abs, Sel, Imm, DAG))
|
H A D | AMDGPUISelDAGToDAG.cpp | 50 bool FoldOperand(SDValue &Src, SDValue &Sel, SDValue &Neg, SDValue &Abs,
|
/external/chromium_org/third_party/jinja2/ |
H A D | nodes.py | 786 class Neg(UnaryExpr): class in inherits:UnaryExpr
|
H A D | parser.py | 533 node = nodes.Neg(self.parse_unary(False), lineno=lineno)
|
/external/chromium_org/v8/src/arm64/ |
H A D | lithium-codegen-arm64.cc | 2723 __ Neg(result, dividend); 2736 if (divisor < 0) __ Neg(result, result); 2758 if (divisor < 0) __ Neg(result, result); 3966 if (divisor < 0) __ Neg(result, result); 3978 if (divisor < 0) __ Neg(result, result); 3983 if (divisor < 0) __ Neg(result, result); 4262 __ Neg(dividend, dividend); 4357 __ Neg(result, left); 4402 __ Neg(result, Operand(left, LSL, right_log2)); 4421 __ Neg(resul [all...] |
/external/clang/lib/Analysis/ |
H A D | ThreadSafety.cpp | 1432 Expr *BrE, bool Neg); 1633 Expr *BrE, bool Neg) { 1642 if (Neg) 1629 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 D | AsmMatcherEmitter.cpp | 2311 bool Neg = false; 2314 Neg = true; 2319 if (Neg)
|
/external/chromium_org/v8/test/cctest/ |
H A D | test-assembler-arm64.cc | 3831 __ Neg(x1, 0x123); 3832 __ Neg(w2, 0x123); 3835 __ Neg(x3, Operand(x0, LSL, 1)); 3836 __ Neg(w4, Operand(w0, LSL, 2)); 3837 __ Neg(x5, Operand(x0, LSR, 3)); 3838 __ Neg(w6, Operand(w0, LSR, 4)); 3839 __ Neg(x7, Operand(x0, ASR, 5)); 3840 __ Neg(w8, Operand(w0, ASR, 6)); 3843 __ Neg(w9, Operand(w0, UXTB)); 3844 __ Neg(x1 [all...] |
/external/vixl/test/ |
H A D | test-assembler-a64.cc | 3143 __ Neg(x1, 0x123); 3144 __ Neg(w2, 0x123); 3147 __ Neg(x3, Operand(x0, LSL, 1)); 3148 __ Neg(w4, Operand(w0, LSL, 2)); 3149 __ Neg(x5, Operand(x0, LSR, 3)); 3150 __ Neg(w6, Operand(w0, LSR, 4)); 3151 __ Neg(x7, Operand(x0, ASR, 5)); 3152 __ Neg(w8, Operand(w0, ASR, 6)); 3155 __ Neg(w9, Operand(w0, UXTB)); 3156 __ Neg(x1 [all...] |
/external/llvm/lib/Target/SystemZ/ |
H A D | SystemZISelLowering.cpp | 1711 // Return true if Pos is CmpOp and Neg is the negative of CmpOp, 1712 // allowing Pos and Neg to be wider than CmpOp. 1713 static bool isAbsolute(SDValue CmpOp, SDValue Pos, SDValue Neg) { argument 1714 return (Neg.getOpcode() == ISD::SUB && 1715 Neg.getOperand(0).getOpcode() == ISD::Constant && 1716 cast<ConstantSDNode>(Neg.getOperand(0))->getZExtValue() == 0 && 1717 Neg.getOperand(1) == Pos &&
|
/external/llvm/lib/Transforms/Utils/ |
H A D | SimplifyLibCalls.cpp | 1556 Value *Neg = B.CreateNeg(Op, "neg"); variable 1557 return B.CreateSelect(Pos, Op, Neg);
|