private static void NOTLastElementsVector128 <T>(T *origin, T *target, uint index, uint length)
            where T : unmanaged
        {
            uint count  = length - index;
            var  masked = SSEHelper.NOTVector128(origin, index);

            SIMDIntrinsicsHelper.StoreLastElementsVector128((T *)&masked, target + index, 0, count);
        }
 private static void PerformCurrentNOTIterationVector128 <T>(T *origin, T *target, uint index)
     where T : unmanaged
 {
     SSEHelper.Store(SSEHelper.NOTVector128(origin, index), target, index);
 }