Home
last modified time | relevance | path

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

/cts/tests/location/location_gnss/src/android/location/cts/gnss/asn1/base/
DAsn1Integer.java77 BitStream result = PerUnalignedUtils.encodeNormalizedConstrainedWholeNumber( in encodeNormalizedIntegerWithRangeUnaligned()
127 : PerUnalignedUtils.encodeSemiConstrainedLengthOfBytes( in encodePerImpl()
128 PerUnalignedUtils.encodeBigNonNegativeWholeNumber(value.subtract(minimumValue))); in encodePerImpl()
133 : PerUnalignedUtils.encodeSemiConstrainedLengthOfBytes(value.toByteArray()); in encodePerImpl()
177 PerUnalignedUtils.decodeNormalizedConstrainedWholeNumber( in decodeNormalizedIntegerWithRangeUnaligned()
194 : PerUnalignedUtils.decodeSemiConstrainedLengthOfBytes(reader); in decodePerImpl()
200 : PerUnalignedUtils.decodeSemiConstrainedLengthOfBytes(reader)); in decodePerImpl()
DAsn1Choice.java210 PerUnalignedUtils.encodeNormallySmallWholeNumber( in encodePerImpl()
220 PerUnalignedUtils.encodeConstrainedWholeNumber( in encodePerImpl()
232 PerUnalignedUtils.encodeOpenTypeField(value)); in encodePerImpl()
263 selectionOrdinal = PerUnalignedUtils.decodeNormallySmallWholeNumber(reader); in decodePerImpl()
270 selectionOrdinal = PerUnalignedUtils.decodeConstrainedWholeNumber( in decodePerImpl()
279 PerUnalignedUtils.decodeOpenTypeField(reader, element); in decodePerImpl()
DAsn1Enumerated.java107 PerUnalignedUtils.encodeNormallySmallWholeNumber(value.ordinal())); in encodePerImpl()
118 PerUnalignedUtils.encodeConstrainedWholeNumber( in encodePerImpl()
138 value = lookupExtensionValue(PerUnalignedUtils.decodeNormallySmallWholeNumber(reader)); in decodePerImpl()
147 PerUnalignedUtils.decodeConstrainedWholeNumber( in decodePerImpl()
DAsn1OctetString.java89 return PerUnalignedUtils.encodeSemiConstrainedLengthOfBytes(value); in encodePerImpl()
110 return PerUnalignedUtils.encodeConstrainedLengthOfBytes( in encodePerImpl()
128 value = PerUnalignedUtils.decodeSemiConstrainedLengthOfBytes(reader); in decodePerImpl()
150 value = PerUnalignedUtils.decodeConstrainedLengthOfBytes( in decodePerImpl()
DAsn1SequenceOf.java117 listBuilder.add(PerUnalignedUtils.encodeSemiConstrainedLength(sequence.size())); in encodePerImpl()
126 PerUnalignedUtils.encodeConstrainedWholeNumber( in encodePerImpl()
154 size = PerUnalignedUtils.decodeSemiConstrainedLength(reader); in decodePerImpl()
161 size = PerUnalignedUtils.decodeConstrainedWholeNumber( in decodePerImpl()
DAsn1Sequence.java226 PerUnalignedUtils.encodeSemiConstrainedLength(extensionBitFieldSize); in encodePerImpl()
238 extensionValues = PerUnalignedUtils.encodeOpenTypeField(component.getComponentValue()); in encodePerImpl()
309 PerUnalignedUtils.decodeSemiConstrainedLength(reader); in decodePerImpl()
336 PerUnalignedUtils.decodeSemiConstrainedLengthOfBytes(reader); in decodePerImpl()
347 PerUnalignedUtils.decodeSemiConstrainedLengthOfBytes(reader); in decodePerImpl()
DAsn1Utf8String.java93 return PerUnalignedUtils.encodeSemiConstrainedLengthOfBytes(bytes); in encodePerImpl()
109 setValueBytes(PerUnalignedUtils.decodeSemiConstrainedLengthOfBytes(reader)); in decodePerImpl()
DAsn1IA5String.java150 : PerUnalignedUtils.encodeSemiConstrainedLength(value.length()); in encodePerImpl()
156 count = PerUnalignedUtils.encodeConstrainedWholeNumber( in encodePerImpl()
229 : PerUnalignedUtils.decodeSemiConstrainedLength(reader); in decodePerImpl()
235 count = PerUnalignedUtils.decodeConstrainedWholeNumber( in decodePerImpl()
DAsn1ObjectIdentifier.java87 return PerUnalignedUtils.encodeSemiConstrainedLengthOfBytes(encodeBerInternal()); in encodePerUnaligned()
106 byte[] basicEncoding = PerUnalignedUtils.decodeSemiConstrainedLengthOfBytes(reader); in decodePerUnaligned()
DAsn1GeneralString.java117 count = PerUnalignedUtils.encodeConstrainedWholeNumber( in encodePerImpl()
159 count = PerUnalignedUtils.decodeConstrainedWholeNumber( in decodePerImpl()
DAsn1BMPString.java116 count = PerUnalignedUtils.encodeConstrainedWholeNumber( in encodePerImpl()
171 count = PerUnalignedUtils.decodeConstrainedWholeNumber( in decodePerImpl()
DAsn1BitString.java137 count = PerUnalignedUtils.encodeConstrainedWholeNumber( in encodePerImpl()
190 length = PerUnalignedUtils.decodeConstrainedWholeNumber( in decodePerImpl()
DPerUnalignedUtils.java31 public class PerUnalignedUtils { class