Lines Matching refs:symbol
22 public void Encode(Encoder rangeEncoder, UInt32 symbol)
28 UInt32 bit = (symbol >> bitIndex) & 1;
34 public void ReverseEncode(Encoder rangeEncoder, UInt32 symbol)
39 UInt32 bit = symbol & 1;
42 symbol >>= 1;
46 public UInt32 GetPrice(UInt32 symbol)
53 UInt32 bit = (symbol >> bitIndex) & 1;
60 public UInt32 ReverseGetPrice(UInt32 symbol)
66 UInt32 bit = symbol & 1;
67 symbol >>= 1;
75 int NumBitLevels, UInt32 symbol)
81 UInt32 bit = symbol & 1;
82 symbol >>= 1;
90 Encoder rangeEncoder, int NumBitLevels, UInt32 symbol)
95 UInt32 bit = symbol & 1;
98 symbol >>= 1;
131 uint symbol = 0;
137 symbol |= (bit << bitIndex);
139 return symbol;
146 uint symbol = 0;
152 symbol |= (bit << bitIndex);
154 return symbol;