FastLED 3.9.15
Loading...
Searching...
No Matches

◆ aligned_ptr() [1/2]

template<typename T, fl::size_t N>
fl::fl::aligned_ptr< T, N >::aligned_ptr ( )
inline

Definition at line 166 of file s16x16x4.h.

177{
178
179// Forward declaration for cross-type operations
180struct s0x32x4;
181
184struct s16x16x4 {
185 simd::simd_u32x4 raw; // 4× i32 values in Q16 format
186
187 // ---- Construction ------------------------------------------------------
188
191 result.raw = r;
192 return result;
193 }
194
195 // Load 4 s16x16 values from memory (unaligned access supported)
197 return from_raw(simd::platforms::load_u32_4(reinterpret_cast<const u32*>(ptr))); // ok reinterpret cast
198 }
199
200 // Store 4 s16x16 values to memory (unaligned access supported)
201 FASTLED_FORCE_INLINE void store(s16x16* ptr) const {
202 simd::platforms::store_u32_4(reinterpret_cast<u32*>(ptr), raw); // ok reinterpret cast
203 }
204
205 // Broadcast single s16x16 value to all 4 lanes
207 return from_raw(simd::platforms::set1_u32_4(static_cast<u32>(value.raw())));
208 }
209
210 // ---- SIMD arithmetic (s16x16x4 OP s16x16x4 → s16x16x4) -----------------
211
213 return from_raw(simd::add_i32_4(raw, b.raw));
214 }
215
217 return from_raw(simd::sub_i32_4(raw, b.raw));
218 }
219
221 // Q16 × Q16 = Q32 → shift right 16 → Q16
222 return from_raw(simd::mulhi_i32_4(raw, b.raw));
223 }
224
226 // Unary negation: -x = 0 - x
227 auto zero = simd::set1_u32_4(0);
229 }
230
233 }
234
237 }
238
239 // Cross-type multiply: s16x16x4 × s0x32x4 → s16x16x4 (commutative)
240 // Implemented after s0x32x4 is defined
242
243 // ---- Math functions -------------------------------------------------------
244
247 // mask = -1 if negative (sign extended), 0 if positive
248 auto mask = simd::sra_i32_4(raw, 31);
249 // flip bits if negative, then add 1 (two's complement)
252 }
253
256 return from_raw(simd::min_i32_4(raw, b.raw));
257 }
258
261 return from_raw(simd::max_i32_4(raw, b.raw));
262 }
263
266 return max(lo).min(hi);
267 }
268
272 auto t_vec = s16x16x4::set1(t);
273 auto diff = b - (*this);
274 return (*this) + (diff * t_vec);
275 }
276
280 // Convert radians to 24-bit angle units (same as scalar s16x16)
281 // RAD_TO_24 = 2^24 / (2π) in Q16
282 static constexpr i32 RAD_TO_24 = 2670177; // from s16x16.h
283
284 // Convert 4 angles: mulhi_i32_4 does (i64*i64) >> 16
286
287 // Call vectorized sincos
289
290 // Shift results right by 15 to convert from raw sin32 output to Q16.16
291 out_sin = from_raw(simd::sra_i32_4(sc.sin_vals, 15));
292 out_cos = from_raw(simd::sra_i32_4(sc.cos_vals, 15));
293 }
294
299 return sin_out;
300 }
301
306 return cos_out;
307 }
308};
309
310// Include simd_ops.h to implement cross-type operations
311// Must come after all types are defined
312#include "fl/math/fixed_point/simd_ops.h" // allow-include-after-namespace
313
314} // namespace fl
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 ...
Definition math.h:71
constexpr common_type_t< T, U > max(T a, U b) FL_NOEXCEPT
Definition math.h:75
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.
Definition pixelset.h:488
Cross-type SIMD fixed-point operations (implemented after all types are defined)