Java 类com.badlogic.gdx.utils.compression.rangecoder.BitTreeDecoder 实例源码

项目:ingress-indonesia-dev    文件:Decoder$LenDecoder.java   
public void Create(int paramInt)
{
  while (this.m_NumPosStates < paramInt)
  {
    this.m_LowCoder[this.m_NumPosStates] = new BitTreeDecoder(3);
    this.m_MidCoder[this.m_NumPosStates] = new BitTreeDecoder(3);
    this.m_NumPosStates = (1 + this.m_NumPosStates);
  }
}
项目:libgdxcn    文件:Decoder.java   
public void Create (int numPosStates) {
    for (; m_NumPosStates < numPosStates; m_NumPosStates++) {
        m_LowCoder[m_NumPosStates] = new BitTreeDecoder(Base.kNumLowLenBits);
        m_MidCoder[m_NumPosStates] = new BitTreeDecoder(Base.kNumMidLenBits);
    }
}
项目:libgdxcn    文件:Decoder.java   
public Decoder () {
    for (int i = 0; i < Base.kNumLenToPosStates; i++)
        m_PosSlotDecoder[i] = new BitTreeDecoder(Base.kNumPosSlotBits);
}
项目:ModularArmour    文件:Decoder.java   
public void Create(int numPosStates) {
    for (; m_NumPosStates < numPosStates; m_NumPosStates++) {
        m_LowCoder[m_NumPosStates] = new BitTreeDecoder(Base.kNumLowLenBits);
        m_MidCoder[m_NumPosStates] = new BitTreeDecoder(Base.kNumMidLenBits);
    }
}
项目:ModularArmour    文件:Decoder.java   
public Decoder() {
    for (int i = 0; i < Base.kNumLenToPosStates; i++)
        m_PosSlotDecoder[i] = new BitTreeDecoder(Base.kNumPosSlotBits);
}
项目:ingress-indonesia-dev    文件:Decoder.java   
public Decoder()
{
  for (int i = 0; i < 4; i++)
    this.m_PosSlotDecoder[i] = new BitTreeDecoder(6);
}