Home
last modified time | relevance | path

Searched refs:tx_buffer (Results 1 – 12 of 12) sorted by relevance

/external/pigweed/pw_i2c/public/pw_i2c/
Dinitiator.h73 ConstByteSpan tx_buffer, in WriteReadFor() argument
76 return DoWriteReadFor(device_address, tx_buffer, rx_buffer, timeout); in WriteReadFor()
79 const void* tx_buffer, in WriteReadFor() argument
86 std::span(static_cast<const std::byte*>(tx_buffer), tx_size_bytes), in WriteReadFor()
111 ConstByteSpan tx_buffer, in WriteFor() argument
113 return WriteReadFor(device_address, tx_buffer, ByteSpan(), timeout); in WriteFor()
116 const void* tx_buffer, in WriteFor() argument
121 std::span(static_cast<const std::byte*>(tx_buffer), tx_size_bytes), in WriteFor()
186 ConstByteSpan tx_buffer,
Ddevice.h67 Status WriteReadFor(ConstByteSpan tx_buffer, in WriteReadFor() argument
71 device_address_, tx_buffer, rx_buffer, timeout); in WriteReadFor()
73 Status WriteReadFor(const void* tx_buffer, in WriteReadFor() argument
79 tx_buffer, in WriteReadFor()
105 Status WriteFor(ConstByteSpan tx_buffer, in WriteFor() argument
107 return initiator_.WriteFor(device_address_, tx_buffer, timeout); in WriteFor()
109 Status WriteFor(const void* tx_buffer, in WriteFor() argument
113 device_address_, tx_buffer, tx_size_bytes, timeout); in WriteFor()
Dinitiator_gmock.h26 ConstByteSpan tx_buffer,
Dinitiator_mock.h136 ConstByteSpan tx_buffer,
/external/pigweed/pw_i2c_mcuxpresso/
Dinitiator.cc96 ConstByteSpan tx_buffer, in DoWriteReadFor() argument
106 if (!tx_buffer.empty() && rx_buffer.empty()) { in DoWriteReadFor()
112 const_cast<std::byte*>(tx_buffer.data()), in DoWriteReadFor()
113 tx_buffer.size()}; in DoWriteReadFor()
115 } else if (tx_buffer.empty() && !rx_buffer.empty()) { in DoWriteReadFor()
124 } else if (!tx_buffer.empty() && !rx_buffer.empty()) { in DoWriteReadFor()
130 const_cast<std::byte*>(tx_buffer.data()), in DoWriteReadFor()
131 tx_buffer.size()}; in DoWriteReadFor()
/external/pigweed/pw_i2c/
Dinitiator_mock.cc22 ConstByteSpan tx_buffer, in DoWriteReadFor() argument
41 tx_buffer.begin(), in DoWriteReadFor()
42 tx_buffer.end())); in DoWriteReadFor()
/external/python/bumble/bumble/
Drfcomm.py301 self.tx_buffer = b''
487 while (self.tx_buffer and self.tx_credits > 0) or rx_credits_needed > 0:
490 chunk = bytes([rx_credits_needed]) + self.tx_buffer[:self.mtu - 1]
491 self.tx_buffer = self.tx_buffer[len(chunk) - 1:]
495 chunk = self.tx_buffer[:self.mtu]
496 self.tx_buffer = self.tx_buffer[len(chunk):]
527 self.tx_buffer += data
/external/pigweed/pw_i2c_mcuxpresso/public/pw_i2c_mcuxpresso/
Dinitiator.h37 ConstByteSpan tx_buffer,
/external/libpcap/
Dpcap-dpdk.c171 static struct rte_eth_dev_tx_buffer *tx_buffer; variable
885 tx_buffer = rte_zmalloc_socket(DPDK_TX_BUF_NAME, in pcap_dpdk_activate()
888 if (tx_buffer == NULL) in pcap_dpdk_activate()
895 rte_eth_tx_buffer_init(tx_buffer, MAX_PKT_BURST); in pcap_dpdk_activate()
/external/pigweed/pw_metric/
Ddocs.rst420 Uart(span<std::byte> rx_buffer, span<std::byte> tx_buffer)
421 : rx_buffer_(rx_buffer), tx_buffer_(tx_buffer) {}
427 std::span<std::byte> tx_buffer;
444 span<std::byte> tx_buffer,
447 tx_buffer_(tx_buffer) {
458 std::span<std::byte> tx_buffer;
493 span<std::byte> tx_buffer)
495 tx_buffer_(tx_buffer) {}
507 std::span<std::byte> tx_buffer;
/external/nos/host/generic/nugget/include/
Dapplication.h124 uint8_t *tx_buffer,
/external/libgav1/libgav1/src/dsp/
Dinverse_transform.cc1185 Residual tx_buffer[64]; in TransformLoop_C() local
1190 tx_buffer[i] = residual[i][flipped_j]; in TransformLoop_C()
1193 dconly_transform1d(tx_buffer, column_clamp_range, false, 0, false); in TransformLoop_C()
1197 transform1d_func(tx_buffer, in TransformLoop_C()
1204 Residual residual_value = tx_buffer[index]; in TransformLoop_C()