Home
last modified time | relevance | path

Searched refs:NV (Results 1 – 25 of 326) sorted by relevance

12345678910>>...14

/external/curl/src/
Dtool_setopt.c42 #define NV(e) {#e, e} macro
47 NV(CURLPROXY_HTTP),
48 NV(CURLPROXY_HTTP_1_0),
49 NV(CURLPROXY_HTTPS),
50 NV(CURLPROXY_SOCKS4),
51 NV(CURLPROXY_SOCKS5),
52 NV(CURLPROXY_SOCKS4A),
53 NV(CURLPROXY_SOCKS5_HOSTNAME),
58 NV(CURLPROXY_SOCKS4),
59 NV(CURLPROXY_SOCKS5),
[all …]
/external/skqp/src/gpu/gl/
DGrGLAssembleInterface.cpp97 GET_PROC_SUFFIX(BlendBarrier, NV); in GrGLMakeAssembledGLInterface()
224 GET_PROC_SUFFIX(TextureBarrier, NV); in GrGLMakeAssembledGLInterface()
326 GET_PROC_SUFFIX(PathCommands, NV); in GrGLMakeAssembledGLInterface()
327 GET_PROC_SUFFIX(PathParameteri, NV); in GrGLMakeAssembledGLInterface()
328 GET_PROC_SUFFIX(PathParameterf, NV); in GrGLMakeAssembledGLInterface()
329 GET_PROC_SUFFIX(GenPaths, NV); in GrGLMakeAssembledGLInterface()
330 GET_PROC_SUFFIX(DeletePaths, NV); in GrGLMakeAssembledGLInterface()
331 GET_PROC_SUFFIX(IsPath, NV); in GrGLMakeAssembledGLInterface()
332 GET_PROC_SUFFIX(PathStencilFunc, NV); in GrGLMakeAssembledGLInterface()
333 GET_PROC_SUFFIX(StencilFillPath, NV); in GrGLMakeAssembledGLInterface()
[all …]
/external/skia/src/gpu/gl/
DGrGLAssembleInterface.cpp97 GET_PROC_SUFFIX(BlendBarrier, NV); in GrGLMakeAssembledGLInterface()
221 GET_PROC_SUFFIX(TextureBarrier, NV); in GrGLMakeAssembledGLInterface()
323 GET_PROC_SUFFIX(PathCommands, NV); in GrGLMakeAssembledGLInterface()
324 GET_PROC_SUFFIX(PathParameteri, NV); in GrGLMakeAssembledGLInterface()
325 GET_PROC_SUFFIX(PathParameterf, NV); in GrGLMakeAssembledGLInterface()
326 GET_PROC_SUFFIX(GenPaths, NV); in GrGLMakeAssembledGLInterface()
327 GET_PROC_SUFFIX(DeletePaths, NV); in GrGLMakeAssembledGLInterface()
328 GET_PROC_SUFFIX(IsPath, NV); in GrGLMakeAssembledGLInterface()
329 GET_PROC_SUFFIX(PathStencilFunc, NV); in GrGLMakeAssembledGLInterface()
330 GET_PROC_SUFFIX(StencilFillPath, NV); in GrGLMakeAssembledGLInterface()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DAbstractMapEntryTest.java34 private static final Integer NV = null; field in 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/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/IPO/
DInliner.cpp392 << NV("Callee", Callee) << " not inlined into " in shouldInline()
393 << NV("Caller", Caller) in shouldInline()
405 << NV("Callee", Callee) << " not inlined into " in shouldInline()
406 << NV("Caller", Caller) << " because too costly to inline (cost=" in shouldInline()
407 << NV("Cost", IC.getCost()) in shouldInline()
408 << ", threshold=" << NV("Threshold", IC.getThreshold()) << ")"; in shouldInline()
421 << "Not inlining. Cost of inlining " << NV("Callee", Callee) in shouldInline()
422 << " increases the cost of inlining " << NV("Caller", Caller) in shouldInline()
515 << NV("Callee", Callee) << " will not be inlined into " in inlineCallsImpl()
516 << NV("Caller", CS.getCaller()) in inlineCallsImpl()
[all …]
DPartialInlining.cpp420 << ore::NV("Block", BlockList.front()->getName()) in computeOutliningColdRegionsInfo()
512 << ore::NV("Callee", F) << " inline cost-savings smaller than " in computeOutliningColdRegionsInfo()
513 << ore::NV("Cost", MinOutlineRegionCost); in computeOutliningColdRegionsInfo()
772 << NV("Callee", Cloner.OrigFunc) in shouldPartialInline()
781 << NV("Callee", Cloner.OrigFunc) << " not partially inlined into " in shouldPartialInline()
782 << NV("Caller", Caller) in shouldPartialInline()
791 << NV("Callee", Cloner.OrigFunc) << " not partially inlined into " in shouldPartialInline()
792 << NV("Caller", Caller) << " because too costly to inline (cost=" in shouldPartialInline()
793 << NV("Cost", IC.getCost()) << ", threshold=" in shouldPartialInline()
794 << NV("Threshold", IC.getCostDelta() + IC.getCost()) << ")"; in shouldPartialInline()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
DAssumptionCache.cpp127 void AssumptionCache::copyAffectedValuesInCache(Value *OV, Value *NV) { in copyAffectedValuesInCache() argument
128 auto &NAVV = getOrInsertAffectedValues(NV); in copyAffectedValuesInCache()
138 void AssumptionCache::AffectedValueCallbackVH::allUsesReplacedWith(Value *NV) { in allUsesReplacedWith() argument
139 if (!isa<Instruction>(NV) && !isa<Argument>(NV)) in allUsesReplacedWith()
144 AC->copyAffectedValuesInCache(getValPtr(), NV); in allUsesReplacedWith()
/external/compiler-rt/lib/profile/
DInstrProfilingMergeFile.c33 uint8_t NV = VR->SiteCountArray[S]; in lprofMergeValueProfData() local
34 for (V = 0; V < NV; V++) { in lprofMergeValueProfData()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Instrumentation/
DIndirectCallPromotion.cpp284 << NV("TargetFunction", TargetFunction) << " with count of " in getPromotionCandidatesForCallSite()
285 << NV("Count", Count) << ": " << Reason; in getPromotionCandidatesForCallSite()
324 << "Promote indirect call to " << NV("DirectCallee", DirectCallee) in promoteIndirectCall()
325 << " with count " << NV("Count", Count) << " out of " in promoteIndirectCall()
326 << NV("TotalCount", TotalCount); in promoteIndirectCall()
DPGOMemOPSizeOpt.cpp405 << "optimized " << NV("Intrinsic", StringRef(getMIName(MI))) in perform()
406 << " with count " << NV("Count", SumForOpt) << " out of " in perform()
407 << NV("Total", TotalCount) << " for " << NV("Versions", Version) in perform()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Scalar/
DLoopVersioningLICM.cpp443 << NV("RuntimeChecks", LAI->getNumRuntimePointerChecks()) in legalLoopInstructions()
445 << NV("Threshold", VectorizerParams::RuntimeMemoryCheckThreshold); in legalLoopInstructions()
475 << NV("LoadAndStoreCounter", in legalLoopInstructions()
478 << NV("Threshold", InvariantThreshold); in legalLoopInstructions()
548 << NV("RuntimeChecks", LAI->getNumRuntimePointerChecks()); in isLegalForVersioning()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DMachineOutliner.cpp836 R << "Did not outline " << NV("Length", StringLen) << " instructions" in emitNotOutliningCheaperRemark()
837 << " from " << NV("NumOccurrences", CandidatesForRepeatedSeq.size()) in emitNotOutliningCheaperRemark()
840 << NV("OutliningCost", OF.getOutliningCost()) << ")" in emitNotOutliningCheaperRemark()
842 << NV("NotOutliningCost", OF.getNotOutlinedCost()) << ")" in emitNotOutliningCheaperRemark()
847 R << NV((Twine("OtherStartLoc") + Twine(i)).str(), in emitNotOutliningCheaperRemark()
863 R << "Saved " << NV("OutliningBenefit", OF.getBenefit()) << " bytes by " in emitOutlinedFunctionRemark()
864 << "outlining " << NV("Length", OF.Sequence.size()) << " instructions " in emitOutlinedFunctionRemark()
865 << "from " << NV("NumOccurrences", OF.getOccurrenceCount()) in emitOutlinedFunctionRemark()
876 R << NV((Twine("StartLoc") + Twine(i)).str(), in emitOutlinedFunctionRemark()
DStackProtector.cpp238 << ore::NV("Function", F) in RequiresStackProtector()
258 << ore::NV("Function", F) in RequiresStackProtector()
295 << ore::NV("Function", F) in RequiresStackProtector()
310 << ore::NV("Function", F) in RequiresStackProtector()
/external/mesa3d/docs/relnotes/
D5.1171 program.[ch] - generic ARB/NV program code
177 nvprogram.[ch] - NV program API functions
178 nvvertprog.h - NV vertex program definitions
179 nvfragprog.h - NV fragment program definitions
180 nvvertparse.[ch] - NV vertex program parser
181 nvfragparse.[ch] - NV fragment program parser
182 nvvertexec.[ch] - NV vertex program execution
183 swrast/s_nvfragprog.[ch] - NV fragment program execution
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp171 if (Instruction *NV = FoldOpIntoPhi(I)) in visitMul() local
172 return NV; in visitMul()
283 if (Instruction *NV = FoldOpIntoPhi(I)) in visitFMul() local
284 return NV; in visitFMul()
401 if (Instruction *NV = FoldOpIntoPhi(I)) in commonIDivTransforms() local
402 return NV; in commonIDivTransforms()
600 if (Instruction *NV = FoldOpIntoPhi(I)) in commonIRemTransforms() local
601 return NV; in commonIRemTransforms()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-profdata/
Dllvm-profdata.cpp537 uint32_t NV = Func.getNumValueDataForSite(VK, I); in traverseAllValueSites() local
539 Stats.TotalNumValues += NV; in traverseAllValueSites()
540 if (NV) { in traverseAllValueSites()
542 if (NV > Stats.ValueSitesHistogram.size()) in traverseAllValueSites()
543 Stats.ValueSitesHistogram.resize(NV, 0); in traverseAllValueSites()
544 Stats.ValueSitesHistogram[NV - 1]++; in traverseAllValueSites()
546 for (uint32_t V = 0; V < NV; V++) { in traverseAllValueSites()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/
DLoopUnroll.cpp503 << NV("UnrollCount", TripCount) << " iterations"; in UnrollLoop()
512 << " peeled loop by " << NV("PeelCount", PeelCount) in UnrollLoop()
520 << NV("UnrollCount", Count); in UnrollLoop()
530 << NV("BreakoutTrip", BreakoutTrip); in UnrollLoop()
536 return DiagBuilder() << " with " << NV("TripMultiple", TripMultiple) in UnrollLoop()
/external/llvm/tools/llvm-profdata/
Dllvm-profdata.cpp394 uint32_t NV = Func.getNumValueDataForSite(IPVK_IndirectCallTarget, I); in showInstrProfile() local
397 TotalNumValues += NV; in showInstrProfile()
398 if (NV) in showInstrProfile()
400 for (uint32_t V = 0; V < NV; V++) { in showInstrProfile()
/external/clang/lib/StaticAnalyzer/Checkers/
DArrayBoundCheckerV2.cpp113 if (Optional<NonLoc> NV = extentBegin.getAs<NonLoc>()) { in checkLocation() local
115 svalBuilder.evalBinOpNN(state, BO_LT, rawOffset.getByteOffset(), *NV, in checkLocation()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DScalarEvolutionExpressions.h712 Value *NV = Map[V]; in visitUnknown() local
713 if (InterpretConsts && isa<ConstantInt>(NV)) in visitUnknown()
714 return SE.getConstant(cast<ConstantInt>(NV)); in visitUnknown()
715 return SE.getUnknown(NV); in visitUnknown()
/external/llvm/include/llvm/Analysis/
DScalarEvolutionExpressions.h636 Value *NV = Map[V]; in visitUnknown() local
637 if (InterpretConsts && isa<ConstantInt>(NV)) in visitUnknown()
638 return SE.getConstant(cast<ConstantInt>(NV)); in visitUnknown()
639 return SE.getUnknown(NV); in visitUnknown()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DMetadata.cpp61 virtual void allUsesReplacedWith(Value *NV);
70 void MDNodeOperand::allUsesReplacedWith(Value *NV) { in allUsesReplacedWith() argument
71 Parent->replaceOperand(this, NV); in allUsesReplacedWith()
/external/clang/lib/StaticAnalyzer/Core/
DSVals.cpp181 if (Optional<nonloc::ConcreteInt> NV = getAs<nonloc::ConcreteInt>()) in isConstant() local
182 return NV->getValue() == I; in isConstant()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineMulDivRem.cpp276 if (Instruction *NV = FoldOpIntoPhi(I)) in visitMul() local
277 return NV; in visitMul()
561 if (Instruction *NV = FoldOpIntoPhi(I)) in visitFMul() local
562 return NV; in visitFMul()
891 if (Instruction *NV = FoldOpIntoPhi(I)) in commonIDivTransforms() local
892 return NV; in commonIDivTransforms()
1404 if (Instruction *NV = FoldOpIntoPhi(I)) in commonIRemTransforms() local
1405 return NV; in commonIRemTransforms()
DInstCombineAddSub.cpp1107 if (Instruction *NV = FoldOpIntoPhi(I)) in visitAdd() local
1108 return NV; in visitAdd()
1308 if (Instruction *NV = FoldOpIntoPhi(I)) in visitFAdd() local
1309 return NV; in visitFAdd()
1312 if (Instruction *NV = FoldOpIntoSelect(I, SI)) in visitFAdd() local
1313 return NV; in visitFAdd()
1691 if (Instruction *NV = FoldOpIntoSelect(I, SI)) in visitFSub() local
1692 return NV; in visitFSub()

12345678910>>...14