Home
last modified time | relevance | path

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

12345678910>>...13

/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/guava/guava-tests/test/com/google/common/collect/
DAbstractMapEntryTest.java32 private static final Integer NV = null; field in AbstractMapEntryTest
58 assertEquals("foo=null", entry("foo", NV).toString());
59 assertEquals("null=null", entry(NK, NV).toString());
75 assertEquals(control("bar", NV), entry("bar", NV));
89 assertEquals(control("bar", NV).hashCode(), entry("bar", NV).hashCode());
90 assertEquals(control(NK, NV).hashCode(), entry(NK, NV).hashCode());
/external/guava/android/guava-tests/test/com/google/common/collect/
DAbstractMapEntryTest.java32 private static final Integer NV = null; field in AbstractMapEntryTest
58 assertEquals("foo=null", entry("foo", NV).toString());
59 assertEquals("null=null", entry(NK, NV).toString());
75 assertEquals(control("bar", NV), entry("bar", NV));
89 assertEquals(control("bar", NV).hashCode(), entry("bar", NV).hashCode());
90 assertEquals(control(NK, NV).hashCode(), entry(NK, NV).hashCode());
/external/tpm2-tss/src/tss2-esys/api/
DEsys_NV_DefineSpace.c29 esysContext->in.NV.auth = NULL; in store_input_parameters()
31 esysContext->in.NV.authData = *auth; in store_input_parameters()
32 esysContext->in.NV.auth = in store_input_parameters()
33 &esysContext->in.NV.authData; in store_input_parameters()
36 esysContext->in.NV.publicInfo = NULL; in store_input_parameters()
38 esysContext->in.NV.publicInfoData = *publicInfo; in store_input_parameters()
39 esysContext->in.NV.publicInfo = in store_input_parameters()
40 &esysContext->in.NV.publicInfoData; in store_input_parameters()
365 r = iesys_nv_get_name(esysContext->in.NV.publicInfo, in Esys_NV_DefineSpace_Finish()
373 esysContext->in.NV.publicInfo->nvPublic.nvIndex; in Esys_NV_DefineSpace_Finish()
[all …]
DEsys_NV_ChangeAuth.c28 esysContext->in.NV.nvIndex = nvIndex; in store_input_parameters()
30 esysContext->in.NV.auth = NULL; in store_input_parameters()
32 esysContext->in.NV.authData = *newAuth; in store_input_parameters()
33 esysContext->in.NV.auth = in store_input_parameters()
34 &esysContext->in.NV.authData; in store_input_parameters()
317 nvIndex = esysContext->in.NV.nvIndex; in Esys_NV_ChangeAuth_Finish()
321 if (esysContext->in.NV.auth == NULL) in Esys_NV_ChangeAuth_Finish()
324 nvIndexNode->auth = *esysContext->in.NV.auth; in Esys_NV_ChangeAuth_Finish()
/external/llvm-project/llvm/lib/Analysis/
DInlineAdvisor.cpp66 << NV("Callee", Callee) << " will not be inlined into " in recordUnsuccessfulInliningImpl()
67 << NV("Caller", Caller) << ": " in recordUnsuccessfulInliningImpl()
68 << NV("Reason", Result.getFailureReason()); in recordUnsuccessfulInliningImpl()
275 const ore::NV &Arg) { in operator <<()
287 R << "(cost=" << ore::NV("Cost", IC.getCost()) in operator <<()
288 << ", threshold=" << ore::NV("Threshold", IC.getThreshold()) << ")"; in operator <<()
291 R << ": " << ore::NV("Reason", Reason); in operator <<()
337 << NV("Callee", Callee) << " not inlined into " in shouldInline()
338 << NV("Caller", Caller) << " because it should never be inlined " in shouldInline()
344 << NV("Callee", Callee) << " not inlined into " in shouldInline()
[all …]
DAssumptionCache.cpp170 void AssumptionCache::transferAffectedValuesInCache(Value *OV, Value *NV) { in transferAffectedValuesInCache() argument
171 auto &NAVV = getOrInsertAffectedValues(NV); in transferAffectedValuesInCache()
182 void AssumptionCache::AffectedValueCallbackVH::allUsesReplacedWith(Value *NV) { in allUsesReplacedWith() argument
183 if (!isa<Instruction>(NV) && !isa<Argument>(NV)) in allUsesReplacedWith()
188 AC->transferAffectedValuesInCache(getValPtr(), NV); in allUsesReplacedWith()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineFunctionPass.cpp87 R << NV("Pass", getPassName()) in runOnFunction()
88 << ": Function: " << NV("Function", F.getName()) << ": " in runOnFunction()
90 << NV("MIInstrsBefore", CountBefore) << " to " in runOnFunction()
91 << NV("MIInstrsAfter", CountAfter) in runOnFunction()
92 << "; Delta: " << NV("Delta", Delta); in runOnFunction()
/external/llvm-project/llvm/lib/CodeGen/
DMachineFunctionPass.cpp86 R << NV("Pass", getPassName()) in runOnFunction()
87 << ": Function: " << NV("Function", F.getName()) << ": " in runOnFunction()
89 << NV("MIInstrsBefore", CountBefore) << " to " in runOnFunction()
90 << NV("MIInstrsAfter", CountAfter) in runOnFunction()
91 << "; Delta: " << NV("Delta", Delta); in runOnFunction()
DMachineOutliner.cpp468 R << "Did not outline " << NV("Length", StringLen) << " instructions" in emitNotOutliningCheaperRemark()
469 << " from " << NV("NumOccurrences", CandidatesForRepeatedSeq.size()) in emitNotOutliningCheaperRemark()
472 << NV("OutliningCost", OF.getOutliningCost()) << ")" in emitNotOutliningCheaperRemark()
474 << NV("NotOutliningCost", OF.getNotOutlinedCost()) << ")" in emitNotOutliningCheaperRemark()
479 R << NV((Twine("OtherStartLoc") + Twine(i)).str(), in emitNotOutliningCheaperRemark()
495 R << "Saved " << NV("OutliningBenefit", OF.getBenefit()) << " bytes by " in emitOutlinedFunctionRemark()
496 << "outlining " << NV("Length", OF.getNumInstrs()) << " instructions " in emitOutlinedFunctionRemark()
497 << "from " << NV("NumOccurrences", OF.getOccurrenceCount()) in emitOutlinedFunctionRemark()
504 R << NV((Twine("StartLoc") + Twine(i)).str(), in emitOutlinedFunctionRemark()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DInliner.cpp389 const ore::NV &Arg) { in operator <<()
401 R << "(cost=" << ore::NV("Cost", IC.getCost()) in operator <<()
402 << ", threshold=" << ore::NV("Threshold", IC.getThreshold()) << ")"; in operator <<()
405 R << ": " << ore::NV("Reason", Reason); in operator <<()
439 << NV("Callee", Callee) << " not inlined into " in shouldInline()
440 << NV("Caller", Caller) << " because it should never be inlined " in shouldInline()
451 << NV("Callee", Callee) << " not inlined into " in shouldInline()
452 << NV("Caller", Caller) << " because too costly to inline " << IC; in shouldInline()
465 << "Not inlining. Cost of inlining " << NV("Callee", Callee) in shouldInline()
466 << " increases the cost of inlining " << NV("Caller", Caller) in shouldInline()
[all …]
DPartialInlining.cpp431 << ore::NV("Block", BlockList.front()->getName()) in computeOutliningColdRegionsInfo()
523 << ore::NV("Callee", F) << " inline cost-savings smaller than " in computeOutliningColdRegionsInfo()
524 << ore::NV("Cost", MinOutlineRegionCost); in computeOutliningColdRegionsInfo()
787 << NV("Callee", Cloner.OrigFunc) in shouldPartialInline()
796 << NV("Callee", Cloner.OrigFunc) << " not partially inlined into " in shouldPartialInline()
797 << NV("Caller", Caller) in shouldPartialInline()
806 << NV("Callee", Cloner.OrigFunc) << " not partially inlined into " in shouldPartialInline()
807 << NV("Caller", Caller) << " because too costly to inline (cost=" in shouldPartialInline()
808 << NV("Cost", IC.getCost()) << ", threshold=" in shouldPartialInline()
809 << NV("Threshold", IC.getCostDelta() + IC.getCost()) << ")"; in shouldPartialInline()
[all …]
/external/llvm-project/llvm/lib/Transforms/IPO/
DPartialInlining.cpp428 << ore::NV("Block", BlockList.front()->getName()) in computeOutliningColdRegionsInfo()
530 << ore::NV("Callee", &F) in computeOutliningColdRegionsInfo()
532 << ore::NV("Cost", MinOutlineRegionCost); in computeOutliningColdRegionsInfo()
792 << NV("Callee", Cloner.OrigFunc) in shouldPartialInline()
801 << NV("Callee", Cloner.OrigFunc) << " not partially inlined into " in shouldPartialInline()
802 << NV("Caller", Caller) in shouldPartialInline()
811 << NV("Callee", Cloner.OrigFunc) << " not partially inlined into " in shouldPartialInline()
812 << NV("Caller", Caller) << " because too costly to inline (cost=" in shouldPartialInline()
813 << NV("Cost", IC.getCost()) << ", threshold=" in shouldPartialInline()
814 << NV("Threshold", IC.getCostDelta() + IC.getCost()) << ")"; in shouldPartialInline()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DAssumptionCache.cpp147 void AssumptionCache::transferAffectedValuesInCache(Value *OV, Value *NV) { in transferAffectedValuesInCache() argument
148 auto &NAVV = getOrInsertAffectedValues(NV); in transferAffectedValuesInCache()
159 void AssumptionCache::AffectedValueCallbackVH::allUsesReplacedWith(Value *NV) { in allUsesReplacedWith() argument
160 if (!isa<Instruction>(NV) && !isa<Argument>(NV)) in allUsesReplacedWith()
165 AC->transferAffectedValuesInCache(getValPtr(), NV); in allUsesReplacedWith()
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/
DBoolAssignmentChecker.cpp73 Optional<NonLoc> NV = val.getAs<NonLoc>(); in checkBind() local
74 if (!NV) in checkBind()
89 std::tie(StIn, StOut) = CM.assumeInclusiveRangeDual(state, *NV, Zero, One); in checkBind()
DArrayBoundCheckerV2.cpp146 if (Optional<NonLoc> NV = extentBegin.getAs<NonLoc>()) { in checkLocation() local
147 if (NV->getAs<nonloc::ConcreteInt>()) { in checkLocation()
150 NV->castAs<nonloc::ConcreteInt>(), in checkLocation()
153 *NV = simplifiedOffsets.second; in checkLocation()
156 SVal lowerBound = svalBuilder.evalBinOpNN(state, BO_LT, rawOffsetVal, *NV, in checkLocation()
/external/skia/src/gpu/gl/
DGrGLAssembleGLESInterfaceAutogen.cpp182 GET_PROC_SUFFIX(BlendBarrier, NV); in GrGLMakeAssembledGLESInterface()
261 GET_PROC_SUFFIX(TextureBarrier, NV); in GrGLMakeAssembledGLESInterface()
366 GET_PROC_SUFFIX(CoverageModulation, NV); in GrGLMakeAssembledGLESInterface()
453 GET_PROC_SUFFIX(DeleteFences, NV); in GrGLMakeAssembledGLESInterface()
454 GET_PROC_SUFFIX(FinishFence, NV); in GrGLMakeAssembledGLESInterface()
455 GET_PROC_SUFFIX(GenFences, NV); in GrGLMakeAssembledGLESInterface()
456 GET_PROC_SUFFIX(SetFence, NV); in GrGLMakeAssembledGLESInterface()
457 GET_PROC_SUFFIX(TestFence, NV); in GrGLMakeAssembledGLESInterface()
DGrGLAssembleGLInterfaceAutogen.cpp194 GET_PROC_SUFFIX(BlendBarrier, NV); in GrGLMakeAssembledGLInterface()
274 GET_PROC_SUFFIX(TextureBarrier, NV); in GrGLMakeAssembledGLInterface()
366 GET_PROC_SUFFIX(CoverageModulation, NV); in GrGLMakeAssembledGLInterface()
489 GET_PROC_SUFFIX(DeleteFences, NV); in GrGLMakeAssembledGLInterface()
490 GET_PROC_SUFFIX(FinishFence, NV); in GrGLMakeAssembledGLInterface()
491 GET_PROC_SUFFIX(GenFences, NV); in GrGLMakeAssembledGLInterface()
492 GET_PROC_SUFFIX(SetFence, NV); in GrGLMakeAssembledGLInterface()
493 GET_PROC_SUFFIX(TestFence, NV); in GrGLMakeAssembledGLInterface()
/external/llvm-project/llvm/lib/Transforms/Instrumentation/
DIndirectCallPromotion.cpp279 << ore::NV("target md5sum", Target) << " not found"; in getPromotionCandidatesForCallSite()
291 << NV("TargetFunction", TargetFunction) << " with count of " in getPromotionCandidatesForCallSite()
292 << NV("Count", Count) << ": " << Reason; in getPromotionCandidatesForCallSite()
330 << "Promote indirect call to " << NV("DirectCallee", DirectCallee) in promoteIndirectCall()
331 << " with count " << NV("Count", Count) << " out of " in promoteIndirectCall()
332 << NV("TotalCount", TotalCount); in promoteIndirectCall()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DIndirectCallPromotion.cpp273 << ore::NV("target md5sum", Target) << " not found"; in getPromotionCandidatesForCallSite()
285 << NV("TargetFunction", TargetFunction) << " with count of " in getPromotionCandidatesForCallSite()
286 << NV("Count", Count) << ": " << Reason; in getPromotionCandidatesForCallSite()
325 << "Promote indirect call to " << NV("DirectCallee", DirectCallee) in promoteIndirectCall()
326 << " with count " << NV("Count", Count) << " out of " in promoteIndirectCall()
327 << NV("TotalCount", TotalCount); in promoteIndirectCall()
/external/llvm-project/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/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-10.0/llvm/lib/Transforms/Scalar/
DLoopVersioningLICM.cpp421 << NV("RuntimeChecks", LAI->getNumRuntimePointerChecks()) in legalLoopInstructions()
423 << NV("Threshold", VectorizerParams::RuntimeMemoryCheckThreshold); in legalLoopInstructions()
453 << NV("LoadAndStoreCounter", in legalLoopInstructions()
456 << NV("Threshold", InvariantThreshold); in legalLoopInstructions()
526 << NV("RuntimeChecks", LAI->getNumRuntimePointerChecks()); in isLegalForVersioning()
/external/llvm-project/llvm/lib/Transforms/Scalar/
DAnnotationRemarks.cpp50 << "Annotated " << NV("count", KV.second) << " instructions with " in runImpl()
51 << NV("type", KV.first)); in runImpl()

12345678910>>...13