Home
last modified time | relevance | path

Searched defs:distance (Results 1 – 25 of 136) sorted by relevance

123456

/external/webkit/Source/WebCore/platform/audio/
DDistance.cpp51 double DistanceEffect::gain(double distance) in gain()
76 double DistanceEffect::linearGain(double distance) in linearGain()
81 double DistanceEffect::inverseGain(double distance) in inverseGain()
86 double DistanceEffect::exponentialGain(double distance) in exponentialGain()
/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
DAreaUtils.java59 public static float calcScreenArea(BoundingVolume bound, float distance, float screenWidth) { in calcScreenArea()
68 private static float calcScreenArea(BoundingSphere bound, float distance, float screenWidth) { in calcScreenArea()
78 private static float calcScreenArea(BoundingBox bound, float distance, float screenWidth) { in calcScreenArea()
/external/skia/tests/
DPathCoverageTest.cpp48 static inline uint32_t estimate_pointCount(int distance) { in estimate_pointCount()
70 int distance = estimate_distance(points); in quadraticPointCount_EE() local
75 int distance = estimate_distance(points); in quadraticPointCount_EC() local
80 SkScalar distance = compute_distance(points); in quadraticPointCount_CE() local
85 SkScalar distance = compute_distance(points); in quadraticPointCount_CC() local
/external/openfst/src/script/
Dshortest-distance.cc25 void ShortestDistance(const FstClass &fst, vector<WeightClass> *distance, in ShortestDistance()
34 void ShortestDistance(const FstClass &ifst, vector<WeightClass> *distance, in ShortestDistance()
Dshortest-path.cc25 vector<WeightClass> *distance, in ShortestPath()
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
DCollisionResult.java52 private float distance; field in CollisionResult
55 …public CollisionResult(Geometry geometry, Vector3f contactPoint, float distance, int triangleIndex… in CollisionResult()
62 public CollisionResult(Vector3f contactPoint, float distance) { in CollisionResult()
/external/skia/src/core/
DSkPathMeasure.cpp100 SkScalar distance, int mint, int maxt, int ptIndex) { in compute_quad_segs()
124 SkScalar distance, int mint, int maxt, int ptIndex) { in compute_cubic_segs()
150 SkScalar d, distance = 0; in buildSegments() local
215 SkScalar distance = 0; in buildSegments() local
383 SkScalar distance, SkScalar* t) { in distanceToSegment()
417 bool SkPathMeasure::getPosTan(SkScalar distance, SkPoint* pos, in getPosTan()
445 bool SkPathMeasure::getMatrix(SkScalar distance, SkMatrix* matrix, in getMatrix()
/external/openfst/src/include/fst/
Dpush.h46 const vector<typename Arc::Weight> &distance, in ComputeTotalWeight()
102 vector<typename Arc::Weight> distance; variable
Dshortest-distance.h78 vector<Weight> *distance, in ShortestDistanceState()
245 vector<typename Arc::Weight> *distance, in ShortestDistance()
325 vector<Weight> distance; variable
Dshortest-path.h80 vector<typename Arc::Weight> *distance, in SingleShortestPath()
215 const vector<Weight>& distance, in ShortestPathCompare()
414 vector<typename Arc::Weight> *distance, in ShortestPath()
489 vector<typename Arc::Weight> distance; variable
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/picking/
DBresenhamTerrainPicker.java105 float distance = worldPickRay.origin.distance(intersection); in getTerrainIntersection() local
123 float distance = worldPickRay.origin.distance(intersection); in getTerrainIntersection() local
151 float distance = worldPickRay.origin.distance(intersection); in getTerrainIntersection() local
/external/webkit/Source/WebCore/platform/graphics/
DPathTraversalState.cpp162 float distance = distanceLine(m_current, m_start); in closeSubpath() local
175 float distance = distanceLine(m_current, point); in lineTo() local
182 …float distance = curveLength<QuadraticBezier>(*this, QuadraticBezier(m_current, newControl, newEnd… in quadraticBezierTo() local
195 …float distance = curveLength<CubicBezier>(*this, CubicBezier(m_current, newControl1, newControl2, … in cubicBezierTo() local
/external/guava/guava/src/com/google/common/collect/
DDiscreteDomains.java57 @Override public long distance(Integer start, Integer end) { in distance() method in DiscreteDomains.IntegerDomain
97 @Override public long distance(Long start, Long end) { in distance() method in DiscreteDomains.LongDomain
148 @Override public long distance(BigInteger start, BigInteger end) { in distance() method in DiscreteDomains.BigIntegerDomain
DDiscreteDomain.java82 public abstract long distance(C start, C end); in distance() method in DiscreteDomain
/external/webkit/Source/WebCore/page/
DHistory.cpp84 void History::go(int distance) in go()
92 void History::go(ScriptExecutionContext* context, int distance) in go()
/external/srec/tools/thirdparty/OpenFst/fst/lib/
Dshortest-path.h63 vector<typename Arc::Weight> *distance, in SingleShortestPath()
174 const vector<Weight>& distance, in ShortestPathCompare()
229 vector<typename Arc::Weight> *distance, in ShortestPath()
353 vector<typename Arc::Weight> distance; variable
Dpush.h42 vector<typename Arc::Weight> distance; in Push() local
Dshortest-distance.h62 vector<Weight> *distance, in ShortestDistanceState()
201 vector<typename Arc::Weight> *distance, in ShortestDistance()
/external/jmonkeyengine/engine/src/android/com/jme3/util/
DFastInteger.java245 public static int rotateLeft(int i, int distance) { in rotateLeft()
268 public static int rotateRight(int i, int distance) { in rotateRight()
/external/openfst/src/bin/
Dfstshortestdistance.cc56 vector<s::WeightClass> distance; in main() local
Dfstshortestpath.cc62 vector<WeightClass> distance; in main() local
/external/openfst/src/include/fst/script/
Drmepsilon.h66 vector<typename Arc::Weight> *distance, in RmEpsilonHelper()
138 vector<typename Arc::Weight> distance; in RmEpsilon() local
Dprune.h35 const vector<WeightClass> *distance; member
61 vector<Weight> *distance = 0; in ConvertPruneOptions() local
/external/skia/src/effects/
DSk1DPathEffect.cpp17 SkScalar distance = this->begin(length); in filterPath() local
161 SkScalar SkPath1DPathEffect::next(SkPath* dst, SkScalar distance, in next()
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DLineSegment.java98 public float distance(Vector3f point) { in distance() method in LineSegment
102 public float distance(LineSegment ls) { in distance() method in LineSegment
106 public float distance(Ray r) { in distance() method in LineSegment

123456