Searched refs:encodedLength (Results 1 – 1 of 1) sorted by relevance
214 int encodedLength = encoded.length; in decode() local215 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()