Home | History | Annotate | Download | only in util

Lines Matching defs:intBytes

210     private final byte[] intBytes=new byte[5];
225 intBytes[0]=(byte)BytesTrie.kFiveByteValueLead;
226 intBytes[1]=(byte)(i>>24);
227 intBytes[2]=(byte)(i>>16);
228 intBytes[3]=(byte)(i>>8);
229 intBytes[4]=(byte)i;
232 // intBytes[0]=(byte)(BytesTrie.kMinOneByteValueLead+i);
235 intBytes[0]=(byte)(BytesTrie.kMinTwoByteValueLead+(i>>8));
238 intBytes[0]=(byte)(BytesTrie.kMinThreeByteValueLead+(i>>16));
240 intBytes[0]=(byte)BytesTrie.kFourByteValueLead;
241 intBytes[1]=(byte)(i>>16);
244 intBytes[length++]=(byte)(i>>8);
246 intBytes[length++]=(byte)i;
248 intBytes[0]=(byte)((intBytes[0]<<1)|(isFinal?1:0));
249 return write(intBytes, length);
280 intBytes[0]=(byte)(BytesTrie.kMinTwoByteDeltaLead+(i>>8));
284 intBytes[0]=(byte)(BytesTrie.kMinThreeByteDeltaLead+(i>>16));
288 intBytes[0]=(byte)BytesTrie.kFourByteDeltaLead;
291 intBytes[0]=(byte)BytesTrie.kFiveByteDeltaLead;
292 intBytes[1]=(byte)(i>>24);
295 intBytes[1]=(byte)(i>>16);
297 intBytes[1]=(byte)(i>>8);
299 intBytes[length++]=(byte)i;
300 return write(intBytes, length);