コード例 #1
0
ファイル: Utils.cs プロジェクト: bradparks/Freaky-Sources
        public static void AddInt(byte[] array, ref int bitPos, CompressedByte compressed)
        {
            var value     = compressed.Value;
            int bitsCount = compressed.Length;

            AddInt(array, ref bitPos, compressed.Value, compressed.Length);
        }
コード例 #2
0
ファイル: Utils.cs プロジェクト: bradparks/Freaky-Sources
        /*#Ignore*/

        public static void AddIntReversed(byte[] array, ref int bitPos, CompressedByte compressed)
        {
            AddInt(array, ref bitPos, new CompressedByte
            {
                Value  = ReverseBits(compressed.Value, compressed.Length),
                Length = compressed.Length
            });
        }
コード例 #3
0
ファイル: Utils.cs プロジェクト: KvanTTT/Freaky-Sources
 /*#Ignore*/
 public static void AddIntReversed(byte[] array, ref int bitPos, CompressedByte compressed)
 {
     AddInt(array, ref bitPos, new CompressedByte
     {
         Value = ReverseBits(compressed.Value, compressed.Length),
         Length = compressed.Length
     });
 }
コード例 #4
0
ファイル: Huffman.cs プロジェクト: KvanTTT/Freaky-Sources
 public CompressedByte(CompressedByte CompressByte)
 {
     Value = CompressByte.Value;
     Length = CompressByte.Length;
 }
コード例 #5
0
 public CompressedByte(CompressedByte CompressByte)
 {
     Value  = CompressByte.Value;
     Length = CompressByte.Length;
 }
コード例 #6
0
ファイル: Utils.cs プロジェクト: KvanTTT/Freaky-Sources
 public static void AddInt(byte[] array, ref int bitPos, CompressedByte compressed)
 {
     var value = compressed.Value;
     int bitsCount = compressed.Length;
     AddInt(array, ref bitPos, compressed.Value, compressed.Length);
 }