Home
last modified time | relevance | path

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

/cts/tests/tests/location/src/android/location/cts/asn1/base/
DAsn1GeneralString.java19 import static android.location.cts.asn1.base.PerAlignedUtils.SIXTYFOUR_K;
96 && maximumSize < SIXTYFOUR_K) { in encodePerImpl()
100 if (maximumSize >= SIXTYFOUR_K) { in encodePerImpl()
137 && maximumSize < SIXTYFOUR_K) { in decodePerImpl()
148 if (maximumSize >= SIXTYFOUR_K) { in decodePerImpl()
DAsn1BMPString.java19 import static android.location.cts.asn1.base.PerAlignedUtils.SIXTYFOUR_K;
95 && maximumSize < SIXTYFOUR_K) { in encodePerImpl()
99 if (maximumSize >= SIXTYFOUR_K) { in encodePerImpl()
152 && maximumSize < SIXTYFOUR_K) { in decodePerImpl()
160 if (maximumSize >= SIXTYFOUR_K) { in decodePerImpl()
DAsn1BitString.java19 import static android.location.cts.asn1.base.PerAlignedUtils.SIXTYFOUR_K;
113 if (maximumSize < SIXTYFOUR_K) { in encodePerImpl()
126 if (maximumSize >= SIXTYFOUR_K) { in encodePerImpl()
167 if (maximumSize < SIXTYFOUR_K) { in decodePerImpl()
179 if (maximumSize >= SIXTYFOUR_K) { in decodePerImpl()
DPerAlignedUtils.java33 public static final int SIXTYFOUR_K = 64 * ONE_K; field in PerAlignedUtils
59 Preconditions.checkArgument(range < SIXTYFOUR_K, "range >= 64K"); in encodeNormalizedSmallConstrainedWholeNumber()
109 if (range >= SIXTYFOUR_K) { in decodeNormalizedSmallConstrainedWholeNumber()
163 if (maximumLength >= SIXTYFOUR_K) { in encodeConstrainedLengthOfBytes()
187 if (maximumLength >= SIXTYFOUR_K) { in decodeConstrainedLengthOfBytes()
DAsn1OctetString.java19 import static android.location.cts.asn1.base.PerAlignedUtils.SIXTYFOUR_K;
94 if (maximumSize < SIXTYFOUR_K) { in encodePerImpl()
135 if (maximumSize < SIXTYFOUR_K) { in decodePerImpl()
DAsn1IA5String.java19 import static android.location.cts.asn1.base.PerAlignedUtils.SIXTYFOUR_K;
130 if (minimumSize == maximumSize && maximumSize < SIXTYFOUR_K) { in encodePerImpl()
134 if (maximumSize >= SIXTYFOUR_K) { in encodePerImpl()
211 if (maximumSize != null && minimumSize == maximumSize && maximumSize < SIXTYFOUR_K) { in decodePerImpl()
220 if (maximumSize != null && maximumSize >= SIXTYFOUR_K) { in decodePerImpl()
DPerUnalignedUtils.java21 import static android.location.cts.asn1.base.PerAlignedUtils.SIXTYFOUR_K;
124 if (maximumLength >= SIXTYFOUR_K) { in encodeConstrainedLengthOfBytes()
146 if (maximumLength >= SIXTYFOUR_K) { in decodeConstrainedLengthOfBytes()
DAsn1Integer.java19 import static android.location.cts.asn1.base.PerAlignedUtils.SIXTYFOUR_K;
62 if (range.compareTo(BigInteger.valueOf(SIXTYFOUR_K)) < 0) { in encodeNormalizedIntegerWithRangeAligned()
161 if (range.compareTo(BigInteger.valueOf(SIXTYFOUR_K)) < 0) { in decodeNormalizedIntegerWithRangeAligned()
DAsn1SequenceOf.java113 if (maximumSize == null || maximumSize >= PerAlignedUtils.SIXTYFOUR_K) { in encodePerImpl()
150 if (maximumSize == null || maximumSize >= PerAlignedUtils.SIXTYFOUR_K) { in decodePerImpl()
DAsn1Sequence.java163 if (bitFieldSize >= PerAlignedUtils.SIXTYFOUR_K) { in encodePerImpl()
275 if (bitFieldSize >= PerAlignedUtils.SIXTYFOUR_K) { in decodePerImpl()