Home
last modified time | relevance | path

Searched refs:p (Results 1 – 20 of 20) sorted by relevance

/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/hardware_base/include/hardware/
Daddress_mapped.h108 #define hw_set_alias(p) ((typeof(p))hw_set_alias_untyped(p)) argument
109 #define hw_clear_alias(p) ((typeof(p))hw_clear_alias_untyped(p)) argument
110 #define hw_xor_alias(p) ((typeof(p))hw_xor_alias_untyped(p)) argument
111 #define xip_noalloc_alias(p) ((typeof(p))xip_noalloc_alias_untyped(p)) argument
112 #define xip_nocache_alias(p) ((typeof(p))xip_nocache_alias_untyped(p)) argument
113 #define xip_nocache_noalloc_alias(p) ((typeof(p))xip_nocache_noalloc_alias_untyped(p)) argument
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/pico_standard_link/
Dnew_delete.cpp21 void operator delete(void *p) { std::free(p); } in operator delete() argument
23 void operator delete[](void *p) noexcept { std::free(p); } in operator delete[]() argument
27 void operator delete(void *p, __unused std::size_t n) noexcept { std::free(p); } in operator delete() argument
29 void operator delete[](void *p, __unused std::size_t n) noexcept { std::free(p); } in operator delete[]() argument
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/tools/pioasm/
Dpio_assembler.h42 …if (std::find_if(programs.begin(), programs.end(), [&](const program &p) { return p.name == name; … in add_program()
68 auto &p = programs[programs.size() - 1]; member
69 if (before_any_instructions && !p.instructions.empty()) {
74 return p;
78 std::shared_ptr<symbol> get_symbol(const std::string &name, const program *p) { in get_symbol()
83 if (p) { in get_symbol()
84 const auto &i2 = p->symbols.find(name); in get_symbol()
85 if (i2 != p->symbols.end()) in get_symbol()
Dada_output.cpp76 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()
Dc_sdk_output.cpp60 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()
Dpython_output.cpp87 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()
Dparser.yy147 … instruction { auto &p = pioasm.get_current_program(@2, "instruction"); p.add…
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/hardware_gpio/include/hardware/
Dgpio.h879 #define DEBUG_PINS_ENABLED(p) (__selected_debug_pins == (p)) argument
881 #define CU_REGISTER_DEBUG_PINS(p...) \ argument
882 enum DEBUG_PIN_TYPE { _none = 0, p }; \
888 #define DEBUG_PINS_ENABLED(p) (__debug_pin_settings<p>::enabled()) argument
890 #define DEBUG_PINS_SET(p, v) if (DEBUG_PINS_ENABLED(p)) gpio_set_mask((unsigned)(v)<<PICO_DEBUG_PIN… argument
891 #define DEBUG_PINS_CLR(p, v) if (DEBUG_PINS_ENABLED(p)) gpio_clr_mask((unsigned)(v)<<PICO_DEBUG_PIN… argument
892 #define DEBUG_PINS_XOR(p, v) if (DEBUG_PINS_ENABLED(p)) gpio_xor_mask((unsigned)(v)<<PICO_DEBUG_PIN… argument
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/host/hardware_gpio/include/hardware/
Dgpio.h160 #define CU_REGISTER_DEBUG_PINS(p, ...) argument
162 #define DEBUG_PINS_ENABLED(p) false argument
164 #define DEBUG_PINS_SET(p, v) ((void)0) argument
165 #define DEBUG_PINS_CLR(p, v) ((void)0) argument
166 #define DEBUG_PINS_XOR(p, v) ((void)0) argument
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/pico_runtime/
Druntime.c104 for (void (**p)(void) = &__preinit_array_start; p < &__preinit_array_end; ++p) { in runtime_init() local
105 (*p)(); in runtime_init()
175 for (void (**p)(void) = &__init_array_start; p < &__init_array_end; ++p) { in runtime_init() local
176 (*p)(); in runtime_init()
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/test/hardware_pwm_test/
Dhardware_pwm_test.c160 for (int p = 0; p < NUM_PWM_SLICES; p++) { in main() local
161 … PICOTEST_CHECK_CHANNEL(p, interrupt_states[p].count != 0, "No interrupts detected from PWM %d\n"); in main()
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/pico_float/
Dfloat_math.c410 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()
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/pico_double/
Ddouble_math.c452 int e,p;
457 p=(int)y;
460 if(p>=2048) p= 2047; // avoid overflow
461 if(p<-2048) p=-2048;
462 p*=e;
463 return dldexp(1,p);
465 if(p==0) return 1;
466 if(p>=-32&&p<=32) return dpowint_1(x,p);
Ddouble_v1_rom_shim.S1090 adcs r2,r2,r2 @ d4 Q53+1ulp
1095 adcs r5,r1 @ r4:r5 a5=a4+d4 Q53+1ulp
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/hardware_irq/
Dirq.c381 io_rw_32 *p = (io_rw_32 *)((PPB_BASE + M0PLUS_NVIC_IPR0_OFFSET) + (num & ~3u)); in irq_set_priority() local
382 *p = (*p & ~(0xffu << (8 * (num & 3u)))) | (((uint32_t) hardware_priority) << (8 * (num & 3u))); in irq_set_priority()
389 io_rw_32 *p = (io_rw_32 *)((PPB_BASE + M0PLUS_NVIC_IPR0_OFFSET) + (num & ~3u)); in irq_get_priority() local
390 return (uint8_t)(*p >> (8 * (num & 3u))); in irq_get_priority()
431 io_rw_32 * p = (io_rw_32 *)(PPB_BASE + M0PLUS_NVIC_IPR0_OFFSET); in irq_init_priorities() local
433 *p++ = prio4; in irq_init_priorities()
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/tools/pioasm/gen/
Dlocation.h179 explicit location (const position& p = position ())
180 : begin (p) in begin() argument
181 , end (p) in begin()
Dparser.cpp983 …{ auto &p = pioasm.get_current_program(yystack_[0].location, "instruction"); p.add_label(yystack_[… in parse() local
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/docs/
Dmain.css9 h1, h2, h3, h4, h5, h6, p, a, li, span, blockquote, input, textarea, select, label { selector
13 p { selector
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/test/pico_divider_test/
Dpico_divider_test.c43 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-3.7.0-3.6.0-3.5.0/src/rp2_common/pico_printf/
Dprintf.c830 const char *p = va_arg(va, char*); in _vsnprintf() local
831 unsigned int l = _strnlen_s(p, precision ? precision : (size_t) -1); in _vsnprintf()
842 while ((*p != 0) && (!(flags & FLAGS_PRECISION) || precision--)) { in _vsnprintf()
843 out(*(p++), buffer, idx++, maxlen); in _vsnprintf()