Home
last modified time | relevance | path

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

/cts/tests/location/location_gnss/src/android/location/cts/gnss/asn1/base/
DPerAlignedUtils.java75 result.appendByte((byte) (normalizedValue)); in encodeNormalizedSmallConstrainedWholeNumber()
78 result.appendByte((byte) ((normalizedValue & 0xFF00) >>> 8)); in encodeNormalizedSmallConstrainedWholeNumber()
79 result.appendByte((byte) (normalizedValue & 0x00FF)); in encodeNormalizedSmallConstrainedWholeNumber()
175 value.appendByte(aByte); in encodeConstrainedLengthOfBytes()
214 result.appendByte(b); in encodeSemiConstrainedLengthOfBytes()
287 result.appendByte((byte) (value & 0xFF)); in encodeSemiConstrainedLength()
DPerUnalignedUtils.java135 value.appendByte(aByte); in encodeConstrainedLengthOfBytes()
171 result.appendByte(b); in encodeSemiConstrainedLengthOfBytes()
223 result.appendByte((byte) (value & 0xFF)); in encodeSemiConstrainedLength()
DAsn1BMPString.java138 result.appendByte((byte) ((codepoint & 0xFF00) >> 8)); in encodeCharactersPer()
139 result.appendByte((byte) (codepoint & 0xFF)); in encodeCharactersPer()
DPacketBuilder.java31 bitStream.appendByte(bytes[i]); in append()
DBitStream.java53 public void appendByte(byte data) { in appendByte() method in BitStream
DAsn1GeneralString.java90 result.appendByte(b); in encodePerImpl()
DAsn1OctetString.java98 result.appendByte(value[i]); in encodePerImpl()
DAsn1IA5String.java180 result.appendByte(b); in encodeValueCharacters()