Searched refs:epsilon (Results 1 - 6 of 6) 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...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DJPEGMetadata.java1994 float epsilon = 0.005F;
2000 if (value <= epsilon) {
2022 while (delta > epsilon) { // not close enough
/openjdk7/hotspot/src/share/vm/opto/
H A Dblock.cpp234 const float epsilon = 0.05f;
235 const float guard_factor = PROB_UNLIKELY_MAG(4) / (1.f - epsilon);
249 // Use an epsilon value of 5% to allow for variability in frequency

Completed in 75 milliseconds