Searched refs:byte1 (Results 1 – 2 of 2) sorted by relevance
190 private static int incompleteStateFor(int byte1) { in incompleteStateFor() argument191 return (byte1 > (byte) 0xF4) ? in incompleteStateFor()192 MALFORMED : byte1; in incompleteStateFor()195 private static int incompleteStateFor(int byte1, int byte2) { in incompleteStateFor() argument196 return (byte1 > (byte) 0xF4 || in incompleteStateFor()198 MALFORMED : byte1 ^ (byte2 << 8); in incompleteStateFor()201 private static int incompleteStateFor(int byte1, int byte2, int byte3) { in incompleteStateFor() argument202 return (byte1 > (byte) 0xF4 || in incompleteStateFor()205 MALFORMED : byte1 ^ (byte2 << 8) ^ (byte3 << 16); in incompleteStateFor()209 int byte1 = bytes[index - 1]; in incompleteStateFor() local[all …]
953 int byte0, byte1, byte2, shift, tmpvar; in quickSearchGOBHeader() local973 byte1 = (stream->curr_word << 8) >> 24; in quickSearchGOBHeader()974 if (byte1 == 0) in quickSearchGOBHeader()