예제 #1
0
파일: Reg.cs 프로젝트: 0xCM/arrows
 public static ref YMEM move <T>(Vector256 <T> src, ref YMEM dst)
     where T : unmanaged
 {
     dst = YMEM.From(src);
     return(ref dst);
 }
예제 #2
0
파일: vmovdqa.cs 프로젝트: 0xCM/arrows
 public unsafe static ref YMEM vmovdqa(YMM src, ref YMEM dst)
 {
     dst = vload <ulong>(ref src);
     return(ref dst);
 }