Skip to documentation
SLOP

tiny.simd.insertIntoUpper

Reference tiny.simd insertIntoUpper

Defined in memory.

Called byCallsNo direct callstest sourcelib.simd.src.memorytest: Highway bounded memory clamps c...memoryinsertIntoUpper
Static calls · unresolved targets: 0 · external targets: 0.

Source

Source: lib/simd/src/memory.zig:85

zig
pub fn insertIntoUpper(    comptime D: type,    input: []const D.Lane,    value: D.Vector,) D.Vector {    const half = D.lane_count / 2;    std.debug.assert(input.len >= half);    var result = value;    inline for (0..half) |index| result[index + half] = input[index];    return result;}

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

zig
pub const insertIntoUpper = memory.insertIntoUpper;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433