Searched refs:dot_in_x (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/glam/src/ |
D | wasm32.rs | 34 let dot_in_x = dot3_in_x(lhs, rhs); in dot3_into_v128() localVariable 35 i32x4_shuffle::<0, 0, 0, 0>(dot_in_x, dot_in_x) in dot3_into_v128() 45 let dot_in_x = dot4_in_x(lhs, rhs); in dot4_into_v128() localVariable 46 i32x4_shuffle::<0, 0, 0, 0>(dot_in_x, dot_in_x) in dot4_into_v128()
|
D | coresimd.rs | 30 let dot_in_x = dot3_in_x(lhs, rhs); in dot3_into_f32x4() localVariable 31 simd_swizzle!(dot_in_x, [0, 0, 0, 0]) in dot3_into_f32x4() 41 let dot_in_x = dot4_in_x(lhs, rhs); in dot4_into_f32x4() localVariable 42 simd_swizzle!(dot_in_x, [0, 0, 0, 0]) in dot4_into_f32x4()
|
D | sse2.rs | 65 let dot_in_x = dot3_in_x(lhs, rhs); in dot3_into_m128() localVariable 66 _mm_shuffle_ps(dot_in_x, dot_in_x, 0b00_00_00_00) in dot3_into_m128() 76 let dot_in_x = dot4_in_x(lhs, rhs); in dot4_into_m128() localVariable 77 _mm_shuffle_ps(dot_in_x, dot_in_x, 0b00_00_00_00) in dot4_into_m128()
|