Searched refs:kMinThreeByteDeltaLead (Results 1 – 7 of 7) sorted by relevance
429 if(delta<kMinThreeByteDeltaLead) { in skipDelta()536 static const int32_t kMinThreeByteDeltaLead=0xf0; variable540 …static const int32_t kMaxTwoByteDelta=((kMinThreeByteDeltaLead-kMinTwoByteDeltaLead)<<8)-1; // 0x…541 …static const int32_t kMaxThreeByteDelta=((kFourByteDeltaLead-kMinThreeByteDeltaLead)<<16)-1; // 0…
805 } else if(delta<kMinThreeByteDeltaLead) { in jumpByDelta()808 delta=((delta-kMinThreeByteDeltaLead)<<16)|((bytes[pos]&0xff)<<8)|(bytes[pos+1]&0xff); in jumpByDelta()823 if(delta<kMinThreeByteDeltaLead) { in skipDelta()1111 /*package*/ static final int kMinThreeByteDeltaLead=0xf0; local1115 …/*package*/ static final int kMaxTwoByteDelta=((kMinThreeByteDeltaLead-kMinTwoByteDeltaLead)<<8)-1…1116 …/*package*/ static final int kMaxThreeByteDelta=((kFourByteDeltaLead-kMinThreeByteDeltaLead)<<16)-…
288 intBytes[0]=(byte)(BytesTrie.kMinThreeByteDeltaLead+(i>>16)); in writeDeltaTo()
771 } else if(delta<kMinThreeByteDeltaLead) { in jumpByDelta()774 delta=((delta-kMinThreeByteDeltaLead)<<16)|((bytes[pos]&0xff)<<8)|(bytes[pos+1]&0xff); in jumpByDelta()789 if(delta<kMinThreeByteDeltaLead) { in skipDelta()1077 /*package*/ static final int kMinThreeByteDeltaLead=0xf0; local1081 …/*package*/ static final int kMaxTwoByteDelta=((kMinThreeByteDeltaLead-kMinTwoByteDeltaLead)<<8)-1…1082 …/*package*/ static final int kMaxThreeByteDelta=((kFourByteDeltaLead-kMinThreeByteDeltaLead)<<16)-…
284 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()
485 intBytes[0]=(char)(BytesTrie::kMinThreeByteDeltaLead+(i>>16)); in writeDeltaTo()