Searched defs:ofinish (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipherInputStream.java88 private int ofinish = 0; field in class:CipherInputStream
93 * Entry condition: ostart = ofinish
95 * Exit condition: ostart <= ofinish
97 * return (ofinish-ostart) (we have this many bytes for you)
115 ofinish = obuffer.length;
116 return ofinish;
124 ofinish = 0;
125 else ofinish = obuffer.length;
126 return ofinish;
174 if (ostart >= ofinish) {
[all...]

Completed in 23 milliseconds