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