167 {
168
169
170struct s0x32x4;
171
174struct s16x16x4 {
175 simd::simd_u32x4 raw;
176
177
178
183 }
184
185
187 return from_raw(simd::platforms::load_u32_4(reinterpret_cast<const u32*>(ptr)));
188 }
189
190
192 simd::platforms::store_u32_4(reinterpret_cast<u32*>(ptr), raw);
193 }
194
195
197 return from_raw(simd::platforms::set1_u32_4(static_cast<u32>(value.raw())));
198 }
199
200
201
203 return from_raw(simd::add_i32_4(raw, b.raw));
204 }
205
207 return from_raw(simd::sub_i32_4(raw, b.raw));
208 }
209
211
212 return from_raw(simd::mulhi_i32_4(raw, b.raw));
213 }
214
216
217 auto zero = simd::set1_u32_4(0);
218 return from_raw(simd::sub_i32_4(zero, raw));
219 }
220
222 return from_raw(simd::sra_i32_4(raw, shift));
223 }
224
226 return from_raw(simd::sll_u32_4(raw, shift));
227 }
228
229
230
232
233
234
237
238 auto mask = simd::sra_i32_4(raw, 31);
239
240 auto flipped = simd::xor_u32_4(raw, mask);
241 return from_raw(simd::sub_i32_4(flipped, mask));
242 }
243
246 return from_raw(simd::min_i32_4(raw, b.raw));
247 }
248
251 return from_raw(simd::max_i32_4(raw, b.raw));
252 }
253
256 return max(lo).min(hi);
257 }
258
262 auto t_vec = s16x16x4::set1(
t);
263 auto diff = b - (*this);
264 return (*this) + (diff * t_vec);
265 }
266
270
271
272 static constexpr i32 RAD_TO_24 = 2670177;
273
274
275 auto angles_u32 = simd::mulhi_su32_4(raw, simd::set1_u32_4(static_cast<u32>(RAD_TO_24)));
276
277
279
280
281 out_sin = from_raw(simd::sra_i32_4(sc.sin_vals, 15));
282 out_cos = from_raw(simd::sra_i32_4(sc.cos_vals, 15));
283 }
284
287 s16x16x4 sin_out, cos_out;
289 return sin_out;
290 }
291
294 s16x16x4 sin_out, cos_out;
296 return cos_out;
297 }
298};
299
300
301
303
304}
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.
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)