HomeSort by relevance Sort by last modified time
    Searched refs:distance (Results 376 - 400 of 663) sorted by null

<<11121314151617181920>>

  /external/llvm/include/llvm/ADT/
SmallVector.h 344 size_type NumInputs = std::distance(in_start, in_end);
477 size_t NumToInsert = std::distance(From, To);
  /external/stlport/stlport/stl/
_tree.h 504 size_type __n = _STLP_STD::distance(__p.first, __p.second);
598 return _STLP_STD::distance(__p.first, __p.second);
_string_workaround.h 124 difference_type __n = _STLP_STD::distance(__f, __l);
219 const size_type __n = __STATIC_CAST(size_type, _STLP_STD::distance(__first, __last));
400 size_type __n = __STATIC_CAST(size_type, _STLP_STD::distance(__first, __last));
_vector.h 325 const size_type __len = _STLP_STD::distance(__first, __last);
547 size_type __n = _STLP_STD::distance(__first, __last);
701 size_type __n = _STLP_STD::distance(__first, __last);
  /external/v8/src/
assembler.h 83 enum Distance {
126 void link_to(int pos, Distance distance = kFar) {
127 if (distance == kNear) {
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_tree.h 504 size_type __n = _STLP_STD::distance(__p.first, __p.second);
598 return _STLP_STD::distance(__p.first, __p.second);
_string_workaround.h 124 difference_type __n = _STLP_STD::distance(__f, __l);
219 const size_type __n = __STATIC_CAST(size_type, _STLP_STD::distance(__first, __last));
400 size_type __n = __STATIC_CAST(size_type, _STLP_STD::distance(__first, __last));
_vector.h 325 const size_type __len = _STLP_STD::distance(__first, __last);
547 size_type __n = _STLP_STD::distance(__first, __last);
701 size_type __n = _STLP_STD::distance(__first, __last);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SlotView.java 674 float distance = WIDE ? distanceX : distanceY; local
676 Math.round(distance), 0, mLayout.getScrollLimit());
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_tree.h 504 size_type __n = _STLP_STD::distance(__p.first, __p.second);
598 return _STLP_STD::distance(__p.first, __p.second);
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_tree.h 504 size_type __n = _STLP_STD::distance(__p.first, __p.second);
598 return _STLP_STD::distance(__p.first, __p.second);
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
_tree.h 504 size_type __n = _STLP_STD::distance(__p.first, __p.second);
598 return _STLP_STD::distance(__p.first, __p.second);
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector2f.java 303 * <code>distanceSquared</code> calculates the distance squared between
306 * @param v the second vector to determine the distance squared.
307 * @return the distance squared between the two vectors.
316 * <code>distanceSquared</code> calculates the distance squared between
321 * @return the distance squared between the two vectors.
330 * <code>distance</code> calculates the distance between this vector and
333 * @param v the second vector to determine the distance.
334 * @return the distance between the two vectors.
336 public float distance(Vector2f v) method in class:Vector2f
    [all...]
  /external/llvm/include/llvm/Support/
GraphWriter.h 234 (unsigned)std::distance(GTraits::child_begin(TargetNode), TargetIt);
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfAccelTable.cpp 63 uint32_t num = std::distance(uniques.begin(), p);
  /external/webkit/Source/WebCore/svg/
SVGTransformDistance.cpp 166 m_transform *= transform.matrix(); // FIXME: what does 'distance' between two transforms mean? how should we respect 'absoluteValue' here?
243 float SVGTransformDistance::distance() const function in class:WebCore::SVGTransformDistance
251 return 0; // I'm not quite sure yet what distance between two matrices means.
  /frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
acelp.h 156 Word32 * distance /* output: error of quantization */
161 Word16 min_dist, /* (i) Q15 : minimum distance to keep */
  /frameworks/base/services/input/
InputReader.h 123 // The distance in pixels that the pointer is allowed to move from initial down
670 RawAbsoluteAxisInfo distance; member in struct:android::RawPointerAxes
693 int32_t distance; member in struct:android::RawPointerData::Pointer
1329 InputDeviceInfo::MotionRange distance; member in struct:android::TouchInputMapper::OrientedRanges
1376 uint64_t distance : 48; \/\/ squared distance member in struct:android::TouchInputMapper::PointerDistanceHeapElement
    [all...]
  /frameworks/base/services/java/com/android/server/accessibility/
TouchExplorer.java 55 * <li>5. Pointers that have not moved more than a specified distance after they
98 // The minimal distance before we take the middle of the distance between
151 // The scaled minimal distance before we take the middle of the distance between
350 // have a distance slop before getting into gesture detection
407 // have a distance slop before getting into gesture detection
490 // a given distance perform a drag.
588 // If the dragging pointer are closer that a given distance we
604 final double distance = Math.hypot(deltaX, deltaY) local
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
BoundingBox.java 347 float distance = plane.pseudoDistance(center); local
350 if (distance < -radius) {
352 } else if (distance > radius) {
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GLSurfaceView.java 860 int distance = Math.abs(r - mRedSize) local
    [all...]
  /external/stlport/test/unit/
unordered_test.cpp 370 nbElems -= distance(p.first, p.second);
379 nbElems -= distance(p.first, p.second);
416 CPPUNIT_ASSERT( distance(p.first, p.second) == 3 );
  /external/webkit/Source/WebCore/platform/graphics/skia/
PlatformContextSkia.cpp 423 int distance = length - 2 * static_cast<int>(m_state->m_strokeThickness); local
427 int numDashes = distance / dashLength;
428 int remainder = distance % dashLength;
  /frameworks/base/core/jni/android/opengl/
util.cpp 230 inline float distance(float x, float y, float z) { function in namespace:android
303 *pSphere++ = distance(dx, dy, dz) * 0.5f;
309 float rdist = 1.0f / distance(p[0], p[1], p[2]);
  /ndk/tests/device/test-gnustl-full/unit/
unordered_test.cpp 370 nbElems -= distance(p.first, p.second);
379 nbElems -= distance(p.first, p.second);
416 CPPUNIT_ASSERT( distance(p.first, p.second) == 3 );

Completed in 1373 milliseconds

<<11121314151617181920>>