Searched refs:intBytes (Results 1 – 8 of 8) sorted by relevance
217 private final byte[] intBytes=new byte[5]; field in BytesTrieBuilder232 intBytes[0]=(byte)BytesTrie.kFiveByteValueLead; in writeValueAndFinal()233 intBytes[1]=(byte)(i>>24); in writeValueAndFinal()234 intBytes[2]=(byte)(i>>16); in writeValueAndFinal()235 intBytes[3]=(byte)(i>>8); in writeValueAndFinal()236 intBytes[4]=(byte)i; in writeValueAndFinal()242 intBytes[0]=(byte)(BytesTrie.kMinTwoByteValueLead+(i>>8)); in writeValueAndFinal()245 intBytes[0]=(byte)(BytesTrie.kMinThreeByteValueLead+(i>>16)); in writeValueAndFinal()247 intBytes[0]=(byte)BytesTrie.kFourByteValueLead; in writeValueAndFinal()248 intBytes[1]=(byte)(i>>16); in writeValueAndFinal()[all …]
210 private final byte[] intBytes=new byte[5]; field in BytesTrieBuilder225 intBytes[0]=(byte)BytesTrie.kFiveByteValueLead; in writeValueAndFinal()226 intBytes[1]=(byte)(i>>24); in writeValueAndFinal()227 intBytes[2]=(byte)(i>>16); in writeValueAndFinal()228 intBytes[3]=(byte)(i>>8); in writeValueAndFinal()229 intBytes[4]=(byte)i; in writeValueAndFinal()235 intBytes[0]=(byte)(BytesTrie.kMinTwoByteValueLead+(i>>8)); in writeValueAndFinal()238 intBytes[0]=(byte)(BytesTrie.kMinThreeByteValueLead+(i>>16)); in writeValueAndFinal()240 intBytes[0]=(byte)BytesTrie.kFourByteValueLead; in writeValueAndFinal()241 intBytes[1]=(byte)(i>>16); in writeValueAndFinal()[all …]
432 char intBytes[5]; in writeValueAndFinal() local435 intBytes[0]=(char)BytesTrie::kFiveByteValueLead; in writeValueAndFinal()436 intBytes[1]=(char)((uint32_t)i>>24); in writeValueAndFinal()437 intBytes[2]=(char)((uint32_t)i>>16); in writeValueAndFinal()438 intBytes[3]=(char)((uint32_t)i>>8); in writeValueAndFinal()439 intBytes[4]=(char)i; in writeValueAndFinal()445 intBytes[0]=(char)(BytesTrie::kMinTwoByteValueLead+(i>>8)); in writeValueAndFinal()448 intBytes[0]=(char)(BytesTrie::kMinThreeByteValueLead+(i>>16)); in writeValueAndFinal()450 intBytes[0]=(char)BytesTrie::kFourByteValueLead; in writeValueAndFinal()451 intBytes[1]=(char)(i>>16); in writeValueAndFinal()[all …]
175 static int32_t internalEncodeDelta(int32_t i, char intBytes[]);