private static void PerformCurrentXNORIterationVector128 <T>(T *origin, T *target, Vector128 <T> mask, uint index) where T : unmanaged { SSEHelper.Store(SSEHelper.XNORVector128(origin, mask, index), target, index); }
private static void PerformCurrentNOTIterationVector128 <T>(T *origin, T *target, uint index) where T : unmanaged { SSEHelper.Store(SSEHelper.NOTVector128(origin, index), target, index); }