Home
last modified time | relevance | path

Searched refs:Neg (Results 1 – 21 of 21) sorted by relevance

/external/skia/src/core/
DSkFloat.h31 void negate() { fPacked = Neg(fPacked); } in negate()
42 void sub(const SkFloat& a) { fPacked = Add(fPacked, Neg(a.fPacked)); } in sub()
43 void setSub(const SkFloat& a, const SkFloat& b) { fPacked = Add(a.fPacked, Neg(b.fPacked)); } in setSub()
95 static int32_t Neg(int32_t);
DSkFP.h56 #define SkFPNeg(x) SkFloat::Neg(x)
59 #define SkFPSub(a, b) SkFloat::Add(a, SkFloat::Neg(b))
DSkFloat.cpp116 int32_t SkFloat::Neg(int32_t packed) in Neg() function in SkFloat
/external/apache-xml/src/main/java/org/apache/xpath/operations/
DNeg.java30 public class Neg extends UnaryOperation class
/external/libppp/src/
Dccp.c186 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg])) in ccp_ReportStatus()
303 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) && in ccp_Required()
359 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) && in CcpSendConfigReq()
506 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg]) && in CcpLayerUp()
540 if (IsEnabled(ccp->cfg.neg[algorithm[f]->Neg])) in CcpLayerUp()
604 if (IsAccepted(ccp->cfg.neg[algorithm[f]->Neg]) && in CcpDecodeConfig()
Dccp.h125 int Neg; /* ccp_config neg array item */ member
/external/llvm/lib/Transforms/Scalar/
DReassociate.cpp240 static BinaryOperator *LowerNegateToMultiply(Instruction *Neg) { in LowerNegateToMultiply() argument
241 Constant *Cst = Constant::getAllOnesValue(Neg->getType()); in LowerNegateToMultiply()
244 BinaryOperator::CreateMul(Neg->getOperand(1), Cst, "",Neg); in LowerNegateToMultiply()
245 Neg->setOperand(1, Constant::getNullValue(Neg->getType())); // Drop use of op. in LowerNegateToMultiply()
246 Res->takeName(Neg); in LowerNegateToMultiply()
247 Neg->replaceAllUsesWith(Res); in LowerNegateToMultiply()
248 Res->setDebugLoc(Neg->getDebugLoc()); in LowerNegateToMultiply()
DSimplifyLibCalls.cpp1174 Value *Neg = B.CreateNeg(Op, "neg"); in CallOptimizer() local
1175 return B.CreateSelect(Pos, Op, Neg); in CallOptimizer()
/external/clang/lib/Driver/
DArgList.cpp205 bool ArgList::hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default) const { in hasFlag() argument
206 if (Arg *A = getLastArg(Pos, Neg)) in hasFlag()
/external/llvm/include/llvm/ADT/
DAPFloat.h402 void makeNaN(bool SNaN = false, bool Neg = false, const APInt *fill = 0);
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
DCompiler.java53 import org.apache.xpath.operations.Neg;
449 return compileUnary(new Neg(), opPos); in neg()
/external/clang/include/clang/Driver/
DArgList.h241 bool hasFlag(OptSpecifier Pos, OptSpecifier Neg, bool Default=true) const;
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp190 Value *Neg = dyn_castNegVal(Op1C); in visitMul() local
192 (BO->getOperand(1) == Op1C || BO->getOperand(1) == Neg) && in visitMul()
DInstCombineCompares.cpp1426 Value *Neg = Builder->CreateNeg(BOp1); in visitICmpInstWithInstAndIntCst() local
1427 Neg->takeName(BO); in visitICmpInstWithInstAndIntCst()
1428 return new ICmpInst(ICI.getPredicate(), BOp0, Neg); in visitICmpInstWithInstAndIntCst()
/external/clang/lib/Analysis/
DThreadSafety.cpp1416 Expr *BrE, bool Neg);
1531 Expr *BrE, bool Neg) { in getMutexIDs() argument
1541 if (Neg) branchnum = !branchnum; in getMutexIDs()
/external/llvm/utils/TableGen/
DAsmMatcherEmitter.cpp2237 bool Neg = false; in emitComputeAvailableFeatures() local
2240 Neg = true; in emitComputeAvailableFeatures()
2245 if (Neg) in emitComputeAvailableFeatures()
/external/llvm/lib/Target/X86/
DX86ISelDAGToDAG.cpp1152 SDValue Neg = CurDAG->getNode(ISD::SUB, dl, N.getValueType(), Zero, RHS); in MatchAddressRecursively() local
1153 AM.IndexReg = Neg; in MatchAddressRecursively()
1158 InsertDAGNode(*CurDAG, N, Neg); in MatchAddressRecursively()
DX86ISelLowering.cpp8971 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, VTs, in LowerSELECT() local
8976 SDValue(Neg.getNode(), 1)); in LowerSELECT()
15017 SDValue Neg = DAG.getNode(X86ISD::SUB, DL, DAG.getVTList(VT, MVT::i32), in performIntegerAbsCombine() local
15020 SDValue Ops[] = { N0.getOperand(0), Neg, in performIntegerAbsCombine()
15022 SDValue(Neg.getNode(), 1) }; in performIntegerAbsCombine()
/external/v8/src/mips/
Dmacro-assembler-mips.h579 DEFINE_INSTRUCTION2(Neg);
Dcode-stubs-mips.cc2103 __ Neg(v0, a0); in GenerateSmiCodeBitNot() local
2191 __ Neg(a1, a1); in GenerateHeapNumberCodeBitNot() local
Dmacro-assembler-mips.cc705 void MacroAssembler::Neg(Register rs, const Operand& rt) { in Neg() function in v8::internal::MacroAssembler