Home | History | Annotate | Download | only in util

Lines Matching defs:kMinThreeByteValueLead

719         } else if(leadByte<kMinThreeByteValueLead) {
722 value=((leadByte-kMinThreeByteValueLead)<<16)|((bytes[pos]&0xff)<<8)|(bytes[pos+1]&0xff);
733 if(leadByte<(kMinThreeByteValueLead<<1)) {
821 } else if(node<kMinThreeByteValueLead) {
824 delta=((node-kMinThreeByteValueLead)<<16)|((bytes_[pos]&0xff)<<8)|(bytes_[pos+1]&0xff);
1048 /*package*/ static final int kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; // 0x6c
1052 /*package*/ static final int kMaxThreeByteValue=((kFourByteValueLead-kMinThreeByteValueLead)<<16)-1;