Lines Matching refs:UInt32
22 public void Encode(Encoder rangeEncoder, UInt32 symbol)
24 UInt32 m = 1;
28 UInt32 bit = (symbol >> bitIndex) & 1;
34 public void ReverseEncode(Encoder rangeEncoder, UInt32 symbol)
36 UInt32 m = 1;
37 for (UInt32 i = 0; i < NumBitLevels; i++)
39 UInt32 bit = symbol & 1;
46 public UInt32 GetPrice(UInt32 symbol)
48 UInt32 price = 0;
49 UInt32 m = 1;
53 UInt32 bit = (symbol >> bitIndex) & 1;
60 public UInt32 ReverseGetPrice(UInt32 symbol)
62 UInt32 price = 0;
63 UInt32 m = 1;
66 UInt32 bit = symbol & 1;
74 public static UInt32 ReverseGetPrice(BitEncoder[] Models, UInt32 startIndex,
75 int NumBitLevels, UInt32 symbol)
77 UInt32 price = 0;
78 UInt32 m = 1;
81 UInt32 bit = symbol & 1;
89 public static void ReverseEncode(BitEncoder[] Models, UInt32 startIndex,
90 Encoder rangeEncoder, int NumBitLevels, UInt32 symbol)
92 UInt32 m = 1;
95 UInt32 bit = symbol & 1;
142 public static uint ReverseDecode(BitDecoder[] Models, UInt32 startIndex,