// Token: 0x06000059 RID: 89 RVA: 0x00004529 File Offset: 0x00002729 internal static void UInt64_To_LE(ulong n, byte[] bs) { Pack.UInt32_To_LE((uint)n, bs); Pack.UInt32_To_LE((uint)(n >> 32), bs, 4); }
// Token: 0x06000052 RID: 82 RVA: 0x00004484 File Offset: 0x00002684 internal static void UInt64_To_BE(ulong n, byte[] bs, int off) { Pack.UInt32_To_BE((uint)(n >> 32), bs, off); Pack.UInt32_To_BE((uint)n, bs, off + 4); }
// Token: 0x06000058 RID: 88 RVA: 0x000088E4 File Offset: 0x00006AE4 internal static ulong LE_To_UInt64(byte[] bs, int off) { uint num = Pack.LE_To_UInt32(bs, off); return((ulong)Pack.LE_To_UInt32(bs, off + 4) << 32 | (ulong)num); }