Searched defs:NV (Results 1 - 16 of 16) 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.h337 void resize(const ASTContext &C, unsigned N, const T &NV) { argument
344 construct_range(this->end(), this->begin()+N, NV);
/external/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp547 Value *NV = UndefValue::get(PN->getType()); local
548 PN->replaceAllUsesWith(NV);
550 VMap[OldI] = NV;
H A DSimplifyCFG.cpp1822 SelectInst *NV = local
1824 PN->replaceAllUsesWith(NV);
1825 NV->takeName(PN);
2497 Value *NV = cast<SelectInst> local
2499 PN->setIncomingValue(PBBIdx, NV);
/external/llvm/include/llvm/ADT/
H A DSmallVector.h389 void resize(unsigned N, const T &NV) { argument
396 std::uninitialized_fill(this->end(), this->begin()+N, 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/lib/IR/
H A DMetadata.cpp82 void allUsesReplacedWith(Value *NV) override;
93 void MDNodeOperand::allUsesReplacedWith(Value *NV) { argument
94 getParent()->replaceOperand(this, NV);
/external/llvm/lib/Linker/
H A DLinkModules.cpp907 GlobalValue::VisibilityTypes NV; local
908 if (getLinkageResult(DGV, SGV, NewLinkage, NV, LinkFromSrc))
910 NewVisibility = NV;
994 GlobalValue::VisibilityTypes NV; local
995 if (getLinkageResult(DGV, SF, NewLinkage, NV, LinkFromSrc))
997 NewVisibility = NV;
1075 GlobalValue::VisibilityTypes NV; local
1076 if (getLinkageResult(DGV, SGA, NewLinkage, NV, LinkFromSrc))
1078 NewVisibility = NV;
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelDAGToDAG.cpp1158 SDValue NV = CurDAG->getTargetExtractSubreg(QSubs[i], dl, WideVT, SuperReg); local
1160 NV = NarrowVector(NV, *CurDAG);
1161 ReplaceUses(SDValue(N, i), NV); local
1213 SDValue NV = CurDAG->getTargetExtractSubreg(QSubs[i], dl, WideVT, local
1216 NV = NarrowVector(NV, *CurDAG);
1217 ReplaceUses(SDValue(N, i), NV); local
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp1452 Value *NV = NC; local
1453 if (OldRetTy != NV->getType() && !Caller->use_empty()) {
1454 if (!NV->getType()->isVoidTy()) {
1455 NV = NC = CastInst::Create(CastInst::BitCast, NC, OldRetTy);
1469 NV = UndefValue::get(Caller->getType());
1474 ReplaceInstUsesWith(*Caller, NV);
1476 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);
1167 SDValue NV = DAG.getNode(ISD::ZERO_EXTEND, DL, MVT::i64,
1169 Arg = DAG.getNode(ISD::OR, DL, MVT::i64, Arg, NV);
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp2739 GlobalVariable *NV = local
2742 NV->takeName(&V);
2743 NV->setSection("llvm.metadata");
/external/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp3016 Value *NV = CI->getOperand(1); local
3017 if (NV == LF.OperandValToReplace) {
3019 CI->setOperand(0, NV);
3020 NV = CI->getOperand(1);
3025 const SCEV *N = SE.getSCEV(NV);
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp5981 SDValue NV = DAG.getVectorShuffle(VT, DL, VecIn1, VecIn2, &Mask[0]); local
5984 NV = DAG.getNode(ISD::INSERT_VECTOR_ELT, DL, VT, NV, Op.getOperand(Idx),
5988 return NV;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp6123 SDValue NV = DAG.getNode(ISD::TRUNCATE, SDLoc(V), VTs[i], V); local
6124 AddToWorkList(NV.getNode());
6125 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";

Completed in 433 milliseconds