Hello.
Let's say I have a 4 integer values in v0 register. How can I shift to right all integers on fixed value?
Have you considered the SSHR (Signed Shift by Immediate) or USHR (Unsigned Shift Right by immediate) instructions?
https://developer.arm.com/documentation/ddi0602/2025-09/SIMD-FP-Instructions/SSHR--Signed-shift-right--immediate--?lang=en
https://developer.arm.com/documentation/ddi0602/2025-09/SIMD-FP-Instructions/USHR--Unsigned-shift-right--immediate--?lang=en
Note, there are variants with rounding.
Thank you. USHR is seems what I looking for.