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

◆ min()

static constexpr FASTLED_FORCE_INLINE s0x32 fl::fl::s0x32::min ( s0x32 a,
s0x32 b )
inlinestaticconstexpr

Definition at line 156 of file s16x16x4.h.

167 {
168
169// Forward declaration for cross-type operations
170struct s0x32x4;
171
174struct s16x16x4 {
175 simd::simd_u32x4 raw; // 4× i32 values in Q16 format
176
177 // ---- Construction ------------------------------------------------------
178
179 static FASTLED_FORCE_INLINE s16x16x4 from_raw(simd::simd_u32x4 r) {
180 s16x16x4 result;
181 result.raw = r;
182 return result;
183 }
184
185 // Load 4 s16x16 values from memory (unaligned access supported)
186 static FASTLED_FORCE_INLINE s16x16x4 load(const s16x16* ptr) {
187 return from_raw(simd::platforms::load_u32_4(reinterpret_cast<const u32*>(ptr))); // ok reinterpret cast
188 }
189
190 // Store 4 s16x16 values to memory (unaligned access supported)
191 FASTLED_FORCE_INLINE void store(s16x16* ptr) const {
192 simd::platforms::store_u32_4(reinterpret_cast<u32*>(ptr), raw); // ok reinterpret cast
193 }
194
195 // Broadcast single s16x16 value to all 4 lanes
196 static FASTLED_FORCE_INLINE s16x16x4 set1(s16x16 value) {
197 return from_raw(simd::platforms::set1_u32_4(static_cast<u32>(value.raw())));
198 }
199
200 // ---- SIMD arithmetic (s16x16x4 OP s16x16x4 → s16x16x4) -----------------
201
202 FASTLED_FORCE_INLINE s16x16x4 operator+(s16x16x4 b) const {
203 return from_raw(simd::add_i32_4(raw, b.raw));
204 }
205
206 FASTLED_FORCE_INLINE s16x16x4 operator-(s16x16x4 b) const {
207 return from_raw(simd::sub_i32_4(raw, b.raw));
208 }
209
210 FASTLED_FORCE_INLINE s16x16x4 operator*(s16x16x4 b) const {
211 // Q16 × Q16 = Q32 → shift right 16 → Q16
212 return from_raw(simd::mulhi_i32_4(raw, b.raw));
213 }
214
215 FASTLED_FORCE_INLINE s16x16x4 operator-() const {
216 // Unary negation: -x = 0 - x
217 auto zero = simd::set1_u32_4(0);
218 return from_raw(simd::sub_i32_4(zero, raw));
219 }
220
221 FASTLED_FORCE_INLINE s16x16x4 operator>>(int shift) const {
222 return from_raw(simd::sra_i32_4(raw, shift));
223 }
224
225 FASTLED_FORCE_INLINE s16x16x4 operator<<(int shift) const {
226 return from_raw(simd::sll_u32_4(raw, shift));
227 }
228
229 // Cross-type multiply: s16x16x4 × s0x32x4 → s16x16x4 (commutative)
230 // Implemented after s0x32x4 is defined
231 FASTLED_FORCE_INLINE s16x16x4 operator*(s0x32x4 b) const;
232
233 // ---- Math functions -------------------------------------------------------
234
236 FASTLED_FORCE_INLINE s16x16x4 abs() const {
237 // mask = -1 if negative (sign extended), 0 if positive
238 auto mask = simd::sra_i32_4(raw, 31);
239 // flip bits if negative, then add 1 (two's complement)
240 auto flipped = simd::xor_u32_4(raw, mask);
241 return from_raw(simd::sub_i32_4(flipped, mask));
242 }
243
245 FASTLED_FORCE_INLINE s16x16x4 min(s16x16x4 b) const {
246 return from_raw(simd::min_i32_4(raw, b.raw));
247 }
248
250 FASTLED_FORCE_INLINE s16x16x4 max(s16x16x4 b) const {
251 return from_raw(simd::max_i32_4(raw, b.raw));
252 }
253
255 FASTLED_FORCE_INLINE s16x16x4 clamp(s16x16x4 lo, s16x16x4 hi) const {
256 return max(lo).min(hi);
257 }
258
261 FASTLED_FORCE_INLINE s16x16x4 lerp(s16x16x4 b, s16x16 t) const {
262 auto t_vec = s16x16x4::set1(t);
263 auto diff = b - (*this);
264 return (*this) + (diff * t_vec);
265 }
266
269 FASTLED_FORCE_INLINE void sincos(s16x16x4& out_sin, s16x16x4& out_cos) const {
270 // Convert radians to 24-bit angle units (same as scalar s16x16)
271 // RAD_TO_24 = 2^24 / (2π) in Q16
272 static constexpr i32 RAD_TO_24 = 2670177; // from s16x16.h
273
274 // Convert 4 angles: mulhi_i32_4 does (i64*i64) >> 16
275 auto angles_u32 = simd::mulhi_su32_4(raw, simd::set1_u32_4(static_cast<u32>(RAD_TO_24)));
276
277 // Call vectorized sincos
278 auto sc = sincos32_simd(angles_u32);
279
280 // Shift results right by 15 to convert from raw sin32 output to Q16.16
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
286 FASTLED_FORCE_INLINE s16x16x4 sin() const {
287 s16x16x4 sin_out, cos_out;
288 sincos(sin_out, cos_out);
289 return sin_out;
290 }
291
293 FASTLED_FORCE_INLINE s16x16x4 cos() const {
294 s16x16x4 sin_out, cos_out;
295 sincos(sin_out, cos_out);
296 return cos_out;
297 }
298};
299
300// Include simd_ops.h to implement cross-type operations
301// Must come after all types are defined
302#include "fl/math/fixed_point/simd_ops.h" // allow-include-after-namespace
303
304} // 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
static uint32_t t
Definition Luminova.h:55
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
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...
Definition sin32.h:145
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.
Definition crgb.hpp:198
FASTLED_FORCE_INLINE CRGB operator-(const CRGB &p1, const CRGB &p2) FL_NOEXCEPT
Subtract one CRGB from another, saturating at 0x00 for each channel.
Definition crgb.hpp:190
expected< T, E > result
Alias for expected (Rust-style naming)
Definition result.h:31
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)