Home | History | Annotate | Download | only in ssl

Lines Matching full:olen

2175 +	   int oLen = ((iLen+2)/3)*4;         // output length including padding
2176 + char[] out = new char[oLen];
2222 + int oLen = (iLen*3) / 4;
2223 + byte[] out = new byte[oLen];
2243 + if (op<oLen) out[op++] = (byte)o1;
2244 + if (op<oLen) out[op++] = (byte)o2; }