/openjdk7/jdk/src/share/native/java/lang/fdlibm/src/ |
H A D | w_remainder.c | 28 * wrapper remainder(x,p) 34 double remainder(double x, double y) /* wrapper remainder */ function 36 double remainder(x,y) /* wrapper remainder */ 47 return __kernel_standard(x,y,28); /* remainder(x,0) */
|
/openjdk7/jdk/src/share/classes/sun/misc/ |
H A D | RegexpTarget.java | 38 * @param remainder the string that matched the * in the pattern. 40 Object found(String remainder); argument
|
/openjdk7/jdk/src/share/classes/sun/security/provider/ |
H A D | SecureRandom.java | 62 private byte[] remainder; field in class:SecureRandom 199 byte[] output = remainder; 207 // Use remainder from last time 240 // Store remainder for next time 241 remainder = output;
|
/openjdk7/jdk/src/share/native/java/lang/fdlibm/include/ |
H A D | jfdlibm.h | 59 #define remainder jremainder macro
|
/openjdk7/jdk/src/share/classes/sun/reflect/generics/parser/ |
H A D | SignatureParser.java | 106 private String remainder() { method in class:SignatureParser 125 "\n\tRemaining input: " + remainder()); 347 if (DEBUG) System.out.println("\t remainder: " + remainder());
|
/openjdk7/hotspot/src/os/bsd/vm/ |
H A D | perfMemory_bsd.cpp | 180 char* remainder = NULL; local 182 pid_t pid = (pid_t)strtol(filename, &remainder, 10); 191 if (remainder != NULL && *remainder != '\0') {
|
/openjdk7/hotspot/src/os/linux/vm/ |
H A D | perfMemory_linux.cpp | 180 char* remainder = NULL; local 182 pid_t pid = (pid_t)strtol(filename, &remainder, 10); 191 if (remainder != NULL && *remainder != '\0') {
|
/openjdk7/hotspot/src/os/solaris/vm/ |
H A D | perfMemory_solaris.cpp | 182 char* remainder = NULL; local 184 pid_t pid = (pid_t)strtol(filename, &remainder, 10); 193 if (remainder != NULL && *remainder != '\0') {
|
/openjdk7/hotspot/src/share/vm/gc_implementation/shared/ |
H A D | mutableNUMASpace.cpp | 712 size_t remainder = pointer_delta(s->end(), value); local 714 if (remainder < min_fill_size && remainder > 0) { 786 size_t remainder = s->free_in_words(); local 787 if (remainder < CollectedHeap::min_fill_size() && remainder > 0) { 828 size_t remainder = pointer_delta(s->end(), p + size); local 829 if (remainder < CollectedHeap::min_fill_size() && remainder > 0) {
|
/openjdk7/jdk/src/share/classes/java/math/ |
H A D | BigDecimal.java | 1407 * the passed in scale. If the remainder is not zero, it will be rounded 1408 * based on the passed in roundingMode. Also, if the remainder is zero and 1416 boolean isRemainderZero; // record remainder is zero or not 1418 long q = 0, r = 0; // store quotient & remainder in long 1420 MutableBigInteger mr = null; // store remainder 1433 // Descend into mutables for faster remainder checks 1778 * remainder has absolute value less than the divisor, the 1790 * the computed remainder will be less than the divisor. 1822 * <p>The remainder is given by 1832 public BigDecimal remainder(BigDecima method in class:BigDecimal 1862 public BigDecimal remainder(BigDecimal divisor, MathContext mc) { method in class:BigDecimal [all...] |
H A D | BigInteger.java | 47 * division of a negative by a positive yields a negative (or zero) remainder. 597 long r = p.remainder(SMALL_PRIME_PRODUCT).longValue(); 676 long r = result.remainder(SMALL_PRIME_PRODUCT).longValue(); 1085 // Copy remainder of longer number while carry propagation is required 1090 // Copy remainder of longer number 1147 // Subtract remainder of longer number while borrow propagates 1152 // Copy remainder of longer number 1351 * remainder computed. 1353 * is the initial element, and the remainder {@code (this % val)} 1372 * remainder compute 1376 public BigInteger remainder(BigInteger val) { method in class:BigInteger [all...] |
/openjdk7/hotspot/src/os/windows/vm/ |
H A D | perfMemory_windows.cpp | 184 char* remainder = NULL; local 186 int pid = (int)strtol(filename, &remainder, 10); 195 if (remainder != NULL && *remainder != '\0') {
|
/openjdk7/hotspot/src/share/vm/gc_implementation/parNew/ |
H A D | parNewGeneration.cpp | 125 // and push the remainder back onto queue 128 int remainder = end - start; local 130 if (remainder > 2 * ParGCArrayScanChunk) { 134 // Push remainder.
|
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/ |
H A D | g1CollectedHeap.cpp | 4171 // Print the remainder of the GC log output. 4805 int remainder = end - start; local 4807 if (remainder > 2 * ParGCArrayScanChunk) { 4810 // Push the remainder before we process the range in case another
|