Searched refs:h1 (Results 1 - 25 of 31) sorted by relevance

12

/openjdk7/jdk/src/share/classes/sun/misc/
H A DHashing.java53 int h1 = seed;
70 h1 ^= k1;
71 h1 = Integer.rotateLeft(h1, 13);
72 h1 = h1 * 5 + 0xe6546b64;
94 h1 ^= k1;
100 h1 ^= len;
103 h1 ^= h1 >>> 1
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DaltHashing.cpp62 jint h1 = seed; local
80 h1 ^= k1;
81 h1 = Integer_rotateLeft(h1, 13);
82 h1 = h1 * 5 + 0xe6546b64;
104 h1 ^= k1;
109 h1 ^= len;
112 h1 ^= ((unsigned int)h1) >> 1
123 jint h1 = seed; local
171 jint h1 = seed; local
[all...]
/openjdk7/jdk/test/sun/security/tools/keytool/
H A Dfile-in-help.sh46 $TESTJAVA${FS}bin${FS}keytool -printcertreq -help 2> h1 || exit 1
49 grep "input file" h1 || exit 3
H A Dnewhelp.sh46 $TESTJAVA${FS}bin${FS}keytool -help 2> h1 || exit 1
49 grep Commands: h1 || exit 3
/openjdk7/jdk/test/java/util/Hashtable/
H A DSimpleSerialization.java46 Hashtable<String, String> h1 = new Hashtable<>();
50 h1.put("key", "value");
54 oos.writeObject(h1);
64 if(!h1.getClass().isInstance(deserializedObject)) {
65 throw new RuntimeException("Result not assignable to type of h1");
68 if (false == h1.equals(deserializedObject)) {
69 Hashtable<String, String> d1 = (Hashtable<String, String>) h1;
70 for(Map.Entry entry: h1.entrySet()) {
71 System.err.println("h1.key::" + entry.getKey() + " d1.containsKey()::" + d1.containsKey((String) entry.getKey()));
72 System.err.println("h1
[all...]
H A DSerializationDeadlock.java49 final Hashtable<Object, Object> h1 = new Hashtable<>();
54 h1.put(testStart, h2);
55 h2.put(testStart, h1);
58 final TestThread t1 = new TestThread(h1, testEnd);
65 // of the 'testStart' object (and hence of both 'h1' and 'h2')
69 // of 'h1' and 'h2'.
/openjdk7/jdk/test/java/io/File/
H A DHashCodeEquals.java39 int h1 = f1.hashCode();
41 if (h1 != h2)
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DTestLogging.java53 Handler h1 = new ConsoleHandler ();
54 h1.setLevel (Level.ALL);
55 logger.addHandler (h1);
/openjdk7/jdk/src/share/demo/applets/SortDemo/
H A DSortAlgorithm.java73 parent.pause(parent.h1, parent.h2);
H A DSortItem.java72 int h1 = -1; field in class:SortItem
128 h1 = H1;
158 h1 = h2 = -1;
222 if (h1 >= 0) {
224 y = deltaY + evenY + h1 * 2 + 1;
/openjdk7/jdk/test/javax/management/ObjectName/
H A DNullEmptyKeyValueTest.java148 Hashtable<String,String> h1 = new Hashtable<String,String>();
149 h1.put("k", "v");
161 error += createObjectName3(null, "d", h1);
162 error += createObjectName3(npec, null, h1);
163 error += createObjectName3(null, "", h1);
H A DValueWildcardTest.java218 Hashtable<String,String> h1 = new Hashtable<String,String>();
219 h1.put("k", "*");
220 error += createObjectName3("d", h1, false, true);
/openjdk7/jdk/src/share/instrument/
H A DPathCharsValidator.c189 int h1 = (int)(signed char)path[i+1]; local
191 if (h1 < 0 || h2 < 0) return -1;
192 if (!match(h1, L_HEX, H_HEX)) return -1;
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java3049 int h1 = 0;
3057 h1 ^= k1;
3058 h1 = (h1 << 13) | (h1 >>> 19);
3059 h1 = h1 * 5 + 0xe6546b64;
3066 h1 ^= SEED_MATERIAL.length * 4;
3069 h1 ^= h1 >>> 1
[all...]
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageLookUp_Bit.c453 mlib_u32 l0, h0, v0, l1, h1, v1, l2, h2, v2; local
469 h1 = (h0 >> 8); h1 |= (h1 << 24);
471 h2 = (h1 >> 8); h2 |= (h2 << 24);
476 h1 = (h0 << 8); h1 |= (h1 >> 24);
478 h2 = (h1 << 8); h2 |= (h2 >> 24);
491 v1 = (l1 &~ mask1) | (h1
[all...]
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DHttpNegotiateServer.java183 HttpServer h1 = httpd("Negotiate", false,
185 webPort = h1.getAddress().getPort();
212 if (h1 != null) h1.stop(0);
/openjdk7/jdk/src/share/demo/management/MemoryMonitor/
H A DMemoryMonitor.java307 int h1 = (int)(graphY + graphH * ((totalMemory -usedMem[npool][k-1])/totalMemory));
309 big.drawLine(j-1, h1, j, h2);
311 int h1 = (int)(graphY + graphH * ((totalMemory -usedMem[npool][k])/totalMemory));
312 big.fillRect(j, h1, 1, 1);
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileSystemProvider.java423 long h1 = 0L;
425 h1 = file1.openForReadAttributeAccess(true);
432 attrs1 = WindowsFileAttributes.readAttributes(h1);
454 CloseHandle(h1);
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DSerializedFormWriterImpl.java62 h1();
/openjdk7/jdk/test/java/net/CookieHandler/
H A DTestHttpCookie.java201 int h1 = ck1.hashCode();
203 if ((h1 == h2) != same) {
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlWriter.java515 public void h1() { method in class:HtmlWriter
532 public void h1(String text) { method in class:HtmlWriter
533 h1();
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/resources/
H A Dstylesheet.css34 h1 {
194 .indexHeader h1 {
463 h1.hidden {
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A Ddefault.css38 h1 {font-size: x-large;
/openjdk7/jdk/src/share/classes/java/net/
H A DHttpCookie.java863 int h1 = name.toLowerCase().hashCode();
867 return h1 + h2 + h3;
/openjdk7/jdk/test/java/nio/file/Path/
H A DPathOps.java665 int h1 = test("C:\\foo").path().hashCode();
667 if (h1 != h2)

Completed in 89 milliseconds

12