Home
last modified time | relevance | path

Searched refs:completedValue (Results 1 – 8 of 8) sorted by relevance

/third_party/flutter/skia/third_party/externals/dawn/src/dawn_native/
DFence.cpp102 void FenceBase::SetCompletedValue(uint64_t completedValue) { in SetCompletedValue() argument
104 ASSERT(completedValue <= mSignalValue); in SetCompletedValue()
105 ASSERT(completedValue > mCompletedValue); in SetCompletedValue()
106 mCompletedValue = completedValue; in SetCompletedValue()
DFence.h49 void SetCompletedValue(uint64_t completedValue);
/third_party/flutter/skia/third_party/externals/dawn/src/dawn_wire/client/
DFence.cpp29 for (auto& request : requests.IterateUpTo(completedValue)) { in CheckPassedFences()
32 requests.ClearUpTo(completedValue); in CheckPassedFences()
DFence.h38 uint64_t completedValue = 0; member
DApiProcs.cpp269 return fence->completedValue; in ClientFenceGetCompletedValue()
283 if (value <= fence->completedValue) { in ClientFenceOnCompletion()
378 fence->completedValue = descriptor->initialValue; in ClientQueueCreateFence()
DClientDoers.cpp171 fence->completedValue = value; in DoFenceUpdateCompletedValue()
/third_party/flutter/skia/third_party/externals/dawn/src/tests/end2end/
DFenceTests.cpp60 void WaitForCompletedValue(dawn::Fence fence, uint64_t completedValue) { in WaitForCompletedValue() argument
61 while (fence.GetCompletedValue() < completedValue) { in WaitForCompletedValue()
/third_party/flutter/flutter/packages/flutter/lib/src/widgets/
Dlocalizations.dart58 dynamic completedValue;
60 return completedValue = value;
62 if (completedValue != null) { // inputValue was a SynchronousFuture
65 output[type] = completedValue;