Home
last modified time | relevance | path

Searched refs:byte1 (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/
DUtf8.java190 private static int incompleteStateFor(int byte1) { in incompleteStateFor() argument
191 return (byte1 > (byte) 0xF4) ? in incompleteStateFor()
192 MALFORMED : byte1; in incompleteStateFor()
195 private static int incompleteStateFor(int byte1, int byte2) { in incompleteStateFor() argument
196 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() argument
202 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 …]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dbitstream.cpp953 int byte0, byte1, byte2, shift, tmpvar; in quickSearchGOBHeader() local
973 byte1 = (stream->curr_word << 8) >> 24; in quickSearchGOBHeader()
974 if (byte1 == 0) in quickSearchGOBHeader()