Home
last modified time | relevance | path

Searched defs:x (Results 1 – 25 of 34) sorted by relevance

12

/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/rp2_common/pico_double/
Ddouble_math.c39 #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/
Dfloat_math.c37 #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/
Dplatform.h40 #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/
Dpico_float_test.c387 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 …]
Dpico_double_test.c351 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/
Dcc.h57 #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/
Dassert.h32 #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
Dtypes.h103 #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/
Dpico.h20 #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/
Dplatform.h296 #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/
Dcmsis_compiler.h102 #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/
Dpad_checksum9 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/
Dpico_stdlib_test.c14 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/
Dplatform_defs.h14 #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/
Dpico_divider_test.c16 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/
Drand.c66 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/
Dkitchen_sink.c120 __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/
Dplatform_defs.h25 #define _u(x) x ## u argument
/hal_rpi_pico-3.7.0-3.6.0-3.5.0/src/host/hardware_sync/include/hardware/
Dsync.h20 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/
Dcybt_shared_bus.c44 #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/
Dstdio_uart.c20 #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/
Dstructure.h60 #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/
Dgpio.h161 #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/
Dgpio.h878 #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/
Dsync.h393 #define remove_volatile_cast(t, x) ({__mem_fence_acquire(); (t)(x); }) argument

12