Searched refs:ostart (Results 1 - 5 of 5) 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) {
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTabbedPaneUI.java925 int ostart;
933 ostart = tabRect.y + tabRect.height;
941 ostart = tabRect.x + tabRect.width;
952 xp[pcnt] = ostart;
954 xp[pcnt] = ostart;
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneCopyFromBasicUI.java874 int ostart = 0;
882 ostart = tabRect.y + tabRect.height;
890 ostart = tabRect.x + tabRect.width;
901 xp[pcnt] = ostart;
903 xp[pcnt] = ostart;

Completed in 62 milliseconds