Home
last modified time | relevance | path

Searched refs:maxDistance (Results 1 – 16 of 16) sorted by relevance

/external/webkit/Tools/DumpRenderTree/win/
DImageDiffCairo.cpp98 static inline void normalizeBuffer(float maxDistance, unsigned char* buffer, size_t length) in normalizeBuffer() argument
100 if (maxDistance >= 1) in normalizeBuffer()
104 buffer[p] /= maxDistance; in normalizeBuffer()
121 float maxDistance = 0; in createDifferenceImage() local
136 if (distance > maxDistance) in createDifferenceImage()
137 maxDistance = distance; in createDifferenceImage()
157 normalizeBuffer(maxDistance, reinterpret_cast<unsigned char*>(diffBuffer), height * width); in createDifferenceImage()
/external/webkit/Source/WebCore/platform/audio/
DDistance.h59 void setMaxDistance(double maxDistance) { m_maxDistance = maxDistance; } in setMaxDistance() argument
63 double maxDistance() const { return m_maxDistance; } in maxDistance() function
/external/webkit/Source/WebCore/webaudio/
DAudioPannerNode.h96 float maxDistance() { return static_cast<float>(m_distanceEffect.maxDistance()); } in maxDistance() function
97 void setMaxDistance(float maxDistance) { m_distanceEffect.setMaxDistance(maxDistance); } in setMaxDistance() argument
DAudioPannerNode.idl47 attribute float maxDistance;
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
DAudioNode.java77 protected float maxDistance = 200; // 200 meters field in AudioNode
538 return maxDistance; in getMaxDistance()
556 public void setMaxDistance(float maxDistance) { in setMaxDistance() argument
557 if (maxDistance < 0) { in setMaxDistance()
561 this.maxDistance = maxDistance; in setMaxDistance()
744 oc.write(maxDistance, "max_distance", 20); in write()
778 maxDistance = ic.readFloat("max_distance", 20); in read()
/external/webkit/Source/WebCore/page/
DSpatialNavigation.h41 inline long long maxDistance() in maxDistance() function
107 , distance(maxDistance()) in FocusCandidate()
108 , parentDistance(maxDistance()) in FocusCandidate()
DSpatialNavigation.cpp62 , distance(maxDistance()) in FocusCandidate()
63 , parentDistance(maxDistance()) in FocusCandidate()
DFocusController.cpp453 if (candidate.distance == maxDistance()) in updateFocusCandidateIfNeeded()
/external/webkit/Tools/DumpRenderTree/cg/
DImageDiffCG.cpp112 float maxDistance = 0.0f; in createDifferenceImage() local
129 if (distance > maxDistance) in createDifferenceImage()
130 maxDistance = distance; in createDifferenceImage()
147 if (maxDistance < 1.0f) { in createDifferenceImage()
150 diff[p] = diff[p] / maxDistance; in createDifferenceImage()
/external/jmonkeyengine/engine/src/core/com/jme3/input/
DChaseCamera.java58 protected float maxDistance = 40.0f; field in ChaseCamera
294 if (targetDistance > maxDistance) { in zoomCamera()
295 targetDistance = maxDistance; in zoomCamera()
486 return maxDistance; in getMaxDistance()
493 public void setMaxDistance(float maxDistance) { in setMaxDistance() argument
494 this.maxDistance = maxDistance; in setMaxDistance()
563 capsule.write(maxDistance, "maxDistance", 40); in write()
574 maxDistance = ic.readFloat("maxDistance", 40); in read()
/external/webkit/Tools/DumpRenderTree/qt/
DImageDiff.cpp96 qreal maxDistance = 0; in main() local
112 maxDistance = qMax(maxDistance, distance); in main()
/external/replicaisland/src/com/replica/replicaisland/
DSphereCollisionVolume.java118 final float maxDistance = mRadius + otherRadius; in intersects() local
120 final float maxDistance2 = (maxDistance * maxDistance); in intersects()
/external/webkit/Tools/DumpRenderTree/gtk/
DImageDiff.cpp105 float maxDistance = 0; in calculateDifference() local
127 maxDistance = max<float>(maxDistance, distance); in calculateDifference()
/external/webkit/Source/WebCore/css/
DCSSGradientValue.cpp693 float maxDistance = topLeftDistance; in distanceToFarthestCorner() local
694 if (topRightDistance > maxDistance) { in distanceToFarthestCorner()
695 maxDistance = topRightDistance; in distanceToFarthestCorner()
699 if (bottomLeftDistance > maxDistance) { in distanceToFarthestCorner()
700 maxDistance = bottomLeftDistance; in distanceToFarthestCorner()
704 if (bottomRightDistance > maxDistance) { in distanceToFarthestCorner()
705 maxDistance = bottomRightDistance; in distanceToFarthestCorner()
708 return maxDistance; in distanceToFarthestCorner()
/external/webkit/Source/WebCore/
DChangeLog-2010-05-2439806 (WebCore::maxDistance):
DChangeLog-2010-12-0639903 (WebCore::AudioPannerNode::maxDistance):
62578 (WebCore::DistanceEffect::maxDistance):