Searched refs:distance (Results 51 - 75 of 454) sorted by relevance

1234567891011>>

/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dpush.h27 #include "fst/lib/shortest-distance.h"
42 vector<typename Arc::Weight> distance; local
43 ShortestDistance(*fst, &distance, type == REWEIGHT_TO_INITIAL);
44 Reweight(fst, distance, type);
/external/chromium_org/cc/animation/
H A Dscrollbar_animation_controller.h31 virtual bool DidMouseMoveNear(base::TimeTicks now, float distance) = 0;
/external/chromium_org/mojo/examples/sample_app/
H A Dspinning_cube.h24 void UpdateForDragDistance(float distance);
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGTransformDistance.h41 float distance() const;
/external/guava/guava/src/com/google/common/collect/
H A DDiscreteDomain.java27 * operations: {@link #next}, {@link #previous} and {@link #distance}, according
71 * next(next(next(start)))}, then {@code distance(start, end) == 3} and {@code
72 * distance(end, start) == -3}. As well, {@code distance(a, a)} is always
78 * @return the distance as described above, or {@link Long#MIN_VALUE} or
79 * {@link Long#MIN_VALUE} if the distance is too small or too large,
82 public abstract long distance(C start, C end); method in class:DiscreteDomain
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
H A DConstraintShrinkWrap.java75 float distance = Float.MAX_VALUE;
77 float temp = currentTranslation.distance(p);
78 if(temp < distance) {
79 distance = temp;
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/picking/
H A DBresenhamTerrainPicker.java51 * all of the TerrainPatches hit (in distance order.) The triangles of each patch
105 float distance = worldPickRay.origin.distance(intersection);
106 CollisionResult cr = new CollisionResult(intersection, distance);
123 float distance = worldPickRay.origin.distance(intersection);
124 CollisionResult cr = new CollisionResult(intersection, distance);
151 float distance = worldPickRay.origin.distance(intersection);
152 CollisionResult cr = new CollisionResult(intersection, distance);
[all...]
/external/lzma/CS/7zip/Compress/LZ/
H A DIMatchFinder.cs13 UInt32 GetMatchLen(Int32 index, UInt32 distance, UInt32 limit); argument
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Daccess-nbody.js96 var dx, dy, dz, distance, mag;
107 distance = Math.sqrt(dx*dx + dy*dy + dz*dz);
108 mag = dt / (distance * distance * distance);
129 var dx, dy, dz, distance;
147 distance = Math.sqrt(dx*dx + dy*dy + dz*dz);
148 e -= (bodyi.mass * bodyj.mass) / distance;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Daccess-nbody.js96 var dx, dy, dz, distance, mag;
107 distance = Math.sqrt(dx*dx + dy*dy + dz*dz);
108 mag = dt / (distance * distance * distance);
129 var dx, dy, dz, distance;
147 distance = Math.sqrt(dx*dx + dy*dy + dz*dz);
148 e -= (bodyi.mass * bodyj.mass) / distance;
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
H A Daccess-nbody.js96 var dx, dy, dz, distance, mag;
107 distance = Math.sqrt(dx*dx + dy*dy + dz*dz);
108 mag = dt / (distance * distance * distance);
129 var dx, dy, dz, distance;
147 distance = Math.sqrt(dx*dx + dy*dy + dz*dz);
148 e -= (bodyi.mass * bodyj.mass) / distance;
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DHistory.idl32 [CallWith=ExecutionContext] void go([Default=Undefined] optional long distance);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DPathTraversalState.cpp115 // approximateDistance() + current total distance > desired distance
161 float distance = distanceLine(m_current, m_start); local
163 return distance;
174 float distance = distanceLine(m_current, point); local
176 return distance;
181 float distance = curveLength<QuadraticBezier>(*this, QuadraticBezier(m_current, newControl, newEnd)); local
189 return distance;
194 float distance = curveLength<CubicBezier>(*this, CubicBezier(m_current, newControl1, newControl2, newEnd)); local
202 return distance;
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftapi.c65 FT_Long distance )
67 return FT_Stream_Skip( stream, distance );
/external/chromium_org/third_party/skia/src/effects/
H A DSk1DPathEffect.cpp19 SkScalar distance = this->begin(length); local
20 while (distance < length) {
21 SkScalar delta = this->next(dst, distance, meas);
25 distance += delta;
177 SkScalar SkPath1DPathEffect::next(SkPath* dst, SkScalar distance, argument
182 if (meas.getPosTan(distance, &pos, NULL)) {
188 if (meas.getMatrix(distance, &matrix)) {
193 morphpath(dst, fPath, meas, distance);
H A DSkDashPathEffect.cpp287 double distance = 0; local
290 while (distance < length) {
298 lineRec.addSegment(SkDoubleToScalar(distance),
299 SkDoubleToScalar(distance + dlen),
302 meas.getSegment(SkDoubleToScalar(distance),
303 SkDoubleToScalar(distance + dlen),
307 distance += dlen;
450 SkScalar distance = 0; local
480 distance += clampedInitialDashLength;
483 distance
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-backtrace-text.js48 function distance(p, q) { function
56 a=[1,2,distance];
79 // 0: Call distance on Point where distance is a property on the prototype
80 // 1: Call distance on Point where distance is a direct property
85 assertEquals("#<Array>[2](aka distance)(p=#<Point>, q=#<Point>)", exec_state.frame(2).invocationText());
/external/freetype/src/base/
H A Dftapi.c65 FT_Long distance )
67 return FT_Stream_Skip( stream, distance );
/external/libvpx/libvpx/vp8/encoder/
H A Dmcomp.h73 int distance,
86 int distance,
/external/openfst/src/script/
H A Drmepsilon.cc41 void RmEpsilon(MutableFstClass *fst, vector<WeightClass> *distance, argument
43 RmEpsilonArgs3 args(fst, distance, opts);
H A Dshortest-path.cc25 vector<WeightClass> *distance,
29 ShortestPathArgs1 args(ifst, ofst, distance, opts);
24 ShortestPath(const FstClass &ifst, MutableFstClass *ofst, vector<WeightClass> *distance, const ShortestPathOptions &opts) argument
/external/skia/src/effects/
H A DSk1DPathEffect.cpp19 SkScalar distance = this->begin(length); local
20 while (distance < length) {
21 SkScalar delta = this->next(dst, distance, meas);
25 distance += delta;
177 SkScalar SkPath1DPathEffect::next(SkPath* dst, SkScalar distance, argument
182 if (meas.getPosTan(distance, &pos, NULL)) {
188 if (meas.getMatrix(distance, &matrix)) {
193 morphpath(dst, fPath, meas, distance);
H A DSkDashPathEffect.cpp287 double distance = 0; local
290 while (distance < length) {
298 lineRec.addSegment(SkDoubleToScalar(distance),
299 SkDoubleToScalar(distance + dlen),
302 meas.getSegment(SkDoubleToScalar(distance),
303 SkDoubleToScalar(distance + dlen),
307 distance += dlen;
450 SkScalar distance = 0; local
480 distance += clampedInitialDashLength;
483 distance
[all...]
/external/v8/test/mjsunit/
H A Ddebug-backtrace-text.js48 function distance(p, q) { function
56 a=[1,2,distance];
79 // 0: Call distance on Point where distance is a property on the prototype
80 // 1: Call distance on Point where distance is a direct property
85 assertEquals("#<Array>[2](aka distance)(p=#<Point>, q=#<Point>)", exec_state.frame(2).invocationText());
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DRegularContiguousSet.java50 return contains(target) ? (int) domain.distance(first(), (C) target) : -1;
94 long distance = domain.distance(first(), last());
95 return (distance >= Integer.MAX_VALUE) ? Integer.MAX_VALUE : (int) distance + 1;

Completed in 2177 milliseconds

1234567891011>>