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

123456

/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackage.java396 // diff = (I+A) - (I*A)
431 List<InnerClass> diff = computeICdiff();
433 List<InnerClass> localICs; // will be the diff, modulo edge cases
434 if (diff.isEmpty()) {
435 // No diff, so transmit no attribute.
448 // Transmit a non-empty diff, which will create
450 localICs = diff;
477 // It was a non-empty diff, but the local ICs were absent.
481 // Non-trivial diff was transmitted.
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1CollectorPolicy.cpp626 uint diff = (max_young_length - min_young_length) / 2;
627 while (diff > 0) {
628 uint young_length = min_young_length + diff;
636 diff = (max_young_length - min_young_length) / 2;
1667 // This is defensive. The diff should in theory be always positive
H A DconcurrentMark.hpp107 int heapWordDiffToOffsetDiff(size_t diff) const;
H A DconcurrentMark.cpp108 int CMBitMapRO::heapWordDiffToOffsetDiff(size_t diff) const {
109 assert((diff & ((1 << _shifter) - 1)) == 0, "argument check");
110 return (int) (diff >> _shifter);
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java1368 ImageCanvas diff; field in class:RenderClipTest.ErrorWindow
1376 diff = new ImageCanvas();
1382 addImagePanel(diff, "Difference");
1400 diff.setDiff(reference.getImage(), imgtst);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DFlow.java1083 List<Type> rethrownTypes = chk.diff(thrownInTry, caughtInTry);
1126 thrown = chk.union(thrown, chk.diff(thrownInTry, caughtInTry));
1143 thrown = chk.union(thrown, chk.diff(thrownInTry, caughtInTry));
1167 if (chk.diff(catchableThrownTypes, caughtInTry).isEmpty() &&
H A DCheck.java1232 List<Type> diff(List<Type> ts1, List<Type> ts2) { method in class:Check
1675 log.error(pos, "types.incompatible.diff.ret",
2219 log.error(pos, "cant.inherit.diff.arg",
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXListPeer.java1162 int diff = (e - s) + 1;
1165 selected[i] -= diff;
1188 vsb.setValue(e+1 - diff);
1190 vsb.setValue(vsb.getValue() - diff);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationImpl.java1450 long diff = getCalendarTimeInMillis(c) - getCalendarTimeInMillis(startTimeInstant);
1451 int days = (int) (diff / (1000L * 60L * 60L * 24L));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DCode.java1864 Bits diff = state.defined.dup().xorSet(newDefined);
1865 for (int adr = diff.nextBit(0);
1867 adr = diff.nextBit(adr+1)) {
/openjdk7/hotspot/src/share/vm/opto/
H A Doutput.cpp515 int diff = br_size - new_size; local
516 assert(diff >= (int)nop_size, "short_branch size should be smaller");
523 diff -= nop_size;
525 adjust_block_start += diff;
H A Dblock.cpp1124 int diff = tr0->first_block()->_rpo - tr1->first_block()->_rpo;
1126 return diff;
H A Dloopnode.cpp1776 Node* diff = new (C) SubINode(init2, ratio_init); local
1777 _igvn.register_new_node_with_optimizer(diff, init2);
1778 set_early_ctrl(diff);
1782 Node* add = new (C) AddINode(ratio_idx, diff);
H A Dsuperword.cpp688 int diff = p2.offset_in_bytes() - p1.offset_in_bytes(); local
689 return diff == data_size(s1);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsynchronizer.cpp1678 size_t diff = mon - blk; local
1679 assert((diff % sizeof(ObjectMonitor)) == 0, "check");
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWPathGraphics.java853 double diff = Math.abs(gdiAdvance-jdkAdvance);
858 return diff <= 1 || ratio < 1.002;
/openjdk7/hotspot/src/share/vm/memory/
H A Duniverse.cpp1436 uintptr_t diff = max ^ min;
1438 // throw away enough low-order bits to make the diff vanish
1440 while ((mask & diff) != 0)
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java1205 int diff = columnCount - (columnCount * rowsPerColumn -
1208 if (column >= diff) {
/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepGeneration.hpp156 size_t heapWordDiffToOffsetDiff(size_t diff) const;
/openjdk7/hotspot/src/os/solaris/vm/
H A Dos_solaris.cpp3734 hrtime_t diff = getTimeNanos() - last_time; local
3736 if (diff < DontYieldALotInterval * 1000000)
3739 last_time += diff;
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DCSS.java564 int relSize, absSize, diff;
763 int relSize, absSize, diff, index;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DsharedRuntime_sparc.cpp3284 int diff = (callee_locals - callee_parameters) * Interpreter::stackElementWords; local
3285 return round_to(diff, WordsPerLong);

Completed in 225 milliseconds

123456