| /hal_rpi_pico-latest/src/rp2_common/hardware_base/include/hardware/ |
| D | address_mapped.h | 122 #define hw_set_alias(p) ((typeof(p))hw_set_alias_untyped(p)) argument 123 #define hw_clear_alias(p) ((typeof(p))hw_clear_alias_untyped(p)) argument 124 #define hw_xor_alias(p) ((typeof(p))hw_xor_alias_untyped(p)) argument 125 #define xip_noalloc_alias(p) ((typeof(p))xip_noalloc_alias_untyped(p)) argument 126 #define xip_nocache_alias(p) ((typeof(p))xip_nocache_alias_untyped(p)) argument 127 #define xip_nocache_noalloc_alias(p) ((typeof(p))xip_nocache_noalloc_alias_untyped(p)) argument
|
| /hal_rpi_pico-latest/src/rp2_common/pico_cxx_options/ |
| D | new_delete.cpp | 22 void operator delete(void *p) { std::free(p); } in operator delete() argument 24 void operator delete[](void *p) noexcept { std::free(p); } in operator delete[]() argument 28 void operator delete(void *p, __unused std::size_t n) noexcept { std::free(p); } in operator delete() argument 30 void operator delete[](void *p, __unused std::size_t n) noexcept { std::free(p); } in operator delete[]() argument
|
| /hal_rpi_pico-latest/tools/pioasm/ |
| D | pio_assembler.h | 43 …if (std::find_if(programs.begin(), programs.end(), [&](const program &p) { return p.name == name; … in add_program() 71 auto &p = programs[programs.size() - 1]; member 72 if (before_any_instructions && !p.instructions.empty()) { 77 return p; 86 auto &p = programs[programs.size() - 1]; in get_current_pio_version() local 87 return p.pio_version; in get_current_pio_version() 93 std::shared_ptr<symbol> get_symbol(const std::string &name, const program *p) { in get_symbol() 98 if (p) { in get_symbol() 99 const auto &i2 = p->symbols.find(name); in get_symbol() 100 if (i2 != p->symbols.end()) in get_symbol()
|
| D | json_output.cpp | 69 for(const auto &p : program.lang_opts) { in output() local 70 if (p.first.size() >= name.size() && p.first.compare(0, name.size(), name) == 0) { in output() 71 …std::cerr << "warning: " << name << " does not support output options; " << p.first << " lang_opt … in output()
|
| D | ada_output.cpp | 76 for(const auto &p : program.lang_opts) { in output() local 77 if (p.first.size() >= name.size() && p.first.compare(0, name.size(), name) == 0) { in output() 78 …std::cerr << "warning: " << name << " does not support output options; " << p.first << " lang_opt … in output()
|
| D | c_sdk_output.cpp | 60 for(const auto &p : program.lang_opts) { in output() local 61 if (p.first.size() >= name.size() && p.first.compare(0, name.size(), name) == 0) { in output() 62 …std::cerr << "warning: " << name << " does not support output options; " << p.first << " lang_opt … in output()
|
| D | python_output.cpp | 87 for(const auto &p : program.lang_opts) { in output() local 88 if (p.first.size() >= name.size() && p.first.compare(0, name.size(), name) == 0) { in output() 89 for (const auto &p2 : p.second) { in output()
|
| /hal_rpi_pico-latest/src/rp2_common/pico_runtime/ |
| D | runtime.c | 24 for (uintptr_t *p = from; p < &__preinit_array_end; p++) { in runtime_run_initializers_from() local 25 uintptr_t val = *p; in runtime_run_initializers_from()
|
| /hal_rpi_pico-latest/src/host/hardware_gpio/include/hardware/ |
| D | gpio.h | 158 #define CU_REGISTER_DEBUG_PINS(p, ...) argument 160 #define DEBUG_PINS_ENABLED(p) false argument 162 #define DEBUG_PINS_SET(p, v) ((void)0) argument 163 #define DEBUG_PINS_CLR(p, v) ((void)0) argument 164 #define DEBUG_PINS_XOR(p, v) ((void)0) argument
|
| /hal_rpi_pico-latest/src/rp2_common/pico_clib_interface/ |
| D | llvm_libc_interface.c | 106 for (void (**p)(void) = &__init_array_start; p < &__init_array_end; ++p) { in runtime_init() local 107 (*p)(); in runtime_init()
|
| D | newlib_interface.c | 196 for (void (**p)(void) = &__init_array_start; p < &__init_array_end; ++p) { in runtime_init() local 197 (*p)(); in runtime_init()
|
| /hal_rpi_pico-latest/tools/ |
| D | check_source_files_in_bazel_build.py | 126 for path in (p for p in files if p.suffix in bazel_extensions_to_check): 131 p for p in bazel_build_source_files if p.suffix in bazel_extensions_to_check
|
| D | compare_build_systems.py | 182 for p in file_paths: 183 with open(p, "r") as f: 301 for p in CMAKE_FILE_TYPES 302 for f in glob.glob(os.path.join(SDK_ROOT, p), recursive=True) 306 for p in BAZEL_FILE_TYPES 307 for f in glob.glob(os.path.join(SDK_ROOT, p), recursive=True)
|
| /hal_rpi_pico-latest/test/hardware_pwm_test/ |
| D | hardware_pwm_test.c | 158 for (int p = 0; p < NUM_PWM_SLICES; p++) { in main() local 159 … PICOTEST_CHECK_CHANNEL(p, interrupt_states[p].count != 0, "No interrupts detected from PWM\n"); in main()
|
| /hal_rpi_pico-latest/src/rp2_common/hardware_gpio/include/hardware/ |
| D | gpio.h | 1420 #define DEBUG_PINS_ENABLED(p) (__selected_debug_pins == (p)) argument 1422 #define CU_REGISTER_DEBUG_PINS(p...) \ argument 1423 enum DEBUG_PIN_TYPE { _none = 0, p }; \ 1429 #define DEBUG_PINS_ENABLED(p) (__debug_pin_settings<p>::enabled()) argument 1431 #define DEBUG_PINS_SET(p, v) if (DEBUG_PINS_ENABLED(p)) gpio_set_mask((unsigned)(v)<<PICO_DEBUG_PIN… argument 1432 #define DEBUG_PINS_CLR(p, v) if (DEBUG_PINS_ENABLED(p)) gpio_clr_mask((unsigned)(v)<<PICO_DEBUG_PIN… argument 1433 #define DEBUG_PINS_XOR(p, v) if (DEBUG_PINS_ENABLED(p)) gpio_xor_mask((unsigned)(v)<<PICO_DEBUG_PIN… argument
|
| /hal_rpi_pico-latest/src/rp2_common/pico_float/ |
| D | float_math.c | 410 int e,p; in fpow_0() local 415 p=(int)y; in fpow_0() 418 if(p>=256) p= 255; // avoid overflow in fpow_0() 419 if(p<-256) p=-256; in fpow_0() 420 p*=e; in fpow_0() 421 return fldexp(1,p); in fpow_0() 423 if(p==0) return 1; in fpow_0() 424 if(p>=-32&&p<=32) return fpowint_1(x,p); in fpow_0()
|
| D | float_sci_m33.S | 49 add r2,r2,r3,lsl#2 @ p 54 @ r2 p 56 ldr r5,[r2,#12] @ a0=p[3] 59 ldr r5,[r2,#8] @ a1=p[2] 63 ldr r5,[r2,#4] @ a2=p[1]
|
| /hal_rpi_pico-latest/src/rp2_common/pico_stdio_rtt/SEGGER/RTT/ |
| D | SEGGER_RTT.c | 326 …volatile SEGGER_RTT_CB* p; // Volatile to make sure that compiler cannot change the order of acc… in _DoInit() local 332 …p = (volatile SEGGER_RTT_CB*)((char*)&_SEGGER_RTT + SEGGER_RTT_UNCACHED_OFF); … in _DoInit() 333 …memset((SEGGER_RTT_CB*)p, 0, sizeof(_SEGGER_RTT)); // Make sure that the RTT CB is always … in _DoInit() 334 p->MaxNumUpBuffers = SEGGER_RTT_MAX_NUM_UP_BUFFERS; in _DoInit() 335 p->MaxNumDownBuffers = SEGGER_RTT_MAX_NUM_DOWN_BUFFERS; in _DoInit() 339 p->aUp[0].sName = "Terminal"; in _DoInit() 340 p->aUp[0].pBuffer = _acUpBuffer; in _DoInit() 341 p->aUp[0].SizeOfBuffer = BUFFER_SIZE_UP; in _DoInit() 342 p->aUp[0].RdOff = 0u; in _DoInit() 343 p->aUp[0].WrOff = 0u; in _DoInit() [all …]
|
| /hal_rpi_pico-latest/src/rp2_common/pico_double/ |
| D | double_math.c | 454 int e,p; in dpow_0() local 459 p=(int)y; in dpow_0() 462 if(p>=2048) p= 2047; // avoid overflow in dpow_0() 463 if(p<-2048) p=-2048; in dpow_0() 464 p*=e; in dpow_0() 465 return dldexp(1,p); in dpow_0() 467 if(p==0) return 1; in dpow_0() 468 if(p>=-32&&p<=32) return dpowint_1(x,p); in dpow_0()
|
| /hal_rpi_pico-latest/tools/pioasm/gen/ |
| D | location.h | 179 explicit location (const position& p = position ()) 180 : begin (p) in begin() argument 181 , end (p) in begin()
|
| /hal_rpi_pico-latest/docs/ |
| D | main.css | 9 h1, h2, h3, h4, h5, h6, p, a, li, span, blockquote, input, textarea, select, label { selector 13 p { selector
|
| /hal_rpi_pico-latest/test/pico_divider_test/ |
| D | pico_divider_test.c | 43 void ostr(char*p) { while(*p) o1ch(*p++); } in ostr() argument 46 void ostrnl(char*p) { ostr(p); onl();} in ostrnl() argument
|
| /hal_rpi_pico-latest/src/rp2_common/hardware_irq/ |
| D | irq.c | 598 io_rw_32 *p = nvic_ipr0() + (num >> 2); in irq_set_priority() local 600 *p = (*p & ~(0xffu << (8 * (num & 3u)))) | (((uint32_t) hardware_priority) << (8 * (num & 3u))); in irq_set_priority() 612 io_rw_32 *p = nvic_ipr0() + (num >> 2); in irq_get_priority() local 613 return (uint8_t)(*p >> (8 * (num & 3u))); in irq_get_priority() 656 io_rw_32 *p = nvic_ipr0(); in runtime_init_per_core_irq_priorities() local 658 *p++ = prio4; in runtime_init_per_core_irq_priorities()
|
| /hal_rpi_pico-latest/src/rp2_common/hardware_flash/ |
| D | flash.c | 293 io_rw_16 **p = (io_rw_16 **) rom_data_lookup(ROM_DATA_FLASH_DEVINFO16_PTR); in flash_devinfo_ptr() local 294 assert(p); in flash_devinfo_ptr() 295 return *p; in flash_devinfo_ptr()
|
| /hal_rpi_pico-latest/src/rp2_common/pico_printf/ |
| D | printf.c | 810 const char *p = va_arg(va, char*); in _vsnprintf() local 811 unsigned int l = _strnlen_s(p, precision ? precision : (size_t) -1); in _vsnprintf() 822 while ((*p != 0) && (!(flags & FLAGS_PRECISION) || precision--)) { in _vsnprintf() 823 out(*(p++), buffer, idx++, maxlen); in _vsnprintf()
|