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

◆ size()

template<fl::size... Is>
static constexpr fl::size fl::fl::index_sequence< Is >::size ( )
inlinestaticconstexpr

Definition at line 1156 of file s16x16x4.h.

1167{
1168
1169// Forward declaration for cross-type operations
1170struct s0x32x4;
1171
1174struct s16x16x4 {
1175 simd::simd_u32x4 raw; // 4× i32 values in Q16 format
1176
1177 // ---- Construction ------------------------------------------------------
1178
1181 result.raw = r;
1182 return result;
1183 }
1184
1185 // Load 4 s16x16 values from memory (unaligned access supported)
1187 return from_raw(simd::platforms::load_u32_4(reinterpret_cast<const u32*>(ptr))); // ok reinterpret cast
1188 }
1189
1190 // Store 4 s16x16 values to memory (unaligned access supported)
1191 FASTLED_FORCE_INLINE void store(s16x16* ptr) const {
1192 simd::platforms::store_u32_4(reinterpret_cast<u32*>(ptr), raw); // ok reinterpret cast
1193 }
1194
1195 // Broadcast single s16x16 value to all 4 lanes
1197 return from_raw(simd::platforms::set1_u32_4(static_cast<u32>(value.raw())));
1198 }
1199
1200 // ---- SIMD arithmetic (s16x16x4 OP s16x16x4 → s16x16x4) -----------------
1201
1203 return from_raw(simd::add_i32_4(raw, b.raw));
1204 }
1205
1207 return from_raw(simd::sub_i32_4(raw, b.raw));
1208 }
1209
1211 // Q16 × Q16 = Q32 → shift right 16 → Q16
1212 return from_raw(simd::mulhi_i32_4(raw, b.raw));
1213 }
1214
1216 // Unary negation: -x = 0 - x
1217 auto zero = simd::set1_u32_4(0);
1218 return from_raw(simd::sub_i32_4(zero, raw));
1219 }
1220
1223 }
1224
1227 }
1228
1229 // Cross-type multiply: s16x16x4 × s0x32x4 → s16x16x4 (commutative)
1230 // Implemented after s0x32x4 is defined
1232
1233 // ---- Math functions -------------------------------------------------------
1234
1237 // mask = -1 if negative (sign extended), 0 if positive
1238 auto mask = simd::sra_i32_4(raw, 31);
1239 // flip bits if negative, then add 1 (two's complement)
1242 }
1243
1246 return from_raw(simd::min_i32_4(raw, b.raw));
1247 }
1248
1251 return from_raw(simd::max_i32_4(raw, b.raw));
1252 }
1253
1256 return max(lo).min(hi);
1257 }
1258
1262 auto t_vec = s16x16x4::set1(t);
1263 auto diff = b - (*this);
1264 return (*this) + (diff * t_vec);
1265 }
1266
1270 // Convert radians to 24-bit angle units (same as scalar s16x16)
1271 // RAD_TO_24 = 2^24 / (2π) in Q16
1272 static constexpr i32 RAD_TO_24 = 2670177; // from s16x16.h
1273
1274 // Convert 4 angles: mulhi_i32_4 does (i64*i64) >> 16
1276
1277 // Call vectorized sincos
1278 auto sc = sincos32_simd(angles_u32);
1279
1280 // Shift results right by 15 to convert from raw sin32 output to Q16.16
1281 out_sin = from_raw(simd::sra_i32_4(sc.sin_vals, 15));
1282 out_cos = from_raw(simd::sra_i32_4(sc.cos_vals, 15));
1283 }
1284
1289 return sin_out;
1290 }
1291
1296 return cos_out;
1297 }
1298};
1299
1300// Include simd_ops.h to implement cross-type operations
1301// Must come after all types are defined
1302#include "fl/math/fixed_point/simd_ops.h" // allow-include-after-namespace
1303
1304} // 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)