234235236237238239240241242
uLong.write(out); } /** read short value */ static short readShort(DataInputStream in) throws IOException { ShortWritable uShort = TL_DATA.get().U_SHORT; uShort.readFields(in); return uShort.get(); }
241242243244245246247248249
return uShort.get(); } /** write short value */ static void writeShort(short value, DataOutputStream out) throws IOException { ShortWritable uShort = TL_DATA.get().U_SHORT; uShort.set(value); uShort.write(out); }
228229230231232233234235236
235236237238239240241242243
178179180181182183184185186
uInt.write(out); } /** read short value */ static short readShort(DataInput in) throws IOException { ShortWritable uShort = TL_DATA.get().U_SHORT; uShort.readFields(in); return uShort.get(); }
185186187188189190191192193
227228229230231232233234235