Searched refs:length1 (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/java/util/zip/
H A DDataDescriptor.java76 int length1 = zipbytes1.length;
77 System.out.println("zip bytes pre-copy length=" + length1);
93 equal(length1, length2);
107 equal(length1, length3);
/openjdk7/hotspot/src/share/vm/utilities/
H A Dutf8.hpp55 static bool equal(const jbyte* base1, int length1, const jbyte* base2,int length2);
H A Dutf8.cpp175 bool UTF8::equal(const jbyte* base1, int length1, const jbyte* base2, int length2) { argument
177 if (length1 != length2) return false;
178 for (int i = 0; i < length1; i++) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DByteVector.java317 int length1 = 2 * data.length;
319 byte[] newData = new byte[length1 > length2 ? length1 : length2];
/openjdk7/jdk/src/share/classes/sun/reflect/
H A DReflection.java244 int length1 = lastDot1 - idx1;
247 if (length1 != length2) {
250 return name1.regionMatches(false, idx1, name2, idx2, length1);
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DNormalizerImpl.java2160 int length1, length2;
2162 length1 = s1Limit - s1Start;
2167 if(length1<length2) {
2169 limit1=start1+length1;
2170 } else if(length1==length2) {
2172 limit1=start1+length1;
2173 } else /* length1>length2 */ {
2198 limit1=start1+length1;
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceKlass.cpp2077 int length1 = last_slash1 - name1; local
2080 return UTF8::equal(name1, length1, name2, length2);

Completed in 50 milliseconds