| 264 | #undef GISTORELANEFLOAT32 |
| 265 | |
| 266 | GI_FORCEINLINE |
| 267 | GI_INT8_t GiReinterInt32ToInt8(GI_INT32_t Vector) { |
| 268 | #if defined(GI_NEON_INTRINSICS) |
| 269 | return vreinterpretq_s8_s32(Vector); |
| 270 | #elif defined(GI_SSE2_INTRINSICS) |
| 271 | return Vector; |
| 272 | #elif defined(GI_RVV_INTRINSICS) |
| 273 | return vreinterpret_v_i32m1_i8m1(Vector); |
| 274 | #else |
| 275 | return *(GI_INT8_t*)&Vector; |
| 276 | #endif |
| 277 | } |
| 278 | |
| 279 | GI_FORCEINLINE |
| 280 | void GiStoreInt16(void* Buffer, GI_INT16_t Vector) { |
nothing calls this directly
no outgoing calls
no test coverage detected