/libcore/ojluni/src/main/java/javax/crypto/ |
CipherInputStream.java | 86 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...] |
/frameworks/base/core/java/android/text/ |
Selection.java | 72 int ostart = getSelectionStart(text); local 75 if (ostart != start || oend != stop) {
|
SpannableStringInternal.java | 183 int ostart = data[i * COLUMNS + START]; local 190 sendSpanChanged(what, ostart, oend, nstart, nend); 224 int ostart = data[i * COLUMNS + START]; local 235 sendSpanRemoved(what, ostart, oend);
|
SpannableStringBuilder.java | 248 int ostart = mSpanStarts[i]; local 251 if (ostart > mGapStart) 252 ostart -= mGapLength; 259 sendSpanRemoved(what, ostart, oend); 728 int ostart = mSpanStarts[i]; local 731 if (ostart > mGapStart) 732 ostart -= mGapLength; 742 sendSpanChanged(what, ostart, oend, nstart, nend); [all...] |
/toolchain/binutils/binutils-2.25/bfd/ |
coffgen.c | 233 bfd_vma ostart = bfd_get_start_address (abfd); local 305 bfd_get_start_address (abfd) = ostart; [all...] |