Skip to documentation
SLOP

tiny.simd.negMulSub

Reference tiny.simd negMulSub

Defined in arithmetic.

Called byCallsarithmeticmaskedNegMulSubarithmeticmaskedNegMulSubOrprivate sourcelib.simd.src.arithmeticisIntegerarithmeticmularithmeticnegarithmeticsubarithmeticnegMulSub
Static calls · unresolved targets: 0 · external targets: 0.

Source

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

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

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

zig
pub const negMulSub = arithmetic.negMulSub;

Audit

Definitions1
Public names2
Members0
Version26.7.0
Revisiondaab053ee433