Home
last modified time | relevance | path

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

/frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
DAsn1Decoder.java178 int tagByte; in decodeTag() local
180 while (((tagByte = data.get() & ByteMask) & MoreBit) != 0) { in decodeTag()
181 tag = (tag << MoreWidth) | (tagByte & MoreData); in decodeTag()
185 tag = (tag << MoreWidth) | tagByte; in decodeTag()