Searched refs:tx (Results 1 – 6 of 6) sorted by relevance
| /external/platform/lpc15xx/lpcopen/periph_i2cs_interrupt/example/src/ |
| A D | periph_i2cs_interrupt.c | 291 tx[0] = (uint8_t) (addr >> 8); in toAddr() 292 tx[1] = (uint8_t) (addr >> 0); in toAddr() 313 uint8_t rx[8], tx[8]; in eepromTest() local 324 toAddr(tx, (uint16_t) i); in eepromTest() 325 tx[2] = txWorkBuff[i]; in eepromTest() 332 tx[2] = txWorkBuff[128 + i]; in eepromTest() 333 tx[3] = txWorkBuff[128 + i + 1]; in eepromTest() 340 tx[2] = txWorkBuff[256 + i]; in eepromTest() 341 tx[3] = txWorkBuff[256 + i + 1]; in eepromTest() 342 tx[4] = txWorkBuff[256 + i + 2]; in eepromTest() [all …]
|
| /external/lib/libm/ |
| A D | e_rem_pio2.c | 58 double tx[3],ty[2]; in __ieee754_rem_pio2() local 178 tx[i] = (double)((int32_t)(z)); in __ieee754_rem_pio2() 179 z = (z-tx[i])*two24; in __ieee754_rem_pio2() 181 tx[2] = z; in __ieee754_rem_pio2() 183 while (tx[nx-1]==zero) nx--; /* skip zero term */ in __ieee754_rem_pio2() 184 n = __kernel_rem_pio2(tx,ty,e0,nx,1); in __ieee754_rem_pio2()
|
| A D | e_rem_pio2f.c | 50 double tx[1],ty[1]; in __ieee754_rem_pio2f() local 81 tx[0] = z; in __ieee754_rem_pio2f() 82 n = __kernel_rem_pio2(tx,ty,e0,1,0); in __ieee754_rem_pio2f()
|
| /external/platform/pico/rp2_common/pico_cyw43_driver/ |
| A D | cyw43_bus_pio_spi.c | 223 int cyw43_spi_transfer(cyw43_int_t *self, const uint8_t *tx, size_t tx_length, uint8_t *rx, in cyw43_spi_transfer() argument 226 if ((tx == NULL) && (rx == NULL)) { in cyw43_spi_transfer() 233 if (tx == NULL) { in cyw43_spi_transfer() 234 tx = rx; in cyw43_spi_transfer() 239 dump_bytes(tx, tx_length); in cyw43_spi_transfer() 242 assert(!(((uintptr_t)tx) & 3)); in cyw43_spi_transfer() 264 …ure(bus_data->dma_out, &out_config, &bus_data->pio->txf[bus_data->pio_sm], tx, tx_length / 4, true… in cyw43_spi_transfer() 281 } else if (tx != NULL) { in cyw43_spi_transfer() 284 dump_bytes(tx, tx_length); in cyw43_spi_transfer() 286 assert(!(((uintptr_t)tx) & 3)); in cyw43_spi_transfer() [all …]
|
| /external/platform/nrfx/drivers/src/ |
| A D | nrfx_usbd.c | 496 NRFX_ASSERT(nrfx_is_in_ram(p_transfer->p_data.tx)); in nrfx_usbd_feeder_ram() 529 NRFX_ASSERT(nrfx_is_in_ram(p_transfer->p_data.tx)); in nrfx_usbd_feeder_ram_zlp() 537 p_next->p_data.tx = (tx_size == 0) ? NULL : p_transfer->p_data.tx; in nrfx_usbd_feeder_ram_zlp() 559 NRFX_ASSERT(!nrfx_is_in_ram(p_transfer->p_data.tx)); in nrfx_usbd_feeder_flash() 570 memcpy(p_buffer, (p_transfer->p_data.tx), tx_size); in nrfx_usbd_feeder_flash() 572 p_next->p_data.tx = p_buffer; in nrfx_usbd_feeder_flash() 594 NRFX_ASSERT(!nrfx_is_in_ram(p_transfer->p_data.tx)); in nrfx_usbd_feeder_flash_zlp() 608 memcpy(p_buffer, (p_transfer->p_data.tx), tx_size); in nrfx_usbd_feeder_flash_zlp() 609 p_next->p_data.tx = p_buffer; in nrfx_usbd_feeder_flash_zlp() 613 p_next->p_data.tx = NULL; in nrfx_usbd_feeder_flash_zlp() [all …]
|
| /external/platform/nrfx/drivers/include/ |
| A D | nrfx_usbd.h | 212 void const * tx; //!< Constant TX buffer pointer. member 268 .p_data = { .tx = (tx_buff) }, \
|
Completed in 12 milliseconds