| 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 | } |
| 351 | // numeric |
| 352 | static __forceinline vec4f Unp ( vec4f x, Context &, LineInfo * ) { |
| 353 | return x; |
nothing calls this directly
no test coverage detected