Searched refs:kMinThreeByteValueLead (Results 1 – 7 of 7) sorted by relevance
771 } else if(leadByte<kMinThreeByteValueLead) { in readValue()774 … value=((leadByte-kMinThreeByteValueLead)<<16)|((bytes[pos]&0xff)<<8)|(bytes[pos+1]&0xff); in readValue()785 if(leadByte<(kMinThreeByteValueLead<<1)) { in skipValue()873 } else if(node<kMinThreeByteValueLead) { in branchNext()876 … delta=((node-kMinThreeByteValueLead)<<16)|((bytes_[pos]&0xff)<<8)|(bytes_[pos+1]&0xff); in branchNext()1100 …/*package*/ static final int kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; … local1104 …/*package*/ static final int kMaxThreeByteValue=((kFourByteValueLead-kMinThreeByteValueLead)<<16)-…
242 intBytes[0]=(byte)(BytesTrie.kMinThreeByteValueLead+(i>>16)); in writeValueAndFinal()
737 } else if(leadByte<kMinThreeByteValueLead) { in readValue()740 … value=((leadByte-kMinThreeByteValueLead)<<16)|((bytes[pos]&0xff)<<8)|(bytes[pos+1]&0xff); in readValue()751 if(leadByte<(kMinThreeByteValueLead<<1)) { in skipValue()839 } else if(node<kMinThreeByteValueLead) { in branchNext()842 … delta=((node-kMinThreeByteValueLead)<<16)|((bytes_[pos]&0xff)<<8)|(bytes_[pos+1]&0xff); in branchNext()1066 …/*package*/ static final int kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; … local1070 …/*package*/ static final int kMaxThreeByteValue=((kFourByteValueLead-kMinThreeByteValueLead)<<16)-…
238 intBytes[0]=(byte)(BytesTrie.kMinThreeByteValueLead+(i>>16)); in writeValueAndFinal()
36 } else if(leadByte<kMinThreeByteValueLead) { in readValue()39 value=((leadByte-kMinThreeByteValueLead)<<16)|(pos[0]<<8)|pos[1]; in readValue()117 } else if(node<kMinThreeByteValueLead) { in branchNext()120 delta=((node-kMinThreeByteValueLead)<<16)|(pos[0]<<8)|pos[1]; in branchNext()
448 intBytes[0]=(char)(BytesTrie::kMinThreeByteValueLead+(i>>16)); in writeValueAndFinal()
408 if(leadByte<(kMinThreeByteValueLead<<1)) { in skipValue()525 … static const int32_t kMinThreeByteValueLead=kMinTwoByteValueLead+(kMaxTwoByteValue>>8)+1; // 0x6c variable529 static const int32_t kMaxThreeByteValue=((kFourByteValueLead-kMinThreeByteValueLead)<<16)-1;