Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/libcore/util/
DHexEncoding.java214 int encodedLength = encoded.length; in decode() local
215 int resultLengthBytes = (encodedLength + 1) / 2; in decode()
221 if ((encodedLength % 2) != 0) { in decode()
228 if ((encodedLength % 2) != 0) { in decode()
229 throw new IllegalArgumentException("Invalid input length: " + encodedLength); in decode()
233 for (; i < encodedLength; i += 2) { in decode()