Table of Contents

Method YShuffleG4_Byte

Namespace
Zyl.VectorTraits.Impl.AVector128
Assembly
VectorTraits.dll

YShuffleG4_Byte(Vector128<uint>, ShuffleControlG4)

For each 4-element group in a vector, shuffle is performed (对于一个向量中的每个 4-元素组, 进行换位). If the count of elements in a vector is less than 4, please use YShuffleG4X2 instead (如果向量的元素数量小于4,请使用 YShuffleG4X2 代替). Mnemonic: View for group: rt.xyzw = shuffleG4_ref(control, source). View for element: rt[i] := source[(i&(~3)) | ((control >> ((i&3)*2)) & 3)].

[CLSCompliant(false)]
public static Vector128<uint> YShuffleG4_Byte(Vector128<uint> source, ShuffleControlG4 control)

Parameters

source Vector128<uint>

The input source from which values are selected (从中选择值的输入向量).

control ShuffleControlG4

Shuffle control code (换位控制码).

Returns

Vector128<uint>

A new source containing the values from source selected by the given control (一个新向量,其中包含给定 controlsource 中选择的值).

See Also