894 {
895
896
898
903
904
905
910 }
911
912
914 return from_raw(simd::platforms::load_u32_4(reinterpret_cast<const u32*>(ptr)));
915 }
916
917
919 simd::platforms::store_u32_4(reinterpret_cast<u32*>(ptr), raw);
920 }
921
922
924 return from_raw(simd::platforms::set1_u32_4(static_cast<u32>(value.raw())));
925 }
926
927
928
930 return from_raw(simd::add_i32_4(raw, b.raw));
931 }
932
934 return from_raw(simd::sub_i32_4(raw, b.raw));
935 }
936
938
939 return from_raw(simd::mulhi_i32_4(raw, b.raw));
940 }
941
943
944 auto zero = simd::set1_u32_4(0);
945 return from_raw(simd::sub_i32_4(zero, raw));
946 }
947
949 return from_raw(simd::sra_i32_4(raw, shift));
950 }
951
953 return from_raw(simd::sll_u32_4(raw, shift));
954 }
955
956
957
959
960
961
964
965 auto mask = simd::sra_i32_4(raw, 31);
966
967 auto flipped = simd::xor_u32_4(raw, mask);
968 return from_raw(simd::sub_i32_4(flipped, mask));
969 }
970
973 return from_raw(simd::min_i32_4(raw, b.raw));
974 }
975
978 return from_raw(simd::max_i32_4(raw, b.raw));
979 }
980
983 return max(lo).min(hi);
984 }
985
989 auto t_vec = s16x16x4::set1(
t);
990 auto diff = b - (*this);
991 return (*this) + (diff * t_vec);
992 }
993
997
998
999 static constexpr i32 RAD_TO_24 = 2670177;
1000
1001
1002 auto angles_u32 = simd::mulhi_su32_4(raw, simd::set1_u32_4(static_cast<u32>(RAD_TO_24)));
1003
1004
1006
1007
1008 out_sin = from_raw(simd::sra_i32_4(sc.sin_vals, 15));
1009 out_cos = from_raw(simd::sra_i32_4(sc.cos_vals, 15));
1010 }
1011
1014 s16x16x4 sin_out, cos_out;
1015 sincos(sin_out, cos_out);
1016 return sin_out;
1017 }
1018
1021 s16x16x4 sin_out, cos_out;
1022 sincos(sin_out, cos_out);
1023 return cos_out;
1024 }
1025};
1026
1027
1028
1030
1031}
FL_DISABLE_WARNING_PUSH U constexpr common_type_t< T, U > min(T a, U b) FL_NOEXCEPT
Memory functions are available in fl:: namespace via fl/stl/cstring.h Using declarations cannot work ...
constexpr common_type_t< T, U > max(T a, U b) FL_NOEXCEPT
constexpr enable_if< is_fixed_point< T >::value, T >::type abs(T x) FL_NOEXCEPT
FASTLED_FORCE_INLINE CRGB * operator+(const CRGBSet &pixels, int offset)
Retrieve a pointer to a CRGB array, using a CRGBSet and an LED offset.
platforms::simd_u32x4 simd_u32x4
ostream & operator<<(ostream &os, const hex_t &) FL_NOEXCEPT
FASTLED_FORCE_INLINE SinCos32_simd sincos32_simd(simd::simd_u32x4 angles) FL_NOEXCEPT
Process 4 angles simultaneously, returning vectorized sin/cos values SIMD-optimized: vectorized angle...
enable_if< is_fixed_point< T >::value, void >::type sincos(T angle, T &out_sin, T &out_cos) FL_NOEXCEPT
FASTLED_FORCE_INLINE CRGB operator*(const CRGB &p1, u8 d) FL_NOEXCEPT
Multiply each of the channels by a constant, saturating each channel at 0xFF.
FASTLED_FORCE_INLINE CRGB operator-(const CRGB &p1, const CRGB &p2) FL_NOEXCEPT
Subtract one CRGB from another, saturating at 0x00 for each channel.
expected< T, E > result
Alias for expected (Rust-style naming)
enable_if< is_fixed_point< T >::value, T >::type cos(T angle) FL_NOEXCEPT
enable_if< is_fixed_point< T >::value, T >::type sin(T angle) FL_NOEXCEPT
constexpr enable_if< is_fixed_point< T >::value, T >::type clamp(T x, T lo, T hi) FL_NOEXCEPT
FASTLED_FORCE_INLINE float lerp(float t, float a, float b)
#define FASTLED_FORCE_INLINE
Cross-type SIMD fixed-point operations (implemented after all types are defined)
4-wide s0x32 vector (normalized values [-1, 1]) Backed by 128-bit SIMD register (4× i32 in Q31 format...
4-wide s16x16 vector (general fixed-point) Backed by 128-bit SIMD register (4× i32 in Q16 format)