Searched refs:nh (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DClassWriter.java236 int nh = code.getHandlerCount();
237 writeShort(nh);
238 for (int i = 0; i < nh; i++) {
H A DClassReader.java459 int nh = readUnsignedShort();
460 code.setHandlerCount(nh);
461 for (int i = 0; i < nh; i++) {
H A DPackageReader.java1233 // We will read ms/ml/nh/flags from bands shortly.
1282 int nh = 0;
1285 nh += c.getHandlerCount();
1296 code_handler_bands[i].expectLength(nh);
/openjdk7/hotspot/src/share/vm/classfile/
H A DsystemDictionary.cpp498 instanceKlassHandle nh = instanceKlassHandle(); // null Handle local
517 CHECK_(nh));
537 return nh;
580 return (nh);
1179 instanceKlassHandle nh = instanceKlassHandle(); // null Handle local
1189 class_loader, Handle(), true, CHECK_(nh));
1202 resolve_super_or_fail(class_name, name, class_loader, Handle(), false, CHECK_(nh));
1224 m()->link_method(m, CHECK_(nh));
1233 ik->vtable()->initialize_vtable(false, CHECK_(nh));
1234 ik->itable()->initialize_itable(false, CHECK_(nh));
1253 instanceKlassHandle nh = instanceKlassHandle(); // null Handle local
1437 instanceKlassHandle nh = instanceKlassHandle(); // null Handle local
1510 THROW_OOP_(linkage_exception(), nh); // throws exception and returns local
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DSynchronousQueue.java303 boolean casHead(SNode h, SNode nh) { argument
305 UNSAFE.compareAndSwapObject(this, headOffset, h, nh);
615 * Tries to cas nh as new head; if successful, unlink
618 void advanceHead(QNode h, QNode nh) { argument
620 UNSAFE.compareAndSwapObject(this, headOffset, h, nh))
/openjdk7/hotspot/src/share/vm/opto/
H A DphaseX.cpp71 NodeHash::NodeHash(NodeHash *nh) { argument
74 *this = *nh;
75 // nh->_sentinel must be in the current node space
78 void NodeHash::replace_with(NodeHash *nh) { argument
81 *this = *nh;
82 // nh->_sentinel must be in the current node space
367 void NodeHash::operator=(const NodeHash& nh) { argument
369 if (&nh == this) return;
371 memcpy(this, &nh, sizeof(*this));
374 ((NodeHash*)&nh)
[all...]
H A DphaseX.hpp95 void replace_with(NodeHash* nh);
/openjdk7/jdk/src/share/classes/java/math/
H A DMutableBigInteger.java1002 int nh = rem.value[j+rem.offset];
1003 int nh2 = nh + 0x80000000;
1006 if (nh == dh) {
1008 qrem = nh + nm;
1011 long nChunk = (((long)nh) << 32) | (nm & LONG_MASK);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDecoratedPeer.java140 int nh = (bounds.height < minHeight) ? minHeight : bounds.height;
141 if (nw != bounds.width || nh != bounds.height) {
142 setShellSize(new Rectangle(0, 0, nw, nh));
/openjdk7/jdk/src/share/classes/java/util/
H A DGregorianCalendar.java1160 int nh = (h + amount) % unit;
1161 if (nh < 0) {
1162 nh += unit;
1164 time += ONE_HOUR * (nh - h);
H A DJapaneseImperialCalendar.java543 int nh = (h + amount) % unit;
544 if (nh < 0) {
545 nh += unit;
547 time += ONE_HOUR * (nh - h);
/openjdk7/jdk/src/share/classes/java/awt/
H A DWindow.java857 int nh = Math.max(height, minimumSize.height);
858 setSize(nw, nh);
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dunpack.cpp2694 int nh; local
2698 nh = 0;
2702 nh = 1;
2707 nh = 2;
2712 handler_count = nh;

Completed in 96 milliseconds