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

/openjdk7/hotspot/src/share/vm/utilities/
H A Dexceptions.cpp53 const ByteSize offset2 = Thread::pending_exception_offset(); local
54 if (offset1 != offset2) fatal("ThreadShadow::_pending_exception is not positioned correctly");
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DName.java238 byte[] bytes2, int offset2, int length) {
240 while (i < length && bytes1[offset1 + i] == bytes2[offset2 + i]) {
237 equals(byte[] bytes1, int offset1, byte[] bytes2, int offset2, int length) argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DRegularExpression.java1754 abstract boolean regionMatches(boolean ignoreCase, int offset, int limit, int offset2, int partlen); argument
1782 int offset2, int partlen) {
1786 return (ignoreCase) ? target.regionMatches(true, offset, target, offset2, partlen)
1787 : target.regionMatches(offset, target, offset2, partlen);
1846 final boolean regionMatches(boolean ignoreCase, int offset, int limit, int offset2, int partlen) { argument
1850 return (ignoreCase) ? regionMatchesIgnoreCase(offset, limit, offset2, partlen)
1851 : regionMatches(offset, limit, offset2, partlen);
1854 private final boolean regionMatches(int offset, int limit, int offset2, int partlen) { argument
1855 int i = offset2;
1863 private final boolean regionMatchesIgnoreCase(int offset, int limit, int offset2, in argument
1781 regionMatches(boolean ignoreCase, int offset, int limit, int offset2, int partlen) argument
1938 regionMatches(boolean ignoreCase, int offset, int limit, int offset2, int partlen) argument
1946 regionMatches(int offset, int limit, int offset2, int partlen) argument
1956 regionMatchesIgnoreCase(int offset, int limit, int offset2, int partlen) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Difnode.cpp886 jint offset2; local
887 int flip2 = dom->as_If()->is_range_check(range2, index2, offset2);
893 off_lo = MIN2(off_lo,offset2);
894 off_hi = MAX2(off_hi,offset2);
H A DloopTransform.cpp1693 Node* offset2 = NULL; local
1696 p_offset != NULL ? &offset2 : NULL, depth+1)) {
1698 Node *ctrl_off2 = get_ctrl(offset2);
1699 Node* offset = new (C) AddINode(offset2, exp->in(2));

Completed in 240 milliseconds