Searched defs:epsilon (Results 1 - 4 of 4) sorted by relevance

/openjdk7/hotspot/src/share/vm/gc_interface/
H A DcollectedHeap.cpp589 uintptr_t epsilon = (uintptr_t) MinObjAlignment; local
597 assert(heap_start >= ((uintptr_t)NULL + epsilon), "sanity");
598 void* before_heap = (void*)(heap_start - epsilon);
603 assert(heap_end <= ((uintptr_t)-1 - epsilon), "sanity");
604 void* after_heap = (void*)(heap_end + epsilon);
/openjdk7/hotspot/src/share/vm/ci/
H A DciMethod.cpp487 int epsilon = 0; local
493 epsilon = count;
500 int rcount = call->receiver_count(i) + epsilon;
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_PrintControl.cpp472 const double epsilon = 0.50; local
529 if ((fabs(origWid - widpts) < epsilon) &&
530 (fabs(origHgt - hgtpts) < epsilon)) {
H A Dawt_PrintJob.cpp754 const double epsilon = 0.10; local
834 if ((ix + epsilon) < imgX) {
837 if ((iy + epsilon) < imgY) {
840 if (iw + epsilon > imgWid) {
843 if (ih + epsilon > imgHgt) {
846 if ((ix + iw + epsilon) > (imgX+imgWid)) {
849 if ((iy + ih + epsilon) > (imgY+imgHgt)) {
3705 const double epsilon = 3.6; // (1/72) of an inch
3730 if ((fabs(origWid - paperWidth) < epsilon) &&
3731 (fabs(origHgt - paperHeight) < epsilon)
[all...]

Completed in 1130 milliseconds