Searched refs:diff (Results 101 - 125 of 147) sorted by relevance

123456

/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DBorderedComponent.java350 int diff;
359 diff = Math.max(0, ascent/2 + TEXT_SPACING - EDGE_SPACING);
360 grooveRect.y += diff;
361 grooveRect.height -= diff;
/openjdk7/make/scripts/
H A Dupdate_copyright_year.sh84 if ! diff -b -w $1.OLD $1 > /dev/null ; then \
/openjdk7/langtools/test/com/sun/javadoc/lib/
H A DJavadocTester.java43 * and diff the pairs.
294 * Iterate through the list of given file pairs and diff each file.
296 * @param filePairs the pairs of files to diff.
305 * Iterate through the list of given file pairs and diff each file.
307 * @param filePairs the pairs of files to diff.
316 diff(filePairs[i][0], filePairs[i][1], throwErrorIfNoMatch);
420 public boolean diff(String file1, String file2, boolean throwErrorIFNoMatch) throws Error { method in class:JavadocTester
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DExchangeImpl.java306 int diff = slen + extra - rspbuf.length;
307 rspbuf = new byte [2* (rspbuf.length + diff)];
/openjdk7/jdk/src/share/classes/sun/misc/
H A DFloatingDecimal.java1542 FDBigInt diff;
1547 diff = bigB.sub( bigD );
1556 // must scale diff in other direction.
1558 diff.lshiftMe( 1 );
1563 diff = bigD.sub( bigB );
1570 if ( (cmpResult = diff.cmp( halfUlp ) ) < 0 ){
2805 long diff = 0L;
2807 diff += ((long)data[i]&0xffffffffL) - q*((long)S.data[i]&0xffffffffL);
2808 data[i] = (int)diff;
2809 diff >>
[all...]
H A DFormattedFloatingDecimal.java1448 FDBigInt diff;
1453 diff = bigB.sub( bigD );
1462 // must scale diff in other direction.
1464 diff.lshiftMe( 1 );
1469 diff = bigD.sub( bigB );
1476 if ( (cmpResult = diff.cmp( halfUlp ) ) < 0 ){
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableHeaderUI.java557 int diff = newWidth - oldWidth;
558 int newHeaderWidth = table.getWidth() + diff;
562 tableSize.width += diff;
573 p.x + diff));
575 return diff;
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c3314 mp_digit mp_i, diff, borrow;
3318 *pmp++ = diff = mp_i - d;
3319 borrow = (diff > mp_i);
3322 *pmp++ = diff = mp_i - borrow;
3323 borrow = (diff > mp_i);
3756 mp_digit d, diff, borrow = 0; local
3775 diff = d - *pb++;
3776 d = (diff > d); /* detect borrow */
3777 if (borrow && --diff == MP_DIGIT_MAX)
3779 *pa++ = diff;
3822 mp_digit d, diff, borrow = 0; local
[all...]
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DScheduledThreadPoolExecutor.java242 long diff = time - x.time;
243 if (diff < 0)
245 else if (diff > 0)
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsInternalFrameTitlePane.java520 int diff = Math.abs(iconSize - size);
521 if (diff < minDiff) {
522 minDiff = diff;
/openjdk7/jdk/src/share/native/sun/awt/image/
H A Dawt_parseImage.c689 int diff; local
697 diff = rasterP->chanOffsets[i]-low;
698 if (diff < hintP->numChans) {
699 if (bits & (1<<diff)) {
704 bits |= (1<<diff);
706 else if (diff >= rasterP->width) {
/openjdk7/corba/make/common/shared/
H A DDefs-utils.gmk92 DIFF = $(UTILS_USR_BIN_PATH)diff
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/windbg/
H A DWindbgDebuggerLocal.java693 private ClosestSymbol createClosestSymbol(String symbol, long diff) { argument
694 return new ClosestSymbol(symbol, diff);
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DJavaSoundAudioClip.java142 long diff = currentTime - lastPlayCall;
143 if (diff < MINIMUM_PLAY_DELAY) {
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dframe_x86.cpp531 int diff = (method->max_locals() - method->size_of_parameters()) * local
533 return _fp == (fp - diff);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaComboBoxPopup.java370 final int diff = (buttonSize - elementSize) / 2 + insets.top;
371 popupBounds.y += diff - FOCUS_RING_PAD_BOTTOM;
/openjdk7/jdk/test/java/nio/file/Files/
H A DFileAttributes.java57 long diff = Math.abs(t1.toMillis() - t2.toMillis());
58 assertTrue(diff <= 1000);
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A DheapRegion.cpp460 size_t diff = pointer_delta(high, low); local
466 HeapWord* middle = low + (diff+1)/2;
874 size_t diff = pointer_delta(the_end, p) / 2; local
875 HeapWord* addr_3 = p + diff;
879 gclog_or_tty->print_cr("BOT look up for top + diff: "PTR_FORMAT" "
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageColorTrue2Index.c2158 mlib_s32 i, k, k_min, min_dist, diff, mask; \
2182 diff = ( mlib_s32 )dist - min_dist; \
2183 mask = diff >> 31; \
2184 min_dist += diff & mask; \
2193 mlib_s32 i, k, k_min, min_dist, diff, mask; \
2221 diff = ( mlib_s32 )dist - min_dist; \
2222 mask = diff >> 31; \
2223 min_dist += diff & mask; \
2471 mlib_s32 i, k, k_min, min_dist, diff, mask; \
2496 diff
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscnvrt.c317 cmsFloat64Number diff = 0; local
327 diff += fabs(((cmsFloat64Number*)m)[i] - ((cmsFloat64Number*)&Ident)[i]);
330 diff += fabs(((cmsFloat64Number*)off)[i]);
333 return (diff < 0.002);
H A Dcmsgamma.c1044 int diff; local
1050 diff = abs((int) Curve->Table16[i] - (int) _cmsQuantizeVal(i, Curve ->nEntries));
1051 if (diff > 0x0f)
/openjdk7/jdk/make/common/shared/
H A DDefs-utils.gmk107 DIFF = $(UTILS_USR_BIN_PATH)diff
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_MenuItem.cpp569 int diff = max(rect.bottom - rect.top - width, 0) ; local
570 int bottom = diff / 2;
572 rect.top += diff - bottom;
/openjdk7/hotspot/agent/src/os/solaris/proc/
H A Dsaproc.cpp1116 jlong diff = address - baseAddress; local
1117 jlong bytesToRead = MIN2(numBytes, usedSize - diff);
1118 off_t offset = pheader->_space[m]._file_offset + off_t(diff);
/openjdk7/hotspot/src/share/vm/code/
H A Ddependencies.cpp246 int diff = p1[i]->ident() - p2[i]->ident(); local
247 if (diff != 0) return diff;

Completed in 113 milliseconds

123456