Beispiel #1
0
 // 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: 0x06000083 RID: 131 RVA: 0x00004484 File Offset: 0x00002684
 private static void packLength(ulong len, byte[] bs, int off)
 {
     Pack.UInt32_To_BE((uint)(len >> 32), bs, off);
     Pack.UInt32_To_BE((uint)len, bs, off + 4);
 }