/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/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/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/cros/system_api/dbus/authpolicy/ |
D | active_directory_info.proto | 104 // from Active Directory server with "net ads search ...". 107 // Active Directory user account information. 109 // Display name of the user. Taken from the displayName property of the Active 113 // of the Active Directory user account information. 116 // property of the Active Directory user account information. 120 // the pwdLastSet property of the Active Directory user account information. 125 // the userAccountControl property of the Active Directory user account 129 // property of the Active Directory user account information. 195 // strong types are allowed during negotiation. However, some Active Directory 218 // Active Directory user account information. [all …]
|
/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/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/mesa3d/src/mesa/main/ |
D | transformfeedback.c | 57 if (obj->Active && obj->program == callback_data->prog) in active_xfb_object_references_program() 443 if (obj->Active) { in _mesa_BeginTransformFeedback() 463 obj->Active = GL_TRUE; in _mesa_BeginTransformFeedback() 498 if (!obj->Active) { in _mesa_EndTransformFeedback() 510 ctx->TransformFeedback.CurrentObject->Active = GL_FALSE; in _mesa_EndTransformFeedback() 566 if (obj->Active) { in _mesa_bind_buffer_range_transform_feedback() 640 if (obj->Active) { in _mesa_bind_buffer_base_transform_feedback() 771 if (obj->Active) { in _mesa_BindBufferOffsetEXT() 823 if (ctx->TransformFeedback.CurrentObject->Active) { in _mesa_TransformFeedbackVaryings() 1130 if (obj->Active) { in _mesa_DeleteTransformFeedbacks() [all …]
|
D | performance_monitor.c | 74 m->Active = false; in new_performance_monitor() 428 if (m->Active) { in _mesa_DeletePerfMonitorsAMD() 538 if (m->Active) { in _mesa_BeginPerfMonitorAMD() 548 m->Active = true; in _mesa_BeginPerfMonitorAMD() 571 if (!m->Active) { in _mesa_EndPerfMonitorAMD() 578 m->Active = false; in _mesa_EndPerfMonitorAMD() 1098 if (m->Active) { in _mesa_DeletePerfQueryINTEL() 1142 if (m->Active) { in _mesa_BeginPerfQueryINTEL() 1149 m->Active = true; in _mesa_BeginPerfQueryINTEL() 1184 if (!m->Active) { in _mesa_EndPerfQueryINTEL() [all …]
|
D | queryobj.c | 52 q->Active = GL_FALSE; in _mesa_new_query_object() 326 if (q->Active) { in _mesa_DeleteQueries() 333 q->Active = GL_FALSE; in _mesa_DeleteQueries() 443 if (q->Active) { in _mesa_BeginQueryIndexed() 479 q->Active = GL_TRUE; in _mesa_BeginQueryIndexed() 527 if (!q || !q->Active) { in _mesa_EndQueryIndexed() 533 q->Active = GL_FALSE; in _mesa_EndQueryIndexed() 590 if (q->Active) { in _mesa_QueryCounter() 751 if (!q || q->Active || !q->EverBound) { in get_query_object()
|
D | condrender.c | 102 q->Target != GL_ANY_SAMPLES_PASSED_CONSERVATIVE) || q->Active) { in _mesa_BeginConditionalRender()
|
/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
|
D | CGLoopInfo.cpp | 124 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/ftrace_reader/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/ftrace_reader/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()
|
D | aacdec_tns.h | 139 UCHAR Active; member
|
/external/valgrind/coregrind/ |
D | m_redir.c | 292 Active; typedef 304 static void maybe_add_active ( Active /*by value; callee copies*/ ); 312 static void show_active ( const HChar* left, const Active* act ); 772 Active *old, new; in VG_() 808 Active act; in generate_and_add_actives() 946 static void maybe_add_active ( Active act ) in maybe_add_active() 949 Active* old = NULL; in maybe_add_active() 1044 Active* a = VG_(OSetGen_AllocNode)(activeSet, sizeof(Active)); in maybe_add_active() 1088 Active* act; in VG_() 1187 Active* r = VG_(OSetGen_Lookup)(activeSet, &orig); in VG_() [all …]
|
/external/llvm/lib/CodeGen/ |
D | RegAllocPBQP.cpp | 300 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()
|
D | ShadowStackGCLowering.cpp | 266 bool Active = false; in doInitialization() local 269 Active = true; in doInitialization() 273 if (!Active) in doInitialization()
|
/external/autotest/client/profilers/powertop/src/po/ |
D | es.po | 177 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/tcpdump/tests/ |
D | lmp-v.out | 180 Active: Allocated (1) 184 Active: Allocated (1) 194 Active: Allocated (1) 198 Active: Allocated (1)
|
/external/blktrace/btt/doc/ |
D | sample-btt-output.tex | 76 ==================== Active Requests At Q Information ====================
|
/external/python/cpython3/Tools/freeze/ |
D | extensions_win32.ini | 141 dsp=%PYTHONEX%\com\Active Scripting.dsp 145 dsp=%PYTHONEX%\com\Active Debugging.dsp
|
/external/python/cpython2/Tools/freeze/ |
D | extensions_win32.ini | 141 dsp=%PYTHONEX%\com\Active Scripting.dsp 145 dsp=%PYTHONEX%\com\Active Debugging.dsp
|