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.java227 byte[] l_ascii = new byte[raw.length << 3]; in toAsciiBytes()
232 for (int ii = 0, jj = l_ascii.length - 1; ii < raw.length; ii++, jj -= 8) { in toAsciiBytes()
235 l_ascii[jj - bits] = '0'; in toAsciiBytes()
237 l_ascii[jj - bits] = '1'; in toAsciiBytes()
241 return l_ascii; in toAsciiBytes()
257 char[] l_ascii = new char[raw.length << 3]; in toAsciiChars() local
262 for (int ii = 0, jj = l_ascii.length - 1; ii < raw.length; ii++, jj -= 8) { in toAsciiChars()
265 l_ascii[jj - bits] = '0'; in toAsciiChars()
267 l_ascii[jj - bits] = '1'; in toAsciiChars()
271 return l_ascii; in toAsciiChars()