Searched defs:nw (Results 1 - 4 of 4) 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/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/native/sun/awt/
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;

Completed in 672 milliseconds