Home
last modified time | relevance | path

Searched refs:res (Results 1 – 8 of 8) sorted by relevance

/hal_rpi_pico-latest/tools/pioasm/gen/
Dlocation.h123 operator+= (position& res, position::counter_type width)
125 res.columns (width);
126 return res;
131 operator+ (position res, position::counter_type width)
133 return res += width;
138 operator-= (position& res, position::counter_type width)
140 return res += -width;
145 operator- (position res, position::counter_type width)
147 return res -= width;
234 operator+= (location& res, const location& end)
[all …]
/hal_rpi_pico-latest/src/rp2_common/cmsis/stub/CMSIS/Core/Include/m-profile/
Dcmsis_iccarm_m.h616 uint32_t res; in __get_APSR() local
617 __asm("MRS %0,APSR" : "=r" (res)); in __get_APSR()
618 return res; in __get_APSR()
692 uint32_t res; in __get_MSPLIM() local
697 res = 0U; in __get_MSPLIM()
699 __asm volatile("MRS %0,MSPLIM" : "=r" (res)); in __get_MSPLIM()
701 return res; in __get_MSPLIM()
718 uint32_t res; in __get_PSPLIM() local
723 res = 0U; in __get_PSPLIM()
725 __asm volatile("MRS %0,PSPLIM" : "=r" (res)); in __get_PSPLIM()
[all …]
/hal_rpi_pico-latest/src/rp2_common/cmsis/stub/CMSIS/Core/Include/
Dcmsis_iccarm.h588 uint32_t res; in __get_APSR() local
589 __asm("MRS %0,APSR" : "=r" (res)); in __get_APSR()
590 return res; in __get_APSR()
658 uint32_t res; in __get_MSPLIM() local
662 res = 0U; in __get_MSPLIM()
664 __asm volatile("MRS %0,MSPLIM" : "=r" (res)); in __get_MSPLIM()
666 return res; in __get_MSPLIM()
682 uint32_t res; in __get_PSPLIM() local
686 res = 0U; in __get_PSPLIM()
688 __asm volatile("MRS %0,PSPLIM" : "=r" (res)); in __get_PSPLIM()
[all …]
/hal_rpi_pico-latest/tools/pioasm/
Dmain.cpp31 int res = 0; in main() local
38 for (; !res && i < argc; i++) { in main()
45 res = 1; in main()
52 res = 1; in main()
60 res = 1; in main()
64 res = 1; in main()
71 res = 1; in main()
74 if (!res) { in main()
79 res = 1; in main()
82 if (!res) { in main()
[all …]
Dpio_assembler.cpp33 int res = parse(); in generate() local
35 return res; in generate()
/hal_rpi_pico-latest/tools/
Dcheck_doxygen_groups.py23 res = subprocess.run(['git', 'grep', '\\defgroup'], check=True, stdout=subprocess.PIPE) variable
24 for line in res.stdout.decode('utf8').split('\n'):
37 res = subprocess.run(['git', 'grep', '\\ingroup'], check=True, stdout=subprocess.PIPE) variable
38 for line in res.stdout.decode('utf8').split('\n'):
/hal_rpi_pico-latest/src/rp2_common/pico_bootrom/include/pico/
Dbootrom.h545 int *res; member
551 *(op->res) = func(op->flags, op->addr, op->size_bytes, op->buf); in rom_helper_flash_op()
602 .res = &rc in rom_flash_op()
842 int *res; member
848 *(op->res) = func(op->buffer, op->buffer_size); in rom_helper_explicit_buy()
882 .res = &rc in rom_explicit_buy()
/hal_rpi_pico-latest/src/rp2_common/pico_cyw43_driver/
Dcyw43_bus_pio_spi.c541 …int res = cyw43_spi_transfer(self, (uint8_t *)&self->spi_header[(CYW43_BACKPLANE_READ_PAD_LEN_BYTE… in cyw43_write_bytes() local
543 return res; in cyw43_write_bytes()