Home | History | Annotate | Download | only in util

Lines Matching defs:pack

48           Also, the most we ever read backwards is 4 bytes. pack() reads backwards if the encoding
51 int tag = pack(jpeg, offset, 4, false);
52 count = pack(jpeg, offset - 2, 2, littleEndian);
107 length = pack(jpeg, offset, 2, false);
115 pack(jpeg, offset + 2, 4, false) == 0x45786966 &&
116 pack(jpeg, offset + 6, 2, false) == 0) {
135 int tag = pack(jpeg, offset, 4, false);
143 int count = pack(jpeg, offset + 4, 4, littleEndian) + 2;
155 count = pack(jpeg, offset - 2, 2, littleEndian);
159 tag = pack(jpeg, offset, 2, littleEndian);
162 final int orientation = pack(jpeg, offset + 8, 2, littleEndian);
187 private static int pack(final InputStreamBuffer bytes, int offset, int length,