/external/guava/guava-tests/test/com/google/common/collect/ |
H A D | AbstractMapEntryTest.java | 34 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 D | ASTVector.h | 338 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 D | CloneFunction.cpp | 619 Value *NV = UndefValue::get(PN->getType()); local 620 PN->replaceAllUsesWith(NV); 622 VMap[OldI] = NV;
|
H A D | SimplifyCFG.cpp | 1906 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 D | ScalarEvolutionExpressions.h | 713 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 D | SmallVector.h | 387 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 D | AArch64ISelDAGToDAG.cpp | 1210 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 D | AArch64ISelLowering.cpp | 8466 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 D | InstCombineCalls.cpp | 1702 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 D | SparcISelLowering.cpp | 297 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 D | GlobalOpt.cpp | 2740 GlobalVariable *NV = local 2743 NV->takeName(&V); 2744 NV->setSection("llvm.metadata");
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | LoopStrengthReduce.cpp | 3010 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 D | DAGCombiner.cpp | 6739 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 D | AArch64BaseInfo.h | 208 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 D | X86ISelLowering.cpp | 5122 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;
|