Home
last modified time | relevance | path

Searched refs:rx (Results 1 – 17 of 17) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/hardware_dcp/include/hardware/
Ddcp_canned.inc.S9 .macro dcp_fadd_m rz,rx,ry
10 WXYU \rx,\ry
17 .macro dcp_fsub_m rz,rx,ry
18 WXYU \rx,\ry
25 .macro dcp_fmul_m rz,rx,ry,ra,rb
26 WXYU \rx,\ry
34 .macro dcp_fxprod_m rzl,rzh,rx,ry,ra,rb
35 WXYU \rx,\ry
43 .macro dcp_fdiv_fast_m rz,rx,ry,ra,rb,rc
44 WXYU \rx,\ry
[all …]
/hal_rpi_pico-latest/src/rp2_common/pico_standard_link/
Dpico_flash_region.template.ld1 FLASH(rx) : ORIGIN = 0x10000000, LENGTH = ${PICO_FLASH_SIZE_BYTES_STRING}
Dpico_flash_region.bzl8 "FLASH(rx) : ORIGIN = 0x10000000, LENGTH = " + str(ctx.attr.flash_region_size),
DBUILD.bazel9 # FLASH(rx) : ORIGIN = 0x10000000, LENGTH = 4194304
/hal_rpi_pico-latest/src/rp2_common/pico_cyw43_driver/
Dcyw43_bus_pio_spi.c227 int cyw43_spi_transfer(cyw43_int_t *self, const uint8_t *tx, size_t tx_length, uint8_t *rx, in cyw43_spi_transfer() argument
230 if ((tx == NULL) && (rx == NULL)) { in cyw43_spi_transfer()
236 if (rx != NULL) { in cyw43_spi_transfer()
238 tx = rx; in cyw43_spi_transfer()
247 assert(!(((uintptr_t)rx) & 3)); in cyw43_spi_transfer()
275 …dma_channel_configure(bus_data->dma_in, &in_config, rx + tx_length, &bus_data->pio->rxf[bus_data->… in cyw43_spi_transfer()
284 …memset(rx, 0, tx_length); // make sure we don't have garbage in what would have been returned data… in cyw43_spi_transfer()
320 } else if (rx != NULL) { /* currently do one at a time */ in cyw43_spi_transfer()
323 dump_bytes(rx, rx_length); in cyw43_spi_transfer()
332 dump_bytes(rx, rx_length); in cyw43_spi_transfer()
/hal_rpi_pico-latest/tools/pioasm/
Dpio_enums.h15 rx = 2, enumerator
Dparser.yy135 RX "rx"
314 | RX { $$ = fifo_config::rx; }
318 …(@0, pioasm.version_string(1, "expected txrx, tx, rx, txput, rxget or putget", "expected txrx, tx …
Dc_sdk_output.cpp153 case fifo_config::rx: type = "PIO_FIFO_JOIN_RX"; break; in output()
Dpio_assembler.cpp228 if (fifo != fifo_config::rx && fifo != fifo_config::tx && fifo != fifo_config::txrx) { in finalize()
323 if (program.fifo != fifo_config::rx && program.fifo != fifo_config::txrx) { in pre_validate()
/hal_rpi_pico-latest/src/rp2_common/pico_double/
Ddouble_v1_rom_shim_rp2040.S66 @ rx:ry means the concatenation of rx and ry with rx having the less significant bits
349 @ can have rt3==rx, in which case rx trashed
351 @ can have rzl==rx
354 .macro mul32_32_64 rx,ry,rzl,rzh,rt0,rt1,rt2,rt3,rt4
357 uxth \rt0,\rx @ xl
360 lsrs \rt2,\rx,#16 @ xh
364 uxth \rt3,\rx @ xl
418 @ can have rt3==rx, in which case rx trashed
420 @ can have rzl==rx
423 .macro muls32_s32_64 rx,ry,rzl,rzh,rt0,rt1,rt2,rt3,rt4
[all …]
Ddouble_sci_m33.S31 @ load a 32-bit constant n into register rx
32 .macro movlong rx,n
33 movw \rx,#(\n)&0xffff
34 movt \rx,#((\n)>>16)&0xffff
/hal_rpi_pico-latest/src/rp2040/boot_stage2/
Dboot_stage2.ld4 SRAM(rx) : ORIGIN = 0x20041f00, LENGTH = 252
/hal_rpi_pico-latest/src/rp2350/boot_stage2/
Dboot_stage2.ld4 SRAM(rx) : ORIGIN = 0x20081f00, LENGTH = 252
/hal_rpi_pico-latest/docs/
Dlogo-mobile.svg24 <ellipse class="cls-2" cx="70.86613" cy="100.39562" rx="12.72753" ry="10.90937"/>
/hal_rpi_pico-latest/src/rp2_common/pico_float/
Dfloat_sci_m33.S31 @ load a 32-bit constant n into register rx
32 .macro movlong rx,n
33 movw \rx,#(\n)&0xffff
34 movt \rx,#((\n)>>16)&0xffff
Dfloat_sci_m33_vfp.S24 @ load a 32-bit constant n into register rx
25 .macro movlong rx,n
26 movw \rx,#(\n)&0xffff
27 movt \rx,#((\n)>>16)&0xffff
/hal_rpi_pico-latest/tools/pioasm/gen/
Dparser.cpp1458 { yylhs.value.as < enum fifo_config > () = fifo_config::rx; } in parse()