SIMD ISAReturn TypeNameArgumentsInstruction Group
Neonuint16x4_tvsra_n_u16(uint16x4_t a, uint16x4_t b, const int n)Shift / Right / Vector shift right and accumulate
Description
Unsigned Shift Right and Accumulate (immediate). This instruction reads each vector element in the source SIMD&FP register, right shifts each result by an immediate value, and accumulates the final results with the vector elements of the destination SIMD&FP register. All the values in this instruction are unsigned integer values. The results are truncated. For rounded results, see URSRA.
Results
Vd.4H result
This intrinsic compiles to the following instructions:

USRA Vd.4H,Vn.4H,#n

Argument Preparation
a register: Vd.4Hb register: Vn.4Hn minimum: 1; maximum: 16
Architectures
v7, A32, A64

Operation

CheckFPAdvSIMDEnabled64();
bits(datasize) operand  = V[n];
bits(datasize) operand2;
bits(datasize) result;
integer round_const = if round then (1 << (shift - 1)) else 0;
integer element;

operand2 = if accumulate then V[d] else Zeros();
for e = 0 to elements-1
    element = (Int(Elem[operand, e, esize], unsigned) + round_const) >> shift;
    Elem[result, e, esize] = Elem[operand2, e, esize] + element<esize-1:0>;

V[d] = result;