Function vec_cntlz

#[target_feature(enable = "altivec")]
pub unsafe fn vec_cntlz<T>(a: T) -> T
where
    T: VectorCntlz,

Vector Count Leading Zeros

Purpose

Returns a vector containing the number of most-significant bits equal to zero of each corresponding element of the source vector.

Result value

The value of each element of r is set to the number of leading zeros of the corresponding element of a.