Function _mm_insert_ps

#[target_feature(enable = "sse4.1")]
pub fn _mm_insert_ps(a: __m128, b: __m128, IMM8: i32) -> __m128

Select a single value in b to store at some position in a, Then zero elements according to IMM8.

IMM8 specifies which bits from operand b will be copied, which bits in the result they will be copied to, and which bits in the result will be cleared. The following assignments are made:

Intel's documentation