Skip to documentation
SLOP

tiny.simd.rotateLeftSame

Reference tiny.simd rotateLeftSame

Defined in rotate.

Called byCallstest sourcelib.simd.src.rotatetest: Highway variable rotations mask...private sourcelib.simd.src.rotateverifyLaneTypeprivate sourcelib.simd.src.testverifyWideRotateOracleprivate sourcelib.simd.src.rotateUnsignedLaneprivate sourcelib.simd.src.rotaterotateLeftBitsprivate sourcelib.simd.src.rotatevalidaterotaterotateLeftSame
Static calls · unresolved targets: 0 · external targets: 0.

Source

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

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

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

zig
pub const rotateLeftSame = rotate.rotateLeftSame;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433