/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/pico_double/ |
D | double_math.c | 39 #define DUNPACK(x,e,m) e=((x)>>52)&0x7ff,m=((x)&0x000fffffffffffffULL)|0x0010000000000000ULL argument 40 #define DUNPACKS(x,s,e,m) s=((x)>>63),DUNPACK((x),(e),(m)) argument 59 static inline bool disnan(double x) { in disnan() 66 #define check_nan_d1(x) if (disnan((x))) return (x) argument 67 #define check_nan_d2(x,y) if (disnan((x))) return (x); else if (disnan((y))) return (y); argument 69 #define check_nan_d1(x) ((void)0) argument 70 #define check_nan_d2(x,y) ((void)0) argument 73 static inline int dgetsignexp(double x) { in dgetsignexp() 78 static inline int dgetexp(double x) { in dgetexp() 83 static inline double dldexp(double x,int de) { in dldexp() [all …]
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/pico_float/ |
D | float_math.c | 37 #define FUNPACK(x,e,m) e=((x)>>23)&0xff,m=((x)&0x007fffff)|0x00800000 argument 38 #define FUNPACKS(x,s,e,m) s=((x)>>31),FUNPACK((x),(e),(m)) argument 57 static inline bool fisnan(float x) { in fisnan() 63 #define check_nan_f1(x) if (fisnan((x))) return (x) argument 64 #define check_nan_f2(x,y) if (fisnan((x))) return (x); else if (fisnan((y))) return (y); argument 66 #define check_nan_f1(x) ((void)0) argument 67 #define check_nan_f2(x,y) ((void)0) argument 70 static inline int fgetsignexp(float x) { in fgetsignexp() 75 static inline int fgetexp(float x) { in fgetexp() 80 static inline float fldexp(float x,int de) { in fldexp() [all …]
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/host/pico_platform/include/pico/ |
D | platform.h | 40 #define __time_critical_func(x) x argument 47 #define __STRING(x) #x argument 64 #define __aligned(x) __attribute__((aligned(x))) argument 67 #define PICO_WEAK_FUNCTION_DEF(x) _Pragma(__STRING(weak x)) argument 68 #define PICO_WEAK_FUNCTION_IMPL_NAME(x) x argument 84 #define __aligned(x) __declspec(align(x)) argument 88 #define __CONCAT(x,y) x ## y argument 93 #define PICO_WEAK_FUNCTION_DEF(x) __pragma(comment(linker, __STRING(/alternatename:_##x=_##x##__wea… argument 94 #define PICO_WEAK_FUNCTION_IMPL_NAME(x) x ## __weak argument 129 #define host_safe_hw_ptr(x) host_safe_hw_ptr_impl((uintptr_t)(x)) argument
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/test/pico_float_test/ |
D | pico_float_test.c | 387 for (float x = 0; x < 3; x++) { in main() local 412 for (double x = 0; x < 3; x++) { in main() local 426 float x = NAN; in main() local 472 for (int32_t x = -1; x; x <<= 1) { in main() local 476 for (int32_t x = 1; x; x <<= 1) { in main() local 481 for (int64_t x = 1; x; x <<= 1) { in main() local 486 for (int64_t x = -1; x; x <<= 1) { in main() local 496 for(uint32_t x = 1; x; x <<= 1) { in main() local 503 for(int64_t x = 1; x !=0; x <<= 1u) { in main() local 507 for(float x = -4294967296.f * 4294967296.f; x>=0.5f; x/=2.f) { in main() local [all …]
|
D | pico_double_test.c | 351 for (double x = 0; x < 3; x++) { in main() local 376 float x = NAN; in main() local 421 for (int32_t x = -1; x; x <<= 1) { in main() local 425 for (int32_t x = 1; x; x <<= 1) { in main() local 430 for (int64_t x = 1; x; x <<= 1) { in main() local 435 for (int64_t x = -1; x; x <<= 1) { in main() local 445 for(uint32_t x = 1; x; x <<= 1) { in main() local 452 for(int64_t x = 1; x !=0; x <<= 1u) { in main() local 456 for(double x = -4294967296.f * 4294967296.f * 2.f; x<=-0.5f; x/=2.f) { in main() local 465 for(double x = 4294967296.f * 4294967296.f * 2.f; x>=0.5f; x/=2.f) { in main() local [all …]
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/pico_lwip/include/arch/ |
D | cc.h | 57 #define PACK_STRUCT_FIELD(x) x argument 65 #define PACK_STRUCT_FIELD(x) x argument 72 #define PACK_STRUCT_FIELD(x) x argument 79 #define PACK_STRUCT_FIELD(x) x argument 85 #define LWIP_PLATFORM_ASSERT(x) panic(x) argument
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/common/pico_base/include/pico/ |
D | assert.h | 32 #define PARAM_ASSERTIONS_ENABLED(x) ((PARAM_ASSERTIONS_ENABLED_ ## x || PARAM_ASSERTIONS_ENABLE_ALL… argument 34 #define invalid_params_if(x, test) ({if (PARAM_ASSERTIONS_ENABLED(x)) assert(!(test));}) argument 35 #define valid_params_if(x, test) ({if (PARAM_ASSERTIONS_ENABLED(x)) assert(test);}) argument 36 #define hard_assert_if(x, test) ({if (PARAM_ASSERTIONS_ENABLED(x)) hard_assert(!(test));}) argument
|
D | types.h | 103 #define bool_to_bit(x) ((uint)!!(x)) argument
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/common/pico_base/include/ |
D | pico.h | 20 #define __PICO_STRING(x) #x argument 21 #define __PICO_XSTRING(x) __PICO_STRING(x) argument 22 #define __PICO_CONCAT1(x, y) x ## y argument
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/pico_platform/include/pico/ |
D | platform.h | 296 #define host_safe_hw_ptr(x) ((uintptr_t)(x)) argument 297 #define native_safe_hw_ptr(x) host_safe_hw_ptr(x) argument 411 #define WRAPPER_FUNC(x) __wrap_ ## x argument 412 #define REAL_FUNC(x) __real_ ## x argument 452 #define WRAPPER_FUNC_NAME(x) __wrap_##x argument 453 #define SECTION_NAME(x) .text.##x argument 454 #define RAM_SECTION_NAME(x) .time_critical.##x argument
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/cmsis/stub/CMSIS/Core/Include/ |
D | cmsis_compiler.h | 102 #define __UNALIGNED_UINT32(x) (((struct T_UINT32 *)(x))->v) argument 121 #define __ALIGNED(x) __attribute__((aligned(x))) argument 174 #define __UNALIGNED_UINT32(x) (((struct T_UINT32 *)(x))->v) argument 193 #define __ALIGNED(x) __align(x) argument 245 #define __UNALIGNED_UINT32(x) (((struct T_UINT32 *)(x))->v) argument 265 #define __ALIGNED(x) argument
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/boot_stage2/ |
D | pad_checksum | 9 def any_int(x): argument 16 def bitrev(x, width): argument
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/test/pico_stdlib_test/ |
D | pico_stdlib_test.c | 14 int32_t x = 0; in test_builtin_bitops() local 81 uint32_t x = 1 << i; in main() local
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2040/hardware_regs/include/hardware/ |
D | platform_defs.h | 14 #define _u(x) x argument 16 #define _u(x) x ## u argument
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/test/pico_divider_test/ |
D | pico_divider_test.c | 16 void test_mulib_divu64u64(ui64*y,ui64*x,ui64*q,ui64*r) { in test_mulib_divu64u64() 19 void test_mulib_divs64s64( i64*y, i64*x, i64*q, i64*r) { in test_mulib_divs64s64() 104 void test_divu64u64(ui64 y,ui64 x) { in test_divu64u64() 124 void test_divs64s64(i64 y,i64 x) { in test_divs64s64() 151 ui64 y,x; in test_special() local 179 ui64 y,x,m; in test_random() local
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/pico_rand/ |
D | rand.c | 66 static __noinline uint64_t splitmix64(uint64_t x) { in splitmix64() 87 static inline uint64_t rotl(const uint64_t x, int k) { in rotl()
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/test/kitchen_sink/ |
D | kitchen_sink.c | 120 __force_inline int something_inlined(int x) { in something_inlined()
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/host/pico_platform/include/hardware/ |
D | platform_defs.h | 25 #define _u(x) x ## u argument
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/host/hardware_sync/include/hardware/ |
D | sync.h | 20 static inline void atomic_thread_fence(uint x) {} in atomic_thread_fence()
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/pico_cyw43_driver/cybt_shared_bus/ |
D | cybt_shared_bus.c | 44 #define ROUNDUP(x, a) ((((x) + ((a) - 1)) / (a)) * (a)) argument 45 #define ROUNDDN(x, a) ((x) & ~((a) - 1)) argument 46 #define ISALIGNED(a, x) (((uint32_t)(a) & ((x) - 1)) == 0) argument
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/pico_stdio_uart/ |
D | stdio_uart.c | 20 #define stdio_bi_decl_if_func_used(x) argument
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/common/pico_binary_info/include/pico/binary_info/ |
D | structure.h | 60 #define bi_ptr_of(x) x * argument 62 #define bi_ptr_of(x) uint32_t argument
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/host/hardware_gpio/include/hardware/ |
D | gpio.h | 161 #define CU_SELECT_DEBUG_PINS(x) argument
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/hardware_gpio/include/hardware/ |
D | gpio.h | 878 #define CU_SELECT_DEBUG_PINS(x) static enum DEBUG_PIN_TYPE __selected_debug_pins = (x); argument 887 #define CU_SELECT_DEBUG_PINS(x) template<> inline bool __debug_pin_settings<x>::enabled() { return … argument
|
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/hardware_sync/include/hardware/ |
D | sync.h | 393 #define remove_volatile_cast(t, x) ({__mem_fence_acquire(); (t)(x); }) argument
|