Home
last modified time | relevance | path

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

/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/cmsis/stub/CMSIS/Core/Include/
Dcmsis_iccarm.h557 uint32_t res; in __get_APSR() local
558 __asm("MRS %0,APSR" : "=r" (res)); in __get_APSR()
559 return res; in __get_APSR()
627 uint32_t res; in __get_MSPLIM() local
631 res = 0U; in __get_MSPLIM()
633 __asm volatile("MRS %0,MSPLIM" : "=r" (res)); in __get_MSPLIM()
635 return res; in __get_MSPLIM()
651 uint32_t res; in __get_PSPLIM() local
655 res = 0U; in __get_PSPLIM()
657 __asm volatile("MRS %0,PSPLIM" : "=r" (res)); in __get_PSPLIM()
[all …]
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/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-3.7.0-3.6.0-3.5.0/tools/pioasm/
Dmain.cpp30 int res = 0; in main() local
37 for (; !res && i < argc; i++) { in main()
44 res = 1; in main()
51 res = 1; in main()
58 res = 1; in main()
61 if (!res) { in main()
66 res = 1; in main()
69 if (!res) { in main()
76 if (!res && i != argc) { in main()
78 res = 1; in main()
[all …]
Dpio_assembler.cpp33 int res = parse(); in generate() local
35 return res; in generate()
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/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-3.7.0-3.6.0-3.5.0/src/rp2_common/pico_cyw43_driver/
Dcyw43_bus_pio_spi.c536 … int res = cyw43_spi_transfer(self, (uint8_t *)&self->spi_header[1], aligned_len + 4, NULL, 0); in cyw43_write_bytes() local
538 return res; in cyw43_write_bytes()