Function vec_st

#[target_feature(enable = "altivec")]
pub unsafe fn vec_st<T>(a: T, off: isize, c: <T as VectorSt>::Target)
where
    T: VectorSt,

Vector Store Indexed

Purpose

Stores a 16-byte vector into memory at the address specified by a displacement and a pointer, ignoring the four low-order bits of the calculated address.

Operation

A memory address is obtained by adding b and c, and masking off the four low-order bits of the result. The 16-byte vector in a is stored to the resultant memory address.