Searched defs:diff (Results 1 - 25 of 33) sorted by relevance

12

/openjdk7/jdk/test/tools/pack200/pack200-verifier/src/sun/tools/pack/verify/
H A DVerifyTreeSet.java41 public TreeSet<K> diff(TreeSet in) { method in class:VerifyTreeSet
/openjdk7/langtools/test/tools/javap/classfile/deps/
H A DT6907575.java52 diff(sw.toString().replaceAll("[\r\n]+", "\n"), ref);
55 void diff(String actual, String ref) throws Exception { method in class:T6907575
/openjdk7/hotspot/src/share/vm/gc_implementation/g1/
H A Dg1MonitoringSupport.cpp242 uint diff = young_region_num - _young_region_num; local
243 _eden_used += (size_t) diff * HeapRegion::GrainBytes;
H A DsurvRateGroup.hpp68 double diff = (double) (age - _stats_arrays_length + 1); local
69 return _accum_surv_rate_pred[_stats_arrays_length-1] + diff * _last_pred;
H A Dg1MMUTracker.cpp130 double diff = target_time + gc_time - _max_gc_time; local
131 if (!is_double_leq_0(diff)) {
132 target_time -= diff;
167 double diff = gc_time + adjusted_pause_time - max_gc_time(); local
168 if (is_double_leq_0(diff))
176 diff -= elem->duration();
178 diff -= elem->end_time() - limit;
179 if (is_double_leq_0(diff))
180 return elem->end_time() + diff + _time_slice - adjusted_pause_time - current_time;
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/solaris/native/sun/nio/ch/
H A DEPollArrayWrapper.c50 int diff; local
61 diff = now - start;
62 remaining -= diff;
63 if (diff < 0 || remaining <= 0) {
H A DPollArrayWrapper.c47 int diff; local
58 diff = now - start;
59 remaining -= diff;
60 if (diff < 0 || remaining <= 0) {
H A DDevPollArrayWrapper.c79 int diff; local
91 diff = now - start;
92 remaining -= diff;
93 if (diff < 0 || remaining <= 0) {
/openjdk7/langtools/test/tools/javac/4241573/
H A DT4241573.java93 throw new Exception("unexpected files found: " + diff(found, expect));
95 throw new Exception("expected files not found: " + diff(expect, found));
215 <T> Set<T> diff(Set<T> a, Set<T> b) { method in class:T4241573
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/
H A DDSO.java157 protected ClosestSymbol createClosestSymbol(String name, long diff) { argument
158 return new ClosestSymbol(name, diff);
/openjdk7/hotspot/src/share/vm/services/
H A DmemReporter.hpp61 virtual void diff_num_of_classes(size_t classes, int diff) = 0;
62 virtual void diff_num_of_threads(size_t threads, int diff) = 0;
150 // diff two unsigned values in current memory scale
152 // diff two unsigned value
153 int diff(size_t value1, size_t value2) const;
217 void diff_num_of_classes(size_t classes, int diff) { argument
219 _num_of_classes_diff = diff;
222 void diff_num_of_threads(size_t threads, int diff) { argument
224 _num_of_threads_diff = diff;
H A DmemReporter.cpp141 diff(cur.number_of_classes(), prev.number_of_classes()));
143 diff(cur.number_of_threads(), prev.number_of_threads()));
168 diff(cur.malloc_count(type), prev.malloc_count(type)),
170 diff(cur.arena_count(type), prev.arena_count(type)));
198 diff(cur_malloc_callsite->count(), 0));
206 diff(0, prev_malloc_callsite->count()));
217 diff(cur_malloc_callsite->count(), 0));
224 diff(0, prev_malloc_callsite->count()));
232 diff(cur_malloc_callsite->count(), prev_malloc_callsite->count()));
283 int BaselineReporter::diff(size_ function in class:BaselineReporter
[all...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DnumberSeq.cpp45 double diff = val - _davg; local
46 _dvariance = (1.0 - _alpha) * diff * diff + _alpha * _dvariance;
/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/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/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/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/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/solaris/native/sun/awt/
H A DmultiVis.c399 int32_t diff; local
456 diff = bbox.x - vis_reg->rects[rect].x1;
457 srcRect_x = MAX( 0, diff) + (vis_reg->rects[rect].x1 - reg->x_rootrel - reg->border);
458 dst_x = MAX( 0, -diff) ;
459 diff = bbox.y - vis_reg->rects[rect].y1;
460 srcRect_y = MAX( 0, diff) + (vis_reg->rects[rect].y1 - reg->y_rootrel - reg->border);
461 dst_y = MAX( 0, -diff) ;
507 int32_t diff ; local
548 diff = bbox.x - reg->x_vis;
549 srcRect_x = MAX( 0, diff)
[all...]
/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/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/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/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);

Completed in 103 milliseconds

12