Searched refs:nw (Results 1 - 9 of 9) sorted by relevance

/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileLog.cpp247 size_t nw; // number written in each pass of the following loop: local
248 for (bufp = buf; nr > 0; nr -= nw, bufp += nw) {
250 for (nw = 0; nw < nr; nw++) {
252 switch (bufp[nw]) {
263 // If we get here, nw is pointing at a bad '>'.
269 // Now nw is the number of characters to write, usually == nr.
270 file->write(bufp, nw);
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A DVDrawingArea.c175 SetValues(cw, rw, nw, args, num_args)
178 Widget nw;
183 VDrawingAreaWidget new_w = (VDrawingAreaWidget)nw;
H A Dawt_MToolkit.c544 struct WidgetInfo *nw = (struct WidgetInfo *) malloc(sizeof(struct WidgetInfo)); local
546 if (nw) {
547 nw->widget = w;
548 nw->origin = origin;
549 nw->peer = peer;
550 nw->event_mask = event_flags;
551 nw->next = awt_winfo;
552 awt_winfo = nw;
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DFileChannelImpl.java524 int nw = target.write(bb);
525 tw += nw;
526 if (nw != nr)
528 pos += nw;
634 int nw = write(bb, pos);
635 tw += nw;
636 if (nw != nr)
638 pos += nw;
/openjdk7/jdk/make/tools/src/build/tools/hasher/
H A DHasher.java153 int nw = keys.size();
155 for (int i = 0; i < nw; i++) {
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.cpp106 intptr_t nw = value ? (w | ~mr) : (w & mr); local
108 intptr_t res = Atomic::cmpxchg_ptr(nw, pw, w);
111 nw = value ? (w | ~mr) : (w & mr);
H A Dostream.cpp187 int nw = (count > 8) ? 8 : count; local
188 this->write(" ", nw);
189 count -= nw;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXDecoratedPeer.java139 int nw = (bounds.width < minWidth) ? minWidth : bounds.width;
141 if (nw != bounds.width || nh != bounds.height) {
142 setShellSize(new Rectangle(0, 0, nw, nh));
/openjdk7/jdk/src/share/classes/java/awt/
H A DWindow.java856 int nw = Math.max(width, minimumSize.width);
858 setSize(nw, nh);

Completed in 62 milliseconds