Searched refs:sourceOffset (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/common/
H A DReaderUtil.java43 private static void computeUpdatedPixels(int sourceOffset, argument
56 // dst = destinationOffset + (src - sourceOffset)/sourceSubsampling
59 // src - sourceOffset == 0 (mod sourceSubsampling)
65 // src >= sourceOffset
66 // src < sourceOffset + sourceExtent
72 // dst = destinationOffset + (src - sourceOffset)/sourceSubsampling
80 // between passStart and sourceOffset. Since we only have to do this
91 if (src < sourceOffset) {
94 if ((src - sourceOffset) % sourceSubsampling != 0) {
97 if (src >= sourceOffset
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DMessageFormat.java957 int sourceOffset = pos.index;
963 source, sourceOffset, len)) {
964 sourceOffset += len;
967 pos.errorIndex = sourceOffset;
983 sourceOffset);
987 pos.errorIndex = sourceOffset;
990 String strValue= source.substring(sourceOffset,next);
993 = source.substring(sourceOffset,next);
994 sourceOffset = next;
997 tempStatus.index = sourceOffset;
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java1708 * @param sourceOffset offset of the source string.
1715 static int indexOf(char[] source, int sourceOffset, int sourceCount, argument
1729 int max = sourceOffset + (sourceCount - targetCount);
1731 for (int i = sourceOffset + fromIndex; i <= max; i++) {
1746 return i - sourceOffset;
1799 * @param sourceOffset offset of the source string.
1806 static int lastIndexOf(char[] source, int sourceOffset, int sourceCount, argument
1827 int min = sourceOffset + targetCount - 1;
1848 return start - sourceOffset + 1;
/openjdk7/hotspot/src/share/vm/opto/
H A Dlibrary_call.cpp1187 // int sourceOffset = string_object.offset;
1192 // int sourceEnd = sourceOffset + sourceCount - targetCountLess1;
1199 // for (int i = sourceOffset; i < sourceEnd; ) {
1209 // // (sourceOffset - targetCountLess1) to (sourceOffset + sourceCount)
1222 // return i - sourceOffset;
1243 Node* sourceOffset = load_String_offset(no_ctrl, string_object); local
1261 Node* sourceEnd = __ SubI(__ AddI(sourceOffset, sourceCount), targetCountLess1);
1268 __ loop(this, nargs, i, sourceOffset, BoolTest::lt, sourceEnd); {
1290 __ set(rtn, __ SubI(__ value(i), sourceOffset)); _
[all...]

Completed in 41 milliseconds