Searched refs:kMinThreeByteDeltaLead (Results 1 – 7 of 7) sorted by relevance
391 if(delta<kMinThreeByteDeltaLead) { in skipDelta()498 static const int32_t kMinThreeByteDeltaLead=0xf0; variable502 …static const int32_t kMaxTwoByteDelta=((kMinThreeByteDeltaLead-kMinTwoByteDeltaLead)<<8)-1; // 0x…503 …static const int32_t kMaxThreeByteDelta=((kFourByteDeltaLead-kMinThreeByteDeltaLead)<<16)-1; // 0…
718 } else if(delta<kMinThreeByteDeltaLead) { in jumpByDelta()721 delta=((delta-kMinThreeByteDeltaLead)<<16)|((bytes[pos]&0xff)<<8)|(bytes[pos+1]&0xff); in jumpByDelta()736 if(delta<kMinThreeByteDeltaLead) { in skipDelta()1024 /*package*/ static final int kMinThreeByteDeltaLead=0xf0; local1028 …/*package*/ static final int kMaxTwoByteDelta=((kMinThreeByteDeltaLead-kMinTwoByteDeltaLead)<<8)-1…1029 …/*package*/ static final int kMaxThreeByteDelta=((kFourByteDeltaLead-kMinThreeByteDeltaLead)<<16)-…
284 intBytes[0]=(byte)(BytesTrie.kMinThreeByteDeltaLead+(i>>16)); in writeDeltaTo()
753 } else if(delta<kMinThreeByteDeltaLead) { in jumpByDelta()756 delta=((delta-kMinThreeByteDeltaLead)<<16)|((bytes[pos]&0xff)<<8)|(bytes[pos+1]&0xff); in jumpByDelta()771 if(delta<kMinThreeByteDeltaLead) { in skipDelta()1059 /*package*/ static final int kMinThreeByteDeltaLead=0xf0; local1063 …/*package*/ static final int kMaxTwoByteDelta=((kMinThreeByteDeltaLead-kMinTwoByteDeltaLead)<<8)-1…1064 …/*package*/ static final int kMaxThreeByteDelta=((kFourByteDeltaLead-kMinThreeByteDeltaLead)<<16)-…
288 intBytes[0]=(byte)(BytesTrie.kMinThreeByteDeltaLead+(i>>16)); in writeDeltaTo()
53 } else if(delta<kMinThreeByteDeltaLead) { in jumpByDelta()56 delta=((delta-kMinThreeByteDeltaLead)<<16)|(pos[0]<<8)|pos[1]; in jumpByDelta()
484 intBytes[0]=(char)(BytesTrie::kMinThreeByteDeltaLead+(i>>16)); in writeDeltaTo()