Lines Matching refs:W
19 for (auto &W : Ws) in writeUInt8sAsync() local
20 *W.Addr.toPtr<uint8_t *>() = W.Value; in writeUInt8sAsync()
26 for (auto &W : Ws) in writeUInt16sAsync() local
27 *W.Addr.toPtr<uint16_t *>() = W.Value; in writeUInt16sAsync()
33 for (auto &W : Ws) in writeUInt32sAsync() local
34 *W.Addr.toPtr<uint32_t *>() = W.Value; in writeUInt32sAsync()
40 for (auto &W : Ws) in writeUInt64sAsync() local
41 *W.Addr.toPtr<uint64_t *>() = W.Value; in writeUInt64sAsync()
48 for (auto &W : Ws) in writePointersAsync() local
49 *W.Addr.toPtr<uint64_t *>() = W.Value.getValue(); in writePointersAsync()
51 for (auto &W : Ws) in writePointersAsync() local
52 *W.Addr.toPtr<uint32_t *>() = static_cast<uint32_t>(W.Value.getValue()); in writePointersAsync()
60 for (auto &W : Ws) in writeBuffersAsync() local
61 memcpy(W.Addr.toPtr<char *>(), W.Buffer.data(), W.Buffer.size()); in writeBuffersAsync()