Searched defs:nr (Results 1 - 14 of 14) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpPduBulkType.java43 * @param nr Non repeaters.
45 public void setNonRepeaters(int nr); argument
H A DSnmpScopedPduBulk.java70 * @param nr Non repeaters.
72 public void setNonRepeaters(int nr) { argument
73 nonRepeaters = nr;
/openjdk7/jdk/src/share/classes/sun/awt/
H A DAWTCharset.java106 private String nr; field in class:AWTCharset.Decoder
/openjdk7/hotspot/test/compiler/8005956/
H A DPolynomialRoot.java456 static String getRootsTXT(int nr,final double [] re,final double [] im) argument
459 for(int k=0;k<nr;k++)
/openjdk7/hotspot/src/share/vm/prims/
H A Dwhitebox.cpp67 size_t nr = g1->free_regions(); variable
68 return (jlong)nr;
/openjdk7/hotspot/src/share/vm/compiler/
H A DcompileLog.cpp220 size_t nr; // number read into buf from partial log local
225 nr = (size_t)to_read;
226 else nr = buflen;
227 nr = read(partial_fd, buf, (int)nr);
228 if (nr <= 0) break;
229 to_read -= (julong)nr;
230 file->write(buf, nr);
236 while ((nr = read(partial_fd, buf, buflen)) > 0) {
243 // { file->write(buf, nr); }
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/internal/
H A DServerNotifForwarder.java272 NotificationResult nr;
275 nr = notifBuffer.fetchNotifications(bufferFilter,
278 snoopOnUnregister(nr);
280 nr = new NotificationResult(0L, 0L, new TargetedNotification[0]);
284 logger.trace("fetchNotifs", "Forwarding the notifs: "+nr);
287 return nr;
294 private void snoopOnUnregister(NotificationResult nr) { argument
299 for (TargetedNotification tn : nr.getTargetedNotifications()) {
/openjdk7/hotspot/src/share/vm/adlc/
H A Dfilebuff.cpp133 FileBuffRegion *nr = br->_next; // Get rest of region local
136 if( nr ) merge( nr ); // Merge with rest of region
140 FileBuffRegion *nr = new FileBuffRegion(_bfr,_sol,_line,_offset,_length); local
141 nr->_next = _next; // Structure copy "this" guy to "nr"
145 merge( nr ); // Finish merging
152 FileBuffRegion *nr = br->_next; // Get rest of region local
155 if( nr ) merge( nr ); // Merg
[all...]
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dmain.cpp94 int nr = 0; local
96 nr = (int)fread(bufptr, 1, readlen, u->infileptr);
100 nr = (int)read(u->infileno, bufptr, readlen);
102 nr = (int)fread(bufptr, 1, readlen, stdin);
105 if (nr <= 0) {
108 nr = 0;
110 numread += nr;
111 bufptr += nr;
122 jlong nr = (u->read_input_fn)(u, peek, peeklen, peeklen); local
123 if (nr !
[all...]
H A Dzip.cpp455 int nr = readlen - zs.avail_out; local
456 numread += nr;
457 bufptr += nr;
557 jlong nr = ((unpacker::read_input_fn_t)read_input_fn)
559 if ((size_t)nr != buflen)
H A Dunpack.cpp353 jlong nr = (*read_input_fn)(this, rplimit, fetch, remaining); local
354 if (nr <= 0) {
357 remaining -= nr;
358 rplimit += nr;
359 fetch -= nr;
360 bytes_read += nr;
/openjdk7/hotspot/src/share/vm/opto/
H A Dparse2.cpp547 int nr = hi - lo + 1; local
549 SwitchRange* mid = lo + nr/2;
551 if (nr > 3 && !mid->is_singleton() && (mid-1)->is_singleton()) mid--;
554 assert(nr != 2 || mid == hi, "should pick higher of 2");
555 assert(nr != 3 || mid == hi-1, "should pick middle of 3");
/openjdk7/hotspot/src/os/bsd/vm/
H A Dos_bsd.cpp1415 int nr; local
1473 &nr, /* 7 %d */
/openjdk7/hotspot/src/os/linux/vm/
H A Dos_linux.cpp1223 int nr; local
1281 &nr, /* 7 %d */

Completed in 1657 milliseconds