Home | History | Annotate | Download | only in crypto

Lines Matching refs:ostart

90     private int ostart = 0;
99 * Entry condition: ostart = ofinish
101 * Exit condition: ostart <= ofinish
103 * return (ofinish-ostart) (we have this many bytes for you)
118 ostart = 0;
199 if (ostart >= ofinish) {
205 return ((int) obuffer[ostart++] & 0xff);
246 if (ostart >= ofinish) {
255 int available = ofinish - ostart;
258 System.arraycopy(obuffer, ostart, b, off, available);
260 ostart = ostart + available;
283 int available = ofinish - ostart;
290 ostart += n;
306 return (ofinish - ostart);
340 ostart = 0;