Home
last modified time | relevance | path

Searched refs:Active (Results 1 – 25 of 106) sorted by relevance

12345

/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DMachineOutliner.cpp279 ActiveState Active; member in __anon4d7b9cfe0111::SuffixTree
382 if (Active.Len == 0) { in extend()
384 Active.Idx = EndIdx; in extend()
387 assert(Active.Idx <= EndIdx && "Start index can't be after end index!"); in extend()
390 unsigned FirstChar = Str[Active.Idx]; in extend()
393 if (Active.Node->Children.count(FirstChar) == 0) { in extend()
395 insertLeaf(*Active.Node, EndIdx, FirstChar); in extend()
400 NeedsLink->Link = Active.Node; in extend()
406 SuffixTreeNode *NextNode = Active.Node->Children[FirstChar]; in extend()
412 if (Active.Len >= SubstringLen) { in extend()
[all …]
DRegAllocPBQP.cpp330 IntervalSet Active(lowestEndPoint); in apply() local
347 IntervalSet::iterator RetireItr = Active.begin(); in apply()
348 while (RetireItr != Active.end() && in apply()
357 Active.erase(Active.begin(), RetireItr); in apply()
367 for (const auto &A : Active) { in apply()
388 Active.insert(Cur); in apply()
/external/swiftshader/third_party/subzero/src/
DIceSwitchLowering.cpp42 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()
DIceRegAlloc.cpp331 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/tensorflow/tensorflow/core/profiler/lib/
Dtraceme.h75 if (TraceMeRecorder::Active(level)) {
90 if (TraceMeRecorder::Active(level)) {
120 if (TraceMeRecorder::Active(level)) {
138 if (TraceMeRecorder::Active()) { in ~TraceMe()
155 return TraceMeRecorder::Active(level) ? ActivityStartImpl(name)
163 if (TraceMeRecorder::Active()) { in ActivityEnd()
/external/clang/lib/Sema/
DSemaTemplateInstantiate.cpp386 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/clang/lib/Parse/
DRAIIObjectsForParser.h48 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/tools/diagtool/
DShowEnabledWarnings.cpp116 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/cros/system_api/dbus/authpolicy/
Dactive_directory_info.proto108 // 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/
DCoverageMapping.cpp316 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/mesa3d/src/mesa/main/
Dperformance_query.c456 obj->Active = false; in _mesa_CreatePerfQueryINTEL()
486 if (obj->Active) in _mesa_DeletePerfQueryINTEL()
526 if (obj->Active) { in _mesa_BeginPerfQueryINTEL()
543 obj->Active = true; in _mesa_BeginPerfQueryINTEL()
571 if (!obj->Active) { in _mesa_EndPerfQueryINTEL()
579 obj->Active = false; in _mesa_EndPerfQueryINTEL()
619 if (obj->Active) { in _mesa_GetPerfQueryDataINTEL()
Dtransformfeedback.c57 if (obj->Active && obj->program == callback_data->prog) in active_xfb_object_references_program()
434 if (obj->Active) { in begin_transform_feedback()
455 obj->Active = GL_TRUE; in begin_transform_feedback()
508 ctx->TransformFeedback.CurrentObject->Active = GL_FALSE; in end_transform_feedback()
530 if (!obj->Active) { in _mesa_EndTransformFeedback()
587 if (obj->Active) { in _mesa_validate_buffer_range_xfb()
661 if (obj->Active) { in _mesa_bind_buffer_base_transform_feedback()
828 if (obj->Active) { in _mesa_BindBufferOffsetEXT()
915 if (ctx->TransformFeedback.CurrentObject->Active) { in _mesa_TransformFeedbackVaryings()
1214 if (obj->Active) { in _mesa_DeleteTransformFeedbacks()
[all …]
Dqueryobj.c52 q->Active = GL_FALSE; in _mesa_new_query_object()
352 if (q->Active) { in _mesa_DeleteQueries()
359 q->Active = GL_FALSE; in _mesa_DeleteQueries()
470 if (q->Active) { in _mesa_BeginQueryIndexed()
506 q->Active = GL_TRUE; in _mesa_BeginQueryIndexed()
554 if (!q || !q->Active) { in _mesa_EndQueryIndexed()
560 q->Active = GL_FALSE; in _mesa_EndQueryIndexed()
617 if (q->Active) { in _mesa_QueryCounter()
799 if (!q || q->Active || !q->EverBound) { in get_query_object()
Dperformance_monitor.c74 m->Active = false; in new_performance_monitor()
401 if (m->Active) { in _mesa_DeletePerfMonitorsAMD()
511 if (m->Active) { in _mesa_BeginPerfMonitorAMD()
521 m->Active = true; in _mesa_BeginPerfMonitorAMD()
544 if (!m->Active) { in _mesa_EndPerfMonitorAMD()
551 m->Active = false; in _mesa_EndPerfMonitorAMD()
/external/clang/lib/CodeGen/
DCGLoopInfo.h158 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
DCGLoopInfo.cpp124 Active.push_back(LoopInfo(Header, StagedAttrs, Location)); in push()
273 assert(!Active.empty() && "No active loops to pop"); in pop()
274 Active.pop_back(); in pop()
/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/
Dformat11 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/mdss/rotator_bw_ao_as_context/
Dformat11 print fmt: "Rotator bw context %s", REC->state ? "Active Only" : "Active+Sleep"
/external/aac/libAACdec/src/
Daacdec_tns.cpp125 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/swiftshader/third_party/llvm-7.0/llvm/lib/ProfileData/Coverage/
DCoverageMapping.cpp488 auto Active = Regions.begin(); in combineRegions() local
491 if (Active->startLoc() != I->startLoc() || in combineRegions()
492 Active->endLoc() != I->endLoc()) { in combineRegions()
494 ++Active; in combineRegions()
495 if (Active != I) in combineRegions()
496 *Active = *I; in combineRegions()
511 if (I->Kind == Active->Kind) in combineRegions()
512 Active->ExecutionCount += I->ExecutionCount; in combineRegions()
514 return Regions.drop_back(std::distance(++Active, End)); in combineRegions()
/external/u-boot/doc/device-tree-bindings/regulator/
Dfixed.txt15 - enable-active-high: Polarity of GPIO is Active high. If this property
16 is missing, the default assumed is Active low.
/external/u-boot/doc/device-tree-bindings/leds/
Dleds-gpio.txt11 Documentation/devicetree/bindings/gpio/gpio.txt. Active low LEDs should be
31 gpios = <&mcu_pio 0 1>; /* Active low */
/external/llvm/lib/CodeGen/
DRegAllocPBQP.cpp300 IntervalSet Active(lowestEndPoint); in apply() local
317 IntervalSet::iterator RetireItr = Active.begin(); in apply()
318 while (RetireItr != Active.end() && in apply()
327 Active.erase(Active.begin(), RetireItr); in apply()
337 for (const auto &A : Active) { in apply()
358 Active.insert(Cur); in apply()
/external/autotest/client/profilers/powertop/src/po/
Des.po177 msgid "Active Device name"
366 "Sugerencia: Active la opción del núcleo CONFIG_NO_HZ.\n"
377 "Sugerencia: Active la opción del núcleo CONFIG_CPU_FREQ_GOV_ONDEMAND.\n"
389 "Sugerencia: Active la opción del núcleo CONFIG_NO_HZ.\n"
399 "Sugerencia: Active la opción del núcleo CONFIG_HPET_TIMER.\n"
410 "Sugerencia: Active la opción del núcleo CONFIG_NO_HZ.\n"
419 "Sugerencia: Active la opción del núcleo CONFIG_NO_HZ.\n"
430 "Sugerencia: Active la opción del núcleo CONFIG_SND_AC97_POWER_SAVE.\n"
440 "Sugerencia: Active la opción del núcleo CONFIG_USB_SUSPEND. Esta\n"
449 "Sugerencia: Active el gobernador de velocidad de CPU en demanda en\n"
/external/tensorflow/tensorflow/core/profiler/internal/
Dtraceme_recorder_test.cc119 if (TraceMeRecorder::Active()) { in TEST()
125 if (was_active && !TraceMeRecorder::Active()) { in TEST()

12345