Home
last modified time | relevance | path

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

123456

/third_party/ffmpeg/tests/ref/fate/
Dh264-afd3 side_data_type=Active format description
9 side_data_type=Active format description
15 side_data_type=Active format description
21 side_data_type=Active format description
27 side_data_type=Active format description
33 side_data_type=Active format description
39 side_data_type=Active format description
45 side_data_type=Active format description
51 side_data_type=Active format description
57 side_data_type=Active format description
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineOutliner.cpp267 ActiveState Active; member in __anonacbd3dd20111::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 …]
DRegAllocPBQP.cpp329 IntervalSet Active(lowestEndPoint); in apply() local
346 IntervalSet::iterator RetireItr = Active.begin(); in apply()
347 while (RetireItr != Active.end() && in apply()
356 Active.erase(Active.begin(), RetireItr); in apply()
366 for (const auto &A : Active) { in apply()
387 Active.insert(Cur); in apply()
DShadowStackGCLowering.cpp169 bool Active = false; in doInitialization() local
172 Active = true; in doInitialization()
176 if (!Active) in doInitialization()
/third_party/skia/third_party/externals/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 …]
DIceGlobalContext.cpp1045 Active = getFlags().getSubzeroTimingEnabled() || in push()
1049 Active = getFlags().getTimeEachFunction(); in push()
1054 if (Active) in push()
1060 Active = Func->getFocusedTiming() || getFlags().getSubzeroTimingEnabled(); in pushCfg()
1061 if (Active) in pushCfg()
DIceRegAlloc.h121 UnorderedRanges Active, Inactive, Handled; variable
/third_party/mesa3d/src/mesa/main/
Dperformance_query.c60 m->Active = false; in free_performance_query()
514 obj->Active = false; in _mesa_CreatePerfQueryINTEL()
544 if (obj->Active) in _mesa_DeletePerfQueryINTEL()
584 if (obj->Active) { in _mesa_BeginPerfQueryINTEL()
601 obj->Active = true; in _mesa_BeginPerfQueryINTEL()
629 if (!obj->Active) { in _mesa_EndPerfQueryINTEL()
637 obj->Active = false; in _mesa_EndPerfQueryINTEL()
686 if (obj->Active) { in _mesa_GetPerfQueryDataINTEL()
Dtransformfeedback.c64 if (obj->Active && obj->program == callback_data->prog) in active_xfb_object_references_program()
382 if (obj->Active) { in begin_transform_feedback()
402 obj->Active = GL_TRUE; in begin_transform_feedback()
514 ctx->TransformFeedback.CurrentObject->Active = GL_FALSE; in end_transform_feedback()
537 if (!obj->Active) { in _mesa_EndTransformFeedback()
594 if (obj->Active) { in _mesa_validate_buffer_range_xfb()
668 if (obj->Active) { in _mesa_bind_buffer_base_transform_feedback()
841 if (obj->Active) { in _mesa_BindBufferOffsetEXT()
928 if (ctx->TransformFeedback.CurrentObject->Active) { in _mesa_TransformFeedbackVaryings()
1223 if (obj->Active) { in _mesa_DeleteTransformFeedbacks()
[all …]
Dqueryobj.c213 q->Active = GL_FALSE; in begin_query()
631 if (q->Active) { in _mesa_DeleteQueries()
638 q->Active = GL_FALSE; in _mesa_DeleteQueries()
749 if (q->Active) { in _mesa_BeginQueryIndexed()
785 q->Active = GL_TRUE; in _mesa_BeginQueryIndexed()
833 if (!q || !q->Active) { in _mesa_EndQueryIndexed()
839 q->Active = GL_FALSE; in _mesa_EndQueryIndexed()
896 if (q->Active) { in _mesa_QueryCounter()
1086 if (!q || q->Active || !q->EverBound) { in get_query_object()
Dperformance_monitor.c240 if (m->Active) in reset_perf_monitor()
456 m->Active = false; in new_performance_monitor()
777 if (m->Active) { in _mesa_DeletePerfMonitorsAMD()
891 if (m->Active) { in _mesa_BeginPerfMonitorAMD()
901 m->Active = true; in _mesa_BeginPerfMonitorAMD()
924 if (!m->Active) { in _mesa_EndPerfMonitorAMD()
931 m->Active = false; in _mesa_EndPerfMonitorAMD()
Dtransformfeedback.h82 return ctx->TransformFeedback.CurrentObject->Active && in _mesa_is_xfb_active_and_unpaused()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/Coverage/
DCoverageMapping.cpp535 auto Active = Regions.begin(); in combineRegions() local
538 if (Active->startLoc() != I->startLoc() || in combineRegions()
539 Active->endLoc() != I->endLoc()) { in combineRegions()
541 ++Active; in combineRegions()
542 if (Active != I) in combineRegions()
543 *Active = *I; in combineRegions()
558 if (I->Kind == Active->Kind) in combineRegions()
559 Active->ExecutionCount += I->ExecutionCount; in combineRegions()
561 return Regions.drop_back(std::distance(++Active, End)); in combineRegions()
/third_party/skia/third_party/externals/oboe/src/common/
DLatencyTuner.cpp50 mState = State::Active; in tune()
54 if (mState == State::Active) { in tune()
/third_party/jerryscript/tests/debugger/
Ddo_delete.expected16 === Active breakpoints ===
27 === Active breakpoints ===
Ddo_break.expected11 === Active breakpoints ===
23 === Active breakpoints ===
Ddo_list.expected8 === Active breakpoints ===
Ddo_pending_breakpoints.expected19 === Active breakpoints ===
Ddo_delete_all.expected16 === Active breakpoints ===
/third_party/node/deps/base64/
DREADME.md8 Active development occurs in the default branch (currently named `master`).
/third_party/node/deps/ada/
DREADME.md7 Active development occurs in the default branch (currently named `main`).
/third_party/node/deps/simdutf/
DREADME.md8 Active development occurs in the default branch (currently named `master`).
/third_party/skia/third_party/externals/oboe/include/oboe/
DLatencyTuner.h128 Active, enumerator
/third_party/python/Tools/freeze/
Dextensions_win32.ini141 dsp=%PYTHONEX%\com\Active Scripting.dsp
145 dsp=%PYTHONEX%\com\Active Debugging.dsp

123456