MCPcopy Create free account
hub / github.com/GaijinEntertainment/daScript / Equ

Method Equ

include/daScript/simulate/sim_policy.h:345–347  ·  view source on GitHub ↗

basic

Source from the content-addressed store, hash-verified

343 static __forceinline vec4f splats ( uint32_t x ) { return v_splats((float)x); }
344 // basic
345 static __forceinline bool Equ ( vec4f a, vec4f b, Context &, LineInfo * ) {
346 return (v_signmask(v_cmp_eq(a,b)) & mask) == mask;
347 }
348 static __forceinline bool NotEqu ( vec4f a, vec4f b, Context &, LineInfo * ) {
349 return (v_signmask(v_cmp_eq(a, b)) & mask) != mask;
350 }

Callers

nothing calls this directly

Calls 2

v_signmaskFunction · 0.50
v_cmp_eqFunction · 0.50

Tested by

no test coverage detected