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

/openjdk7/jdk/src/share/classes/javax/crypto/
H A DCipherInputStream.java86 private int ostart = 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)
114 ostart = 0;
122 ostart = 0;
174 if (ostart >= ofinish) {
180 return ((int) obuffer[ostart++] & 0xff);
221 if (ostart >= ofinish) {
230 int available = ofinish - ostart;
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.cpp522 address ostart = src->code_section(sect)->start(); local
524 return ostart + (newa - nstart);
538 address ostart = src->code_section(sect)->start(); local
540 return nstart + (olda - ostart);
/openjdk7/jdk/src/windows/bin/
H A Djava_md.c1404 char *ostart, *astart, **nargv; local
1428 ostart = stdargs[idx].arg;
1431 if (JLI_StrCmp(ostart, astart) != 0) {

Completed in 67 milliseconds