/hal_rpi_pico-latest/src/rp2_common/pico_printf/ |
D | printf.c | 181 unsigned int width, unsigned int flags) { in _out_rev() argument 185 if (!(flags & FLAGS_LEFT) && !(flags & FLAGS_ZEROPAD)) { in _out_rev() 197 if (flags & FLAGS_LEFT) { in _out_rev() 210 unsigned int flags) { in _ntoa_format() argument 212 if (!(flags & FLAGS_LEFT)) { in _ntoa_format() 213 … if (width && (flags & FLAGS_ZEROPAD) && (negative || (flags & (FLAGS_PLUS | FLAGS_SPACE)))) { in _ntoa_format() 219 while ((flags & FLAGS_ZEROPAD) && (len < width) && (len < PICO_PRINTF_NTOA_BUFFER_SIZE)) { in _ntoa_format() 225 if (flags & FLAGS_HASH) { in _ntoa_format() 226 if (!(flags & FLAGS_PRECISION) && len && ((len == prec) || (len == width))) { in _ntoa_format() 232 if ((base == 16U) && !(flags & FLAGS_UPPERCASE) && (len < PICO_PRINTF_NTOA_BUFFER_SIZE)) { in _ntoa_format() [all …]
|
/hal_rpi_pico-latest/src/rp2_common/pico_bootrom/include/pico/ |
D | bootrom.h | 36 typedef int (*rom_reboot_fn)(uint32_t flags, uint32_t delay_ms, uint32_t p0, uint32_t p1); 45 typedef void (*rom_bootrom_state_reset_fn)(uint32_t flags); 48 …ef int (*rom_get_sys_info_fn)(uint32_t *out_buffer, uint32_t out_buffer_word_size, uint32_t flags); 77 typedef int (*rom_flash_op_fn)(cflash_flags_t flags, uintptr_t addr, uint32_t size_bytes, uint8_t *… 481 static inline int rom_reboot(uint32_t flags, uint32_t delay_ms, uint32_t p0, uint32_t p1) { in rom_reboot() argument 483 return func(flags, delay_ms, p0, p1); in rom_reboot() 512 static inline void rom_bootrom_state_reset(uint32_t flags) { in rom_bootrom_state_reset() argument 514 return func(flags); in rom_bootrom_state_reset() 584 static inline int rom_flash_op(cflash_flags_t flags, uintptr_t addr, uint32_t size_bytes, uint8_t *… in rom_flash_op() argument 588 int rc = func(flags, addr, size_bytes, buf); in rom_flash_op() [all …]
|
D | bootrom_constants.h | 274 uint32_t flags; member 306 uint32_t flags; member
|
/hal_rpi_pico-latest/src/rp2_common/hardware_flash/ |
D | flash.c | 167 uint32_t flags = ssi_hw->sr; in __no_inline_not_in_flash_func() local 168 bool can_put = flags & SSI_SR_TFNF_BITS; in __no_inline_not_in_flash_func() 169 bool can_get = flags & SSI_SR_RFNE_BITS; in __no_inline_not_in_flash_func() 183 uint32_t flags = qmi_hw->direct_csr; in __no_inline_not_in_flash_func() local 184 bool can_put = !(flags & QMI_DIRECT_CSR_TXFULL_BITS); in __no_inline_not_in_flash_func() 185 bool can_get = !(flags & QMI_DIRECT_CSR_RXEMPTY_BITS); in __no_inline_not_in_flash_func()
|
/hal_rpi_pico-latest/src/rp2_common/pico_lwip/tools/ |
D | makefsdata.py | 128 flags = "FS_FILE_FLAGS_HEADER_INCLUDED" 130 flags += " | FS_FILE_FLAGS_HEADER_PERSISTENT" 132 flags += " | FS_FILE_FLAGS_SSI" 135 …{'data_var': data_var, 'file_var': file_var, 'name_size': len(results[0]['data']), 'flags': flags})
|
/hal_rpi_pico-latest/test/pico_float_test/ |
D | pico_double_test.c | 35 if (expected != cpsr.flags.z) { in test__aeabi_cdcmpeq() 37 a, b, cpsr.flags.z, expected); in test__aeabi_cdcmpeq() 156 if (expected_z != cpsr.flags.z || expected_c != cpsr.flags.c) { in test__aeabi_cdcmple() 158 a, b, cpsr.flags.z, cpsr.flags.c, expected_z, expected_c); in test__aeabi_cdcmple() 163 if (expected_z != cpsr.flags.z || expected_c != cpsr.flags.c) { in test__aeabi_cdcmple() 165 a, b, cpsr.flags.z, cpsr.flags.c, expected_z, expected_c); in test__aeabi_cdcmple()
|
D | pico_float_test.c | 34 if (expected != cpsr.flags.z) { in test__aeabi_cfcmpeq() 36 a, b, cpsr.flags.z, expected); in test__aeabi_cfcmpeq() 155 if (expected_z != cpsr.flags.z || expected_c != cpsr.flags.c) { in test__aeabi_cfcmple() 157 a, b, cpsr.flags.z, cpsr.flags.c, expected_z, expected_c); in test__aeabi_cfcmple() 162 if (expected_z != cpsr.flags.z || expected_c != cpsr.flags.c) { in test__aeabi_cfcmple() 164 a, b, cpsr.flags.z, cpsr.flags.c, expected_z, expected_c); in test__aeabi_cfcmple()
|
D | CMakeLists.txt | 16 #todo split out variants with different flags 22 #todo split out variants with different flags
|
/hal_rpi_pico-latest/src/rp2_common/pico_bootrom/ |
D | bootrom.c | 48 uint32_t flags = disable_interface_mask; in rom_reset_usb_boot() 50 flags |= BOOTSEL_FLAG_GPIO_PIN_SPECIFIED; in rom_reset_usb_boot() 54 …rom_reboot(REBOOT2_FLAG_REBOOT_TYPE_BOOTSEL | REBOOT2_FLAG_NO_RETURN_ON_SUCCESS, 10, flags, usb_ac… in rom_reset_usb_boot()
|
/hal_rpi_pico-latest/src/common/boot_uf2_headers/include/boot/ |
D | uf2.h | 41 uint32_t flags; member
|
/hal_rpi_pico-latest/src/host/pico_runtime/include/pico/ |
D | runtime.h | 26 #define PICO_RUNTIME_INIT_FUNC_FLAGS(func, flags, priority_string1, priority_string2) argument
|
/hal_rpi_pico-latest/src/common/pico_binary_info/include/pico/binary_info/ |
D | structure.h | 121 uint16_t flags; member 161 uint16_t flags; member
|
D | code.h | 111 .flags = _flags, \ 160 .flags = _flags, \ 175 …_flags(tag, id, name, flags) __bi_named_group(BINARY_INFO_TAG_RASPBERRY_PI, BINARY_INFO_ID_RP_PROG… argument
|
/hal_rpi_pico-latest/test/pico_float_test/llvm/ |
D | call_apsr.h | 30 } flags; member
|
/hal_rpi_pico-latest/src/host/pico_runtime/ |
D | BUILD.bazel | 11 "@platforms//os:windows": [], # TODO: MSVC flags.
|
/hal_rpi_pico-latest/test/hardware_sync_spin_lock_test/ |
D | hardware_sync_spin_lock_test.c | 84 uint32_t flags = spin_lock_blocking(lock); in counter_test_per_core() local 86 spin_unlock(lock, flags); in counter_test_per_core()
|
/hal_rpi_pico-latest/src/rp2_common/pico_async_context/ |
D | async_context_poll.c | 20 self->core.flags = ASYNC_CONTEXT_FLAG_POLLED | ASYNC_CONTEXT_FLAG_CALLBACK_FROM_NON_IRQ; in async_context_poll_init_with_defaults()
|
D | async_context_freertos.c | 110 self->core.flags = ASYNC_CONTEXT_FLAG_CALLBACK_FROM_NON_IRQ; in async_context_freertos_init()
|
D | async_context_threadsafe_background.c | 198 …self->core.flags = ASYNC_CONTEXT_FLAG_CALLBACK_FROM_IRQ | ASYNC_CONTEXT_FLAG_CALLBACK_FROM_NON_IRQ; in async_context_threadsafe_background_init()
|
/hal_rpi_pico-latest/bazel/ |
D | BUILD.bazel | 53 # An empty stub, useful for label_flag flags that need to point to a library,
|
D | README.md | 50 ### Enable required .bazelrc flags
|
/hal_rpi_pico-latest/src/rp2_common/pico_async_context/include/pico/ |
D | async_context.h | 184 uint16_t flags; member
|
/hal_rpi_pico-latest/src/rp2_common/pico_float/ |
D | float_sci_m33.S | 325 @ r6 flags 472 @ r6 flags 483 @ r6 flags 511 @ r6 flags 644 pop {r12} @ get flags
|
/hal_rpi_pico-latest/bazel/util/ |
D | transition.bzl | 136 # This is a general purpose transition that applies the listed copt flags to
|
/hal_rpi_pico-latest/src/rp2_common/pico_double/ |
D | double_fma_dcp.S | 95 …orr r14,r14,r12 @ OR of all the classification flags, so we can check if any are zero/… 100 … @ seems to be no 16-bit instruction which zeros a register without affecting the flags 128 @ now add (shifted) a into mn, preserving flags 135 bmi 91f @ use flags: will a be shifted down?
|