Home | History | Annotate | Download | only in ssl

Lines Matching full:olen

4747 +	   int oLen = ((iLen+2)/3)*4;         // output length including padding
4748 + char[] out = new char[oLen];
4794 + int oLen = (iLen*3) / 4;
4795 + byte[] out = new byte[oLen];
4815 + if (op<oLen) out[op++] = (byte)o1;
4816 + if (op<oLen) out[op++] = (byte)o2; }