Skip to documentation
SLOP

tiny.simd.rotateRightSame

Reference tiny.simd rotateRightSame

Defined in rotate.

Called byCallsrandomVectorXoshiroprivate sourcelib.simd.src.rotateverifyLaneTypeprivate sourcelib.simd.src.testverifyWideRotateOracleprivate sourcelib.simd.src.rotateUnsignedLaneprivate sourcelib.simd.src.rotaterotateRightBitsprivate sourcelib.simd.src.rotatevalidaterotaterotateRightSame
Static calls · unresolved targets: 0 · external targets: 0.

Source

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

zig
pub fn rotateRightSame(comptime D: type, value: D.Vector, amount: i32) D.Vector {    validate(D);    const normalized: UnsignedLane(D) = @intCast(@mod(amount, @bitSizeOf(D.Lane)));    return rotateRightBits(D, value, @splat(normalized));}

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

zig
pub const rotateRightSame = rotate.rotateRightSame;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433