/third_party/skia/third_party/externals/dawn/src/common/ |
D | SerialMap.h | 23 template <typename Serial, typename Value> 28 using Serial = SerialT; 30 using Storage = std::map<Serial, std::vector<Value>>; 39 template <typename Serial, typename Value> 40 class SerialMap : public SerialStorage<SerialMap<Serial, Value>> { 42 void Enqueue(const Value& value, Serial serial); 43 void Enqueue(Value&& value, Serial serial); 44 void Enqueue(const std::vector<Value>& values, Serial serial); 45 void Enqueue(std::vector<Value>&& values, Serial serial); 50 template <typename Serial, typename Value> [all …]
|
D | SerialQueue.h | 22 template <typename Serial, typename Value> 27 using Serial = SerialT; 29 using SerialPair = std::pair<Serial, std::vector<Value>>; 39 template <typename Serial, typename Value> 40 class SerialQueue : public SerialStorage<SerialQueue<Serial, Value>> { 44 void Enqueue(const Value& value, Serial serial); 45 void Enqueue(Value&& value, Serial serial); 46 void Enqueue(const std::vector<Value>& values, Serial serial); 47 void Enqueue(std::vector<Value>&& values, Serial serial); 52 template <typename Serial, typename Value> [all …]
|
D | SerialStorage.h | 29 using Serial = typename SerialStorageTraits<Derived>::Serial; 95 void Enqueue(Params&&... args, Serial serial) { in Enqueue() 105 ConstBeginEnd IterateUpTo(Serial serial) const; 107 BeginEnd IterateUpTo(Serial serial); 110 void ClearUpTo(Serial serial); 112 Serial FirstSerial() const; 113 Serial LastSerial() const; 117 ConstStorageIterator FindUpTo(Serial serial) const; 118 StorageIterator FindUpTo(Serial serial); 136 Serial serial) const { in IterateUpTo() [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/ |
D | serial_utils.h | 42 class Serial final 45 constexpr Serial() : mValue(kInvalid) {} in Serial() function 46 constexpr Serial(const Serial &other) = default; 47 Serial &operator=(const Serial &other) = default; 49 static constexpr Serial Infinite() { return Serial(std::numeric_limits<uint64_t>::max()); } in Infinite() 51 constexpr bool operator==(const Serial &other) const 59 constexpr bool operator!=(const Serial &other) const 63 constexpr bool operator>(const Serial &other) const { return mValue > other.mValue; } 64 constexpr bool operator>=(const Serial &other) const { return mValue >= other.mValue; } 65 constexpr bool operator<(const Serial &other) const { return mValue < other.mValue; } [all …]
|
D | serial_utils_unittest.cpp | 20 Serial a = factory.generate(); in TEST() 21 Serial b = factory.generate(); in TEST() 25 Serial zero; in TEST()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
D | CommandProcessor.h | 94 void initFinishToSerial(Serial serial); 106 Serial submitQueueSerial); 114 Serial submitQueueSerial); 123 void setQueueSerial(Serial serial) { mSerial = serial; } in setQueueSerial() 124 Serial getQueueSerial() const { return mSerial; } in getQueueSerial() 163 Serial mSerial; 201 Serial serial; 281 Serial finishSerial, 284 virtual Serial reserveSubmitSerial() = 0; 295 Serial submitQueueSerial) = 0; [all …]
|
D | ResourceVk.h | 31 Serial serial; 56 void updateSerialOneOff(Serial serial) { mUse->serial = serial; } in updateSerialOneOff() 69 ANGLE_INLINE void releaseAndUpdateSerial(Serial serial) in releaseAndUpdateSerial() 95 ANGLE_INLINE bool usedInRunningCommands(Serial lastCompletedSerial) const in usedInRunningCommands() 101 ANGLE_INLINE bool isCurrentlyInUse(Serial lastCompletedSerial) const in isCurrentlyInUse() 106 ANGLE_INLINE Serial getSerial() const in getSerial() 125 bool destroyIfComplete(RendererVk *renderer, Serial completedSerial); 146 void releaseResourceUsesAndUpdateSerials(Serial serial); 172 bool usedInRunningCommands(Serial lastCompletedSerial) const in usedInRunningCommands() 178 bool isCurrentlyInUse(Serial lastCompletedSerial) const in isCurrentlyInUse() [all …]
|
D | CommandProcessor.cpp | 48 Serial currentSerial; in CommandsHaveValidOrdering() 202 void CommandProcessorTask::initFinishToSerial(Serial serial) in initFinishToSerial() 224 Serial submitQueueSerial) in initFlushAndQueueSubmit() 244 Serial submitQueueSerial) in initOneOffQueueSubmit() 453 ANGLE_TRY(mCommandQueue.finishToSerial(this, Serial::Infinite(), in processTask() 596 Serial CommandProcessor::getLastCompletedQueueSerial() const in getLastCompletedQueueSerial() 609 Serial CommandProcessor::reserveSubmitSerial() in reserveSubmitSerial() 616 angle::Result CommandProcessor::finishToSerial(Context *context, Serial serial, uint64_t timeout) in finishToSerial() 694 Serial submitQueueSerial) in submitFrame() 717 Serial submitQueueSerial) in queueSubmitOneOff() [all …]
|
D | vk_utils.h | 273 ObjectAndSerial(ObjT &&object, Serial serial) : mObject(std::move(object)), mSerial(serial) {} 285 Serial getSerial() const { return mSerial; } 286 void updateSerial(Serial newSerial) { mSerial = newSerial; } 296 mSerial = Serial(); 301 Serial mSerial; 427 void collectGarbage(RendererVk *renderer, Serial serial); 855 class Type##Serial \ 858 constexpr Type##Serial() : mSerial(kInvalid) {} \ 859 constexpr explicit Type##Serial(uint32_t serial) : mSerial(serial) {} \ 861 constexpr bool operator==(const Type##Serial &other) const \ [all …]
|
D | RendererVk.h | 229 Serial issueShaderSerial(); 313 Serial *serialOut); 358 ANGLE_INLINE Serial getLastCompletedQueueSerial() in getLastCompletedQueueSerial() 422 angle::Result cleanupGarbage(Serial lastCompletedQueueSerial); 434 Serial *submitSerialOut); 437 angle::Result finishToSerial(vk::Context *context, Serial serial); 439 Serial serial, 623 Serial serial;
|
D | ResourceVk.cpp | 20 angle::Result FinishRunningCommands(ContextVk *contextVk, Serial serial) in FinishRunningCommands() 146 bool SharedGarbage::destroyIfComplete(RendererVk *renderer, Serial completedSerial) in destroyIfComplete() 196 void ResourceUseList::releaseResourceUsesAndUpdateSerials(Serial serial) in releaseResourceUsesAndUpdateSerials()
|
/third_party/jerryscript/targets/particle/source/ |
D | main.cpp | 32 Serial.println ("Wrong arguments count in 'test.setLed' function."); in set_led() 56 Serial.println ("Wrong arguments count in 'test.delay' function."); in js_delay() 129 Serial.begin (9600); in setup() 131 Serial.println ("Beginning Listening mode test!"); in setup()
|
/third_party/openssl/test/certs/ |
D | ec_privkey_with_chain.pem | 11 Serial: 1599122797485 29 Serial: 1599122797476 46 Serial: 1599122797471 63 Serial: 1599122797466
|
/third_party/node/tools/ |
D | certdata.txt | 78 # Serial Number:04:00:00:00:00:01:15:4b:5a:c3:94 174 # Serial Number:04:00:00:00:00:01:15:4b:5a:c3:94 212 # Serial Number:00:8b:5b:75:56:84:54:85:0b:00:cf:af:38:48:ce:b1:a4 336 # Serial Number:00:8b:5b:75:56:84:54:85:0b:00:cf:af:38:48:ce:b1:a4 382 # Serial Number:61:70:cb:49:8c:5f:98:45:29:e7:b0:a6:d9:50:5b:7a 506 # Serial Number:61:70:cb:49:8c:5f:98:45:29:e7:b0:a6:d9:50:5b:7a 552 # Serial Number: 946069240 (0x3863def8) 671 # Serial Number: 946069240 (0x3863def8) 715 # Serial Number: 33554617 (0x20000b9) 811 # Serial Number: 33554617 (0x20000b9) [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | FramebufferAttachment.h | 63 rx::Serial framebufferSerial); 70 void detach(const Context *context, rx::Serial framebufferSerial); 80 rx::Serial framebufferSerial); 222 virtual void onAttach(const Context *context, rx::Serial framebufferSerial) = 0; 223 virtual void onDetach(const Context *context, rx::Serial framebufferSerial) = 0;
|
D | FramebufferAttachment.cpp | 64 rx::Serial framebufferSerial) in FramebufferAttachment() 94 void FramebufferAttachment::detach(const Context *context, rx::Serial framebufferSerial) in detach() 119 rx::Serial framebufferSerial) in attach()
|
D | RefCountObject.h | 186 explicit RefCountObject(rx::Serial serial, IDType id) : mSerial(serial), mId(id) {} in RefCountObject() 188 rx::Serial serial() const { return mSerial; } in serial() 196 rx::Serial mSerial;
|
D | Renderbuffer.h | 148 void onAttach(const Context *context, rx::Serial framebufferSerial) override; 149 void onDetach(const Context *context, rx::Serial framebufferSerial) override;
|
D | Framebuffer.h | 65 explicit FramebufferState(rx::Serial serial); 66 FramebufferState(const Caps &caps, FramebufferID id, rx::Serial serial); 137 rx::Serial getFramebufferSerial() const { return mFramebufferSerial; } in getFramebufferSerial() 151 rx::Serial mFramebufferSerial;
|
/third_party/jerryscript/jerry-debugger/ |
D | jerry_client_serial.py | 20 class Serial(object): class 32 self.ser = serial.Serial(port=port, baudrate=baudrate, parity=parity,
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d9/ |
D | VertexArray9.h | 33 Serial getCurrentStateSerial() const { return mCurrentStateSerial; } in getCurrentStateSerial() 36 Serial mCurrentStateSerial;
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/d3d11/ |
D | TransformFeedback11.h | 48 Serial getSerial() const; 57 Serial mSerial;
|
D | VertexArray11.h | 51 Serial getCurrentStateSerial() const { return mCurrentStateSerial; } in getCurrentStateSerial() 96 Serial mCurrentStateSerial;
|
/third_party/libinput/quirks/ |
D | 30-vendor-synaptics.quirks | 3 [Synaptics Serial Touchpads]
|
/third_party/mesa3d/.gitlab-ci/bare-metal/ |
D | google-power-relay.py | 16 ser = serial.Serial('/dev/ttyACM0', 115200, timeout=2)
|