Skip to documentation
SLOP

tiny.simd.rotateRight

Reference tiny.simd rotateRight

Defined in rotate.

Called byCallstest sourcelib.simd.src.rotatetest: Highway fixed rotations wrap ev...test sourcelib.simd.src.rotatetest: Highway variable rotations mask...private sourcelib.simd.src.rotateverifyLaneTypeprivate sourcelib.simd.src.rotateUnsignedVectorprivate sourcelib.simd.src.rotaterotateRightBitsprivate sourcelib.simd.src.rotatevalidateprivate sourcelib.simd.src.rotatevalidateAmountrotaterotateRight
Static calls · unresolved targets: 0 · external targets: 0.

Source

Source: lib/simd/src/rotate.zig:15

zig
pub fn rotateRight(    comptime D: type,    comptime amount: usize,    value: D.Vector,) D.Vector {    validate(D);    validateAmount(D, amount);    const amounts: UnsignedVector(D) = @splat(amount);    return rotateRightBits(D, value, amounts);}

Source: lib/simd/src/root.zig:756

zig
pub const rotateRight = rotate.rotateRight;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433