Home
last modified time | relevance | path

Searched refs:Dirty (Results 1 – 25 of 28) sorted by relevance

12

/third_party/ntfs-3g/include/ntfs-3g/
Dinode.h66 #define NInoDirty(ni) test_nino_flag(ni, Dirty)
67 #define NInoSetDirty(ni) set_nino_flag(ni, Dirty)
68 #define NInoClearDirty(ni) clear_nino_flag(ni, Dirty)
69 #define NInoTestAndSetDirty(ni) test_and_set_nino_flag(ni, Dirty)
70 #define NInoTestAndClearDirty(ni) test_and_clear_nino_flag(ni, Dirty)
86 #define NInoAttrListDirty(ni) test_nino_al_flag(ni, Dirty)
87 #define NInoAttrListSetDirty(ni) set_nino_al_flag(ni, Dirty)
88 #define NInoAttrListClearDirty(ni) clear_nino_al_flag(ni, Dirty)
89 #define NInoAttrListTestAndSetDirty(ni) test_and_set_nino_al_flag(ni, Dirty)
90 #define NInoAttrListTestAndClearDirty(ni) test_and_clear_nino_al_flag(ni, Dirty)
Ddevice.h60 #define NDevDirty(nd) test_ndev_flag(nd, Dirty)
61 #define NDevSetDirty(nd) set_ndev_flag(nd, Dirty)
62 #define NDevClearDirty(nd) clear_ndev_flag(nd, Dirty)
/third_party/gstreamer/gstplugins_bad/sys/d3d11/
Dgstd3d11screencapture.cpp1037 SetDirtyVert (VERTEX* Vertices, RECT* Dirty, in SetDirtyVert() argument
1048 RECT DestDirty = *Dirty; in SetDirtyVert()
1054 DestDirty.left = Width - Dirty->bottom; in SetDirtyVert()
1055 DestDirty.top = Dirty->left; in SetDirtyVert()
1056 DestDirty.right = Width - Dirty->top; in SetDirtyVert()
1057 DestDirty.bottom = Dirty->right; in SetDirtyVert()
1060 MyFLOAT2(Dirty->right / static_cast<FLOAT>(ThisDesc->Width), in SetDirtyVert()
1061 Dirty->bottom / static_cast<FLOAT>(ThisDesc->Height)); in SetDirtyVert()
1063 MyFLOAT2(Dirty->left / static_cast<FLOAT>(ThisDesc->Width), in SetDirtyVert()
1064 Dirty->bottom / static_cast<FLOAT>(ThisDesc->Height)); in SetDirtyVert()
[all …]
/third_party/flutter/flutter/packages/flutter/test/rendering/
Dreattach_test.dart93 // Dirty one of the elements
108 // Dirty one of the elements
124 // Dirty one of the elements
145 // Dirty one of the elements
168 // Dirty one of the elements
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DScheduleDAG.cpp467 Dirty = false; in InitDAGTopologicalSorting()
525 if (Dirty) { in FixOrder()
540 Dirty = Dirty || Updates.size() > 10; in AddPredQueued()
542 if (Dirty) in AddPredQueued()
DRegAllocFast.cpp89 bool Dirty = false; ///< Register needs spill. member
421 if (LR.Dirty) { in spillVirtReg()
425 LR.Dirty = false; in spillVirtReg()
579 return LRI->Dirty ? spillDirty : spillClean; in calcSpillCost()
600 Cost += LRI->Dirty ? spillDirty : spillClean; in calcSpillCost()
803 LRI->Dirty = true; in defineVirtReg()
821 } else if (LRI->Dirty) { in reloadVirtReg()
993 if (LRI->Dirty) in dumpState()
/third_party/pulseaudio/scripts/
Dplot_memory_usage.gp44 set y2label "Dirty RSS consumption (MiB)"
61 inputFile using 1:($3/1024) title "Dirty RSS" axes x1y2 with linespoints
/third_party/flutter/skia/third_party/externals/angle2/doc/
DDirtyBits.md1 # Dirty Bits and State Changes
32 ## Dirty Bits
50 Dirty bits allow us to efficiently process groups of state updates. We use fast instrinsic functions
/third_party/skia/third_party/externals/angle2/doc/
DDirtyBits.md1 # Dirty Bits and State Changes
32 ## Dirty Bits
50 Dirty bits allow us to efficiently process groups of state updates. We use fast instrinsic functions
/third_party/boost/libs/outcome/doc/src/content/videos/
D_index.md34 ## ACCU 2017 *"Mongrel Monads, Dirty, dirty, dirty"*
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DScheduleDAG.h695 bool Dirty = false;
759 void MarkDirty() { Dirty = true; }
/third_party/mesa3d/docs/relnotes/
D17.1.3.rst39 - radv: Dirty all descriptors sets when changing the pipeline.
D21.2.0.rst607 - panfrost: Dirty all state when batch is set
608 - panfrost: Dirty track RSDs
609 - panfrost: Dirty track textures/samplers
610 - panfrost: Dirty track viewport descriptor
611 - panfrost: Dirty track fragment images
657 - asahi: Dirty track viewport descriptor
699 - panfrost: Dirty track constant buffers
701 - panfrost: Dirty track stack sizes
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIInsertWaitcnts.cpp383 bool Dirty = true; member
1513 if (!BI.Dirty) in runOnMachineFunction()
1531 BI.Dirty = false; in runOnMachineFunction()
1539 SuccBI.Dirty = true; in runOnMachineFunction()
1548 SuccBI.Dirty = true; in runOnMachineFunction()
/third_party/flutter/flutter/packages/flutter/test/widgets/
Dbuild_scope_test.dart171 testWidgets('Dirty element list sort order', (WidgetTester tester) async {
/third_party/flutter/skia/third_party/externals/imgui/
Dimgui_demo.cpp3947 bool Dirty; // Set when the document has been modified member
3955 Dirty = false; in MyDocument()
3961 void DoForceClose() { Open = false; Dirty = false; } in DoForceClose()
3962 void DoSave() { Dirty = false; } in DoSave()
3973 doc->Dirty = true; in DisplayContents()
4107 ImGuiTabItemFlags tab_flags = (doc->Dirty ? ImGuiTabItemFlags_UnsavedDocument : 0); in ShowExampleAppDocuments()
4111 if (!doc->Open && doc->Dirty) in ShowExampleAppDocuments()
4150 if (close_queue[n]->Dirty) in ShowExampleAppDocuments()
4170 if (close_queue[n]->Dirty) in ShowExampleAppDocuments()
4178 if (close_queue[n]->Dirty) in ShowExampleAppDocuments()
/third_party/ninja/src/
Dbuild_test.cc523 void Dirty(const string& path);
695 void BuildTest::Dirty(const string& path) { in Dirty() function in BuildTest
713 Dirty("cat1"); in TEST_F()
727 Dirty("cat1"); in TEST_F()
861 Dirty("in1"); in TEST_F()
1829 Dirty("out"); in TEST_F()
/third_party/boost/libs/proto/doc/
Dimplementation.qbk10 [section:sfinae Quick-n-Dirty Type Categorization]
/third_party/skia/third_party/externals/imgui/
Dimgui_demo.cpp7390 bool Dirty; // Set when the document has been modified member
7398 Dirty = false;
7404 void DoForceClose() { Open = false; Dirty = false; }
7405 void DoSave() { Dirty = false; }
7416 doc->Dirty = true;
7562 ImGuiTabItemFlags tab_flags = (doc->Dirty ? ImGuiTabItemFlags_UnsavedDocument : 0);
7566 if (!doc->Open && doc->Dirty)
7605 if (close_queue[n]->Dirty)
7626 if (close_queue[n]->Dirty)
7636 if (close_queue[n]->Dirty)
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/
Dbinding.dart351 Timeline.startSync('Dirty Render Tree', arguments: timelineWhitelistArguments);
Dobject.dart2452 // Dirty the semantics tree starting at `this` until we have reached a
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/engine/semantics/
Dsemantics.dart204 /// "is*Dirty" getters to find out exactly what's changed and apply the
530 /// Instead of use this field directly, prefer using one of the "is*Dirty"
/third_party/wayland_standard/doc/publican/sources/css/
Dcommon.css1636 /* Dirty EVIL Mozilla hack for round corners */
/third_party/re2/benchlog/
Dbenchlog.r7034 Dirty: 360 kB
/third_party/python/Lib/test/
Dtest_enum.py3149 class Dirty(Enum): class

12