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

1 2

  /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/legacy/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/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/libppp/src/
ccp.h 82 unsigned neg[CCP_NEG_TOTAL]; member in struct:ccp_config
125 int Neg; /* ccp_config neg array item */
ccp.c 186 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]))
222 command_ShowNegval(ccp->cfg.neg[CCP_NEG_DEFLATE]));
224 command_ShowNegval(ccp->cfg.neg[CCP_NEG_PRED1]));
226 command_ShowNegval(ccp->cfg.neg[CCP_NEG_DEFLATE24]));
229 command_ShowNegval(ccp->cfg.neg[CCP_NEG_MPPE]));
257 ccp->cfg.neg[CCP_NEG_DEFLATE] = NEG_ENABLED|NEG_ACCEPTED;
258 ccp->cfg.neg[CCP_NEG_PRED1] = NEG_ENABLED|NEG_ACCEPTED;
259 ccp->cfg.neg[CCP_NEG_DEFLATE24] = 0;
264 ccp->cfg.neg[CCP_NEG_MPPE] = NEG_ENABLED|NEG_ACCEPTED
    [all...]
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 226 // If this is a not or neg instruction, do not count it for rank. This
240 static BinaryOperator *LowerNegateToMultiply(Instruction *Neg) {
241 Constant *Cst = Constant::getAllOnesValue(Neg->getType());
244 BinaryOperator::CreateMul(Neg->getOperand(1), Cst, "",Neg);
245 Neg->setOperand(1, Constant::getNullValue(Neg->getType())); // Drop use of op.
246 Res->takeName(Neg);
247 Neg->replaceAllUsesWith(Res);
248 Res->setDebugLoc(Neg->getDebugLoc())
    [all...]
  /external/llvm/lib/Option/
ArgList.cpp 203 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default) const {
204 if (Arg *A = getLastArg(Pos, Neg))
  /external/llvm/include/llvm/ADT/
APFloat.h 403 void makeNaN(bool SNaN = false, bool Neg = false, const APInt *fill = 0);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 189 Value *Neg = dyn_castNegVal(Op1C);
191 (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) &&
488 Instruction *Neg = BinaryOperator::CreateFNeg(T);
491 Neg->copyFastMathFlags(&I);
493 return Neg;
    [all...]
InstCombineCompares.cpp     [all...]
  /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/clang/lib/Driver/
ArgList.cpp 203 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default) const {
204 if (Arg *A = getLastArg(Pos, Neg))
  /external/llvm/lib/Target/R600/
AMDGPUISelLowering.cpp 157 SDValue Neg = DAG.getNode(ISD::SUB, DL, VT, DAG.getConstant(0, VT),
160 return DAG.getNode(AMDGPUISD::SMAX, DL, VT, Neg, Op.getOperand(1));
  /external/clang/include/clang/Driver/
ArgList.h 236 /// hasFlag - Given an option \p Pos and its negative form \p Neg, return
240 bool hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default=true) const;
  /external/llvm/include/llvm/Option/
ArgList.h 219 /// hasFlag - Given an option \p Pos and its negative form \p Neg, return
223 bool hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default=true) const;
  /external/clang/lib/Analysis/
ThreadSafety.cpp     [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp     [all...]
  /external/v8/src/mips/
macro-assembler-mips.h 579 DEFINE_INSTRUCTION2(Neg);
    [all...]
code-stubs-mips.cc     [all...]
  /external/llvm/lib/Target/X86/
X86ISelDAGToDAG.cpp     [all...]

Completed in 639 milliseconds

1 2