Searched defs:NV (Results 1 - 15 of 15) sorted by relevance

/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractMapEntryTest.java34 private static final Integer NV = null; field in class:AbstractMapEntryTest
57 assertEquals("foo=null", entry("foo", NV).toString());
58 assertEquals("null=null", entry(NK, NV).toString());
74 assertEquals(control("bar", NV), entry("bar", NV));
88 assertEquals(control("bar", NV).hashCode(), entry("bar", NV).hashCode());
89 assertEquals(control(NK, NV).hashCode(), entry(NK, NV).hashCode());
/external/clang/include/clang/AST/
H A DASTVector.h338 void resize(const ASTContext &C, unsigned N, const T &NV) { argument
345 construct_range(this->end(), this->begin()+N, NV);
/external/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp619 Value *NV = UndefValue::get(PN->getType()); local
620 PN->replaceAllUsesWith(NV);
622 VMap[OldI] = NV;
H A DSimplifyCFG.cpp1906 SelectInst *NV = local
1908 PN->replaceAllUsesWith(NV);
1909 NV->takeName(PN);
2547 Value *NV = cast<SelectInst> local
2549 PN->setIncomingValue(PBBIdx, NV);
/external/llvm/include/llvm/Analysis/
H A DScalarEvolutionExpressions.h713 Value *NV = Map[V]; local
714 if (InterpretConsts && isa<ConstantInt>(NV))
715 return SE.getConstant(cast<ConstantInt>(NV));
716 return SE.getUnknown(NV);
/external/llvm/include/llvm/ADT/
H A DSmallVector.h387 void resize(size_type N, const T &NV) { argument
394 std::uninitialized_fill(this->end(), this->begin()+N, NV);
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp1210 SDValue NV = CurDAG->getTargetExtractSubreg(QSubs[i], dl, WideVT, SuperReg); local
1212 NV = NarrowVector(NV, *CurDAG);
1213 ReplaceUses(SDValue(N, i), NV); local
1262 SDValue NV = CurDAG->getTargetExtractSubreg(QSubs[i], dl, WideVT, local
1265 NV = NarrowVector(NV, *CurDAG);
1266 ReplaceUses(SDValue(N, i), NV); local
H A DAArch64ISelLowering.cpp8466 case AArch64CC::NV:
8553 SDValue NV = performCONDCombine(N, DCI, DAG, 2, 3); local
8554 if (NV.getNode())
8555 N = NV.getNode();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp1702 Value *NV = NC; local
1703 if (OldRetTy != NV->getType() && !Caller->use_empty()) {
1704 if (!NV->getType()->isVoidTy()) {
1705 NV = NC = CastInst::CreateBitOrPointerCast(NC, OldRetTy);
1719 NV = UndefValue::get(Caller->getType());
1724 ReplaceInstUsesWith(*Caller, NV);
1726 if (OldRetTy == NV->getType())
1727 ValueHandleBase::ValueIsRAUWd(Caller, NV);
/external/llvm/lib/Target/Sparc/
H A DSparcISelLowering.cpp297 SDValue NV = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64, OutVals[i+1]); local
298 OutVal = DAG.getNode(ISD::OR, DL, MVT::i64, OutVal, NV);
1168 SDValue NV = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64,
1170 Arg = DAG.getNode(ISD::OR, DL, MVT::i64, Arg, NV);
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp2740 GlobalVariable *NV = local
2743 NV->takeName(&V);
2744 NV->setSection("llvm.metadata");
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp3010 Value *NV = CI->getOperand(1); local
3011 if (NV == LF.OperandValToReplace) {
3013 CI->setOperand(0, NV);
3014 NV = CI->getOperand(1);
3019 const SCEV *N = SE.getSCEV(NV);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6739 SDValue NV = DAG.getNode(ISD::TRUNCATE, SDLoc(V), VTs[i], V); local
6740 AddToWorklist(NV.getNode());
6741 Opnds.push_back(NV);
/external/llvm/lib/Target/AArch64/Utils/
H A DAArch64BaseInfo.h208 NV = 0xf, // Always (unconditional) Always (unconditional) enumerator in enum:llvm::AArch64CC::CondCode
209 // Note the NV exists purely to disassemble 0b1111. Execution is "always".
231 case NV: return "nv";
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp5122 SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]); local
5125 NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5129 return NV;

Completed in 1191 milliseconds