Exemplo n.º 1
0
 public static Vec128 <ulong> ToVector128(this UInt128 src)
 => src;
Exemplo n.º 2
0
Arquivo: UMul.cs Projeto: 0xCM/arrows
 public static unsafe ref UInt128 mul(ulong lhs, ulong rhs, out UInt128 dst)
 {
     dst = 0;
     mul(lhs, rhs, out dst.lo, out dst.hi);
     return(ref dst);
 }
Exemplo n.º 3
0
 public static BitString ToBitString(this UInt128 src)
 => BitString.FromScalar(src.hi) + BitString.FromScalar(src.lo);