| 595 | } |
| 596 | |
| 597 | GI_FORCEINLINE |
| 598 | void GiStoreFloat32V2(float* Buffer, GI_FLOAT32_V2_t Vector) { |
| 599 | #if defined(GI_NEON_INTRINSICS) |
| 600 | vst1q_f32_x2(Buffer, Vector); |
| 601 | #else |
| 602 | GiStoreFloat32(Buffer, GiGetSubVectorFloat32V2(Vector, 0)); |
| 603 | GiStoreFloat32( |
| 604 | Buffer + GI_SIMD_LEN_BYTE / sizeof(float), |
| 605 | GiGetSubVectorFloat32V2(Vector, 1)); |
| 606 | #endif |
| 607 | } |
| 608 | |
| 609 | #if defined(GI_NEON_INTRINSICS) |
| 610 | #define GISTORELANEFLOAT32(i) \ |
nothing calls this directly
no test coverage detected