Home
last modified time | relevance | path

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

/external/apache-http/src/org/apache/commons/codec/binary/
DBinaryCodec.java232 byte[] l_ascii = new byte[raw.length << 3]; in toAsciiBytes()
237 for (int ii = 0, jj = l_ascii.length - 1; ii < raw.length; ii++, jj -= 8) { in toAsciiBytes()
240 l_ascii[jj - bits] = '0'; in toAsciiBytes()
242 l_ascii[jj - bits] = '1'; in toAsciiBytes()
246 return l_ascii; in toAsciiBytes()
262 char[] l_ascii = new char[raw.length << 3]; in toAsciiChars() local
267 for (int ii = 0, jj = l_ascii.length - 1; ii < raw.length; ii++, jj -= 8) { in toAsciiChars()
270 l_ascii[jj - bits] = '0'; in toAsciiChars()
272 l_ascii[jj - bits] = '1'; in toAsciiChars()
276 return l_ascii; in toAsciiChars()