/external/llvm-project/llvm/lib/Support/ |
D | SuffixTree.cpp | 21 Active.Node = Root; in SuffixTree() 103 if (Active.Len == 0) { in extend() 105 Active.Idx = EndIdx; in extend() 108 assert(Active.Idx <= EndIdx && "Start index can't be after end index!"); in extend() 111 unsigned FirstChar = Str[Active.Idx]; in extend() 114 if (Active.Node->Children.count(FirstChar) == 0) { in extend() 116 insertLeaf(*Active.Node, EndIdx, FirstChar); in extend() 121 NeedsLink->Link = Active.Node; in extend() 127 SuffixTreeNode *NextNode = Active.Node->Children[FirstChar]; in extend() 133 if (Active.Len >= SubstringLen) { in extend() [all …]
|
/external/tensorflow/tensorflow/core/profiler/lib/ |
D | traceme.h | 94 if (TF_PREDICT_FALSE(TraceMeRecorder::Active(level))) { 140 if (TF_PREDICT_FALSE(TraceMeRecorder::Active(level))) { 176 if (TF_PREDICT_TRUE(TraceMeRecorder::Active())) { in Stop() 200 if (TF_PREDICT_TRUE(TraceMeRecorder::Active())) { in AppendMetadata() 215 if (TF_PREDICT_FALSE(TraceMeRecorder::Active(level))) { 229 if (TF_PREDICT_FALSE(TraceMeRecorder::Active(level))) { 254 if (TF_PREDICT_TRUE(TraceMeRecorder::Active())) { in ActivityEnd() 266 if (TF_PREDICT_FALSE(TraceMeRecorder::Active(level))) { 274 static bool Active(int level = 1) { 276 return TraceMeRecorder::Active(level); [all …]
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaTemplateInstantiate.cpp | 449 auto &Active = CodeSynthesisContexts.back(); in popCodeSynthesisContext() local 450 if (!Active.isInstantiationRecord()) { in popCodeSynthesisContext() 455 InNonInstantiationSFINAEContext = Active.SavedInNonInstantiationSFINAEContext; in popCodeSynthesisContext() 480 auto &Active = SemaRef.CodeSynthesisContexts.back(); in Clear() local 481 if (Active.Entity) in Clear() 483 std::make_pair(Active.Entity, Active.Kind)); in Clear() 527 Active = CodeSynthesisContexts.rbegin(), in PrintInstantiationStack() local 529 Active != ActiveEnd; in PrintInstantiationStack() 530 ++Active, ++InstantiationIdx) { in PrintInstantiationStack() 535 Diags.Report(Active->PointOfInstantiation, in PrintInstantiationStack() [all …]
|
/external/swiftshader/third_party/subzero/src/ |
D | IceSwitchLowering.cpp | 42 auto Active = CaseClusters.begin(); in clusterizeSwitch() local 43 std::for_each(Active + 1, CaseClusters.end(), in clusterizeSwitch() 44 [&Active](const CaseCluster &x) { in clusterizeSwitch() 45 if (!Active->tryAppend(x)) in clusterizeSwitch() 46 *(++Active) = x; in clusterizeSwitch() 48 CaseClusters.erase(Active + 1, CaseClusters.end()); in clusterizeSwitch()
|
D | IceRegAlloc.cpp | 331 Active.clear(); in init() 377 Active.reserve(Unhandled.size()); in init() 449 for (SizeT I = Active.size(); I > 0; --I) { in handleActiveRangeExpiredOrInactive() 451 Variable *Item = Active[Index]; in handleActiveRangeExpiredOrInactive() 457 moveItem(Active, Index, Handled); in handleActiveRangeExpiredOrInactive() 462 moveItem(Active, Index, Inactive); in handleActiveRangeExpiredOrInactive() 489 moveItem(Inactive, Index, Active); in handleInactiveRangeExpiredOrReactivated() 625 Active.push_back(Cur); in allocatePrecoloredRegister() 644 Active.push_back(Iter.Cur); in allocatePreferredRegister() 660 Active.push_back(Iter.Cur); in allocateFreeRegister() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | MachineOutliner.cpp | 267 ActiveState Active; member in __anonccd637a60111::SuffixTree 361 if (Active.Len == 0) { in extend() 363 Active.Idx = EndIdx; in extend() 366 assert(Active.Idx <= EndIdx && "Start index can't be after end index!"); in extend() 369 unsigned FirstChar = Str[Active.Idx]; in extend() 372 if (Active.Node->Children.count(FirstChar) == 0) { in extend() 374 insertLeaf(*Active.Node, EndIdx, FirstChar); in extend() 379 NeedsLink->Link = Active.Node; in extend() 385 SuffixTreeNode *NextNode = Active.Node->Children[FirstChar]; in extend() 391 if (Active.Len >= SubstringLen) { in extend() [all …]
|
/external/clang/lib/Sema/ |
D | SemaTemplateInstantiate.cpp | 386 Active = ActiveTemplateInstantiations.rbegin(), in PrintInstantiationStack() local 388 Active != ActiveEnd; in PrintInstantiationStack() 389 ++Active, ++InstantiationIdx) { in PrintInstantiationStack() 394 Diags.Report(Active->PointOfInstantiation, in PrintInstantiationStack() 401 switch (Active->Kind) { in PrintInstantiationStack() 403 Decl *D = Active->Entity; in PrintInstantiationStack() 408 Diags.Report(Active->PointOfInstantiation, DiagID) in PrintInstantiationStack() 410 << Active->InstantiationRange; in PrintInstantiationStack() 417 Diags.Report(Active->PointOfInstantiation, DiagID) in PrintInstantiationStack() 419 << Active->InstantiationRange; in PrintInstantiationStack() [all …]
|
/external/llvm-project/clang/include/clang/Parse/ |
D | RAIIObjectsForParser.h | 48 bool Active; variable 56 Active = true; 58 Active = false; 63 State(Other.State), Active(Other.Active) { in SuppressAccessChecks() 64 Other.Active = false; in SuppressAccessChecks() 69 assert(Active && "trying to end an inactive suppression"); in done() 71 Active = false; in done() 75 assert(!Active && "redelaying without having ended first"); in redelay() 82 if (Active) done(); in ~SuppressAccessChecks()
|
/external/clang/lib/Parse/ |
D | RAIIObjectsForParser.h | 48 bool Active; variable 56 Active = true; 58 Active = false; 63 State(Other.State), Active(Other.Active) { in SuppressAccessChecks() 64 Other.Active = false; in SuppressAccessChecks() 69 assert(Active && "trying to end an inactive suppression"); in done() 71 Active = false; in done() 75 assert(!Active && "redelaying without having ended first"); in redelay() 82 if (Active) done(); in ~SuppressAccessChecks()
|
/external/llvm-project/clang-tools-extra/clangd/index/ |
D | BackgroundQueue.cpp | 32 ++Stat.Active; in work() 49 if (Stat.Active == 1 && Queue.empty()) { in work() 59 assert(Stat.Active > 0 && "before decrementing"); in work() 60 --Stat.Active; in work() 123 [&] { return Queue.empty() && Stat.Active == 0; }); in blockUntilIdleForTest() 128 Stat.Enqueued, Stat.Active, Stat.LastIdle); in notifyProgress()
|
/external/mesa3d/src/mesa/main/ |
D | performance_query.c | 55 m->Active = false; in free_performance_query() 462 obj->Active = false; in _mesa_CreatePerfQueryINTEL() 492 if (obj->Active) in _mesa_DeletePerfQueryINTEL() 532 if (obj->Active) { in _mesa_BeginPerfQueryINTEL() 549 obj->Active = true; in _mesa_BeginPerfQueryINTEL() 577 if (!obj->Active) { in _mesa_EndPerfQueryINTEL() 585 obj->Active = false; in _mesa_EndPerfQueryINTEL() 634 if (obj->Active) { in _mesa_GetPerfQueryDataINTEL()
|
D | transformfeedback.c | 59 if (obj->Active && obj->program == callback_data->prog) in active_xfb_object_references_program() 440 if (obj->Active) { in begin_transform_feedback() 461 obj->Active = GL_TRUE; in begin_transform_feedback() 516 ctx->TransformFeedback.CurrentObject->Active = GL_FALSE; in end_transform_feedback() 538 if (!obj->Active) { in _mesa_EndTransformFeedback() 595 if (obj->Active) { in _mesa_validate_buffer_range_xfb() 669 if (obj->Active) { in _mesa_bind_buffer_base_transform_feedback() 842 if (obj->Active) { in _mesa_BindBufferOffsetEXT() 929 if (ctx->TransformFeedback.CurrentObject->Active) { in _mesa_TransformFeedbackVaryings() 1224 if (obj->Active) { in _mesa_DeleteTransformFeedbacks() [all …]
|
D | queryobj.c | 52 q->Active = GL_FALSE; in _mesa_new_query_object() 344 if (q->Active) { in _mesa_DeleteQueries() 351 q->Active = GL_FALSE; in _mesa_DeleteQueries() 462 if (q->Active) { in _mesa_BeginQueryIndexed() 498 q->Active = GL_TRUE; in _mesa_BeginQueryIndexed() 546 if (!q || !q->Active) { in _mesa_EndQueryIndexed() 552 q->Active = GL_FALSE; in _mesa_EndQueryIndexed() 609 if (q->Active) { in _mesa_QueryCounter() 803 if (!q || q->Active || !q->EverBound) { in get_query_object()
|
D | performance_monitor.c | 74 m->Active = false; in new_performance_monitor() 395 if (m->Active) { in _mesa_DeletePerfMonitorsAMD() 509 if (m->Active) { in _mesa_BeginPerfMonitorAMD() 519 m->Active = true; in _mesa_BeginPerfMonitorAMD() 542 if (!m->Active) { in _mesa_EndPerfMonitorAMD() 549 m->Active = false; in _mesa_EndPerfMonitorAMD()
|
/external/clang/tools/diagtool/ |
D | ShowEnabledWarnings.cpp | 116 std::vector<PrettyDiag> Active; in run() local 135 Active.push_back(PrettyDiag(I->getName(), WarningOpt, DiagLevel)); in run() 139 for (std::vector<PrettyDiag>::const_iterator I = Active.begin(), in run() 140 E = Active.end(); I != E; ++I) { in run()
|
/external/pigweed/pw_target_runner/go/src/pigweed.dev/pw_target_runner/ |
D | worker_pool.go | 110 if p.Active() { 119 if p.Active() { 137 if !p.Active() { 151 func (p *WorkerPool) Active() bool { func
|
/external/cros/system_api/dbus/authpolicy/ |
D | active_directory_info.proto | 108 // from Active Directory server with "net ads search ...". 111 // Active Directory user account information. 113 // Display name of the user. Taken from the displayName property of the Active 117 // of the Active Directory user account information. 120 // property of the Active Directory user account information. 124 // the pwdLastSet property of the Active Directory user account information. 129 // the userAccountControl property of the Active Directory user account 133 // property of the Active Directory user account information. 198 // strong types are allowed during negotiation. However, some Active Directory 221 // Active Directory user account information. [all …]
|
/external/llvm/lib/ProfileData/Coverage/ |
D | CoverageMapping.cpp | 316 const CountedRegion *Active = ActiveRegions.back(); in popRegion() local 317 unsigned Line = Active->LineEnd, Col = Active->ColumnEnd; in popRegion() 368 auto Active = Regions.begin(); in combineRegions() local 371 if (Active->startLoc() != I->startLoc() || in combineRegions() 372 Active->endLoc() != I->endLoc()) { in combineRegions() 374 ++Active; in combineRegions() 375 if (Active != I) in combineRegions() 376 *Active = *I; in combineRegions() 391 if (I->Kind == Active->Kind) in combineRegions() 392 Active->ExecutionCount += I->ExecutionCount; in combineRegions() [all …]
|
/external/clang/lib/CodeGen/ |
D | CGLoopInfo.h | 158 bool hasInfo() const { return !Active.empty(); } in hasInfo() 161 const LoopInfo &getInfo() const { return Active.back(); } in getInfo() 165 llvm::SmallVector<LoopInfo, 4> Active; variable
|
/external/llvm-project/clang/tools/diagtool/ |
D | ShowEnabledWarnings.cpp | 114 std::vector<PrettyDiag> Active; in run() local 131 Active.push_back(PrettyDiag(DR.getName(), WarningOpt, DiagLevel)); in run() 135 for (const PrettyDiag &PD : Active) { in run()
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/mdss/rotator_bw_ao_as_context/ |
D | format | 11 print fmt: "Rotator bw context %s", REC->state ? "Active Only" : "Active+Sleep"
|
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/sde_rotator/rot_bw_ao_as_context/ |
D | format | 11 print fmt: "Rotator bw context %s", REC->state ? "Active Only" : "Active+Sleep"
|
/external/aac/libAACdec/src/ |
D | aacdec_tns.cpp | 125 pTnsData->Active = 0; in CTns_Reset() 231 pTnsData->Active = 1; in CTns_Read() 251 pTnsData0->Active = 1; in CTns_ReadDataPresentUsac() 281 if (pTnsData->Active) { in CTns_Apply()
|
/external/llvm-project/llvm/unittests/Support/ |
D | ThreadPool.cpp | 185 unsigned Active = 0; in RunOnAllSockets() local 192 ++Active; in RunOnAllSockets() 205 [&]() { return Active == S.compute_thread_count(); }); in RunOnAllSockets()
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGLoopInfo.h | 283 bool hasInfo() const { return !Active.empty(); } in hasInfo() 286 const LoopInfo &getInfo() const { return *Active.back(); } in getInfo() 290 llvm::SmallVector<std::unique_ptr<LoopInfo>, 4> Active; variable
|