| 44 | __forceinline vec4f vec_loadu_x(const int v) {return v_cast_vec4f(v_seti_x(v));} |
| 45 | __forceinline vec4f vec_loadu_x(const unsigned int v) {return v_cast_vec4f(v_seti_x(v));} |
| 46 | __forceinline vec4f vec_load(const float *v) {return v_ld(v);} |
| 47 | __forceinline vec4f vec_load(const int *v) {return v_cast_vec4f(v_ldi(v));} |
| 48 | __forceinline vec4f vec_load(const unsigned int *v) {return vec_load((const int *)v);} |
| 49 | __forceinline vec4f vec_loadu(const float *v) {return v_ldu(v);} |
nothing calls this directly
no test coverage detected