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

◆ anonymous enum

template<typename T>
anonymous enum : bool
Enumerator
value 

Definition at line 532 of file s16x16x4.h.

543{
544
545// Forward declaration for cross-type operations
546struct s0x32x4;
547
550struct s16x16x4 {
551 simd::simd_u32x4 raw; // 4× i32 values in Q16 format
552
553 // ---- Construction ------------------------------------------------------
554
557 result.raw = r;
558 return result;
559 }
560
561 // Load 4 s16x16 values from memory (unaligned access supported)
563 return from_raw(simd::platforms::load_u32_4(reinterpret_cast<const u32*>(ptr))); // ok reinterpret cast
564 }
565
566 // Store 4 s16x16 values to memory (unaligned access supported)
567 FASTLED_FORCE_INLINE void store(s16x16* ptr) const {
568 simd::platforms::store_u32_4(reinterpret_cast<u32*>(ptr), raw); // ok reinterpret cast
569 }
570
571 // Broadcast single s16x16 value to all 4 lanes
573 return from_raw(simd::platforms::set1_u32_4(static_cast<u32>(value.raw())));
574 }
575
576 // ---- SIMD arithmetic (s16x16x4 OP s16x16x4 → s16x16x4) -----------------
577
579 return from_raw(simd::add_i32_4(raw, b.raw));
580 }
581
583 return from_raw(simd::sub_i32_4(raw, b.raw));
584 }
585
587 // Q16 × Q16 = Q32 → shift right 16 → Q16
588 return from_raw(simd::mulhi_i32_4(raw, b.raw));
589 }
590
592 // Unary negation: -x = 0 - x
593 auto zero = simd::set1_u32_4(0);
595 }
596
599 }
600
603 }
604
605 // Cross-type multiply: s16x16x4 × s0x32x4 → s16x16x4 (commutative)
606 // Implemented after s0x32x4 is defined
608
609 // ---- Math functions -------------------------------------------------------
610
613 // mask = -1 if negative (sign extended), 0 if positive
614 auto mask = simd::sra_i32_4(raw, 31);
615 // flip bits if negative, then add 1 (two's complement)
618 }
619
622 return from_raw(simd::min_i32_4(raw, b.raw));
623 }
624
627 return from_raw(simd::max_i32_4(raw, b.raw));
628 }
629
632 return max(lo).min(hi);
633 }
634
638 auto t_vec = s16x16x4::set1(t);
639 auto diff = b - (*this);
640 return (*this) + (diff * t_vec);
641 }
642
646 // Convert radians to 24-bit angle units (same as scalar s16x16)
647 // RAD_TO_24 = 2^24 / (2π) in Q16
648 static constexpr i32 RAD_TO_24 = 2670177; // from s16x16.h
649
650 // Convert 4 angles: mulhi_i32_4 does (i64*i64) >> 16
652
653 // Call vectorized sincos
655
656 // Shift results right by 15 to convert from raw sin32 output to Q16.16
657 out_sin = from_raw(simd::sra_i32_4(sc.sin_vals, 15));
658 out_cos = from_raw(simd::sra_i32_4(sc.cos_vals, 15));
659 }
660
665 return sin_out;
666 }
667
672 return cos_out;
673 }
674};
675
676// Include simd_ops.h to implement cross-type operations
677// Must come after all types are defined
678#include "fl/math/fixed_point/simd_ops.h" // allow-include-after-namespace
679
680} // 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)