Skip to documentation
SLOP

tiny.simd.negMulAdd

Reference tiny.simd negMulAdd

Defined in arithmetic.

Called byCallsarithmeticmaskedNegMulAddarithmeticmaskedNegMulAddOrarithmeticaddprivate sourcelib.simd.src.arithmeticisIntegerarithmeticmularithmeticnegarithmeticnegMulAdd
Static calls · unresolved targets: 0 · external targets: 0.

Source

Source: lib/simd/src/arithmetic.zig:202

zig
pub fn negMulAdd(    comptime D: type,    multiplicand: D.Vector,    multiplier: D.Vector,    addend: D.Vector,) D.Vector {    if (comptime isInteger(D.Lane)) {        return add(D, mul(D, neg(D, multiplicand), multiplier), addend);    }    return @mulAdd(D.Vector, -multiplicand, multiplier, addend);}

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

zig
pub const negMulAdd = arithmetic.negMulAdd;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433