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

1 2 3 45 6 7 8 91011>>

  /external/replicaisland/src/com/replica/replicaisland/
OrbitalMagnetComponent.java 112 float distance = (float)Math.sqrt(distanceFromCenter2); local
113 weight = (distance - mMagnetRadius) / (mAreaRadius - mMagnetRadius);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DelegateViewHelper.java 79 final float distance = mSwapXY ? (mDownPoint[0] - x) : (mDownPoint[1] - y);
80 if (distance > mTriggerThreshhold) {
  /external/freetype/src/truetype/
ttinterp.c 5946 FT_F26Dot6 distance; local
5992 distance; local
6031 FT_F26Dot6 distance, local
6105 FT_F26Dot6 org_dist, distance; local
6222 distance, local
6355 FT_F26Dot6 distance; local
6491 FT_F26Dot6 distance; local
    [all...]
ttinterp.h 70 (*TT_Round_Func)( EXEC_OP_ FT_F26Dot6 distance,
77 FT_F26Dot6 distance );
79 /* Distance projection along one of the projection vectors */
  /external/chromium/chrome/browser/ui/views/tab_contents/
native_tab_contents_view_win.cc 309 int distance = 0; local
312 distance = WHEEL_DELTA;
315 distance = -WHEEL_DELTA;
323 delegate_->OnNativeTabContentsViewWheelZoom(distance);
  /external/qemu/distrib/zlib-1.2.3/
deflate.h 40 /* number of distance codes */
116 * bytes. With this organization, matches are limited to a distance of
193 struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
197 struct tree_desc_s d_desc; /* desc. for distance tree */
292 /* Mapping from a distance to a distance code. dist is the distance - 1 and
315 # define _tr_tally_dist(s, distance, length, flush) \
317 ush dist = (distance); \
327 # define _tr_tally_dist(s, distance, length, flush)
    [all...]
  /external/stlport/test/eh/
Prefix.h 98 #define EH_DISTANCE(a, b, result) EH_STD::distance(a, b, result)
207 # define EH_DISTANCE( a, b, result ) do { result = distance( a, b ); } while (0)
236 # define EH_DISTANCE( a, b, result ) distance( a, b, result )
245 # define EH_DISTANCE( a, b, result ) do { result = distance( a, b ); } while (0)
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
AndroidAnimation.cpp 209 float distance = -1; local
215 if (distance == -1 || (d >= 0 && d < distance && i + 1 < m_operations->size())) {
216 distance = d;
  /external/webkit/Source/WebCore/svg/
ColorDistance.cpp 85 float ColorDistance::distance() const function in class:WebCore::ColorDistance
87 // This is just a simple distance calculation, not respecting color spaces
SVGPathElement.idl 38 SVGPoint getPointAtLength(in float distance);
39 unsigned long getPathSegAtLength(in float distance);
  /external/zlib/
deflate.h 40 /* number of distance codes */
119 * bytes. With this organization, matches are limited to a distance of
196 struct ct_data_s dyn_dtree[2*D_CODES+1]; /* distance tree */
200 struct tree_desc_s d_desc; /* desc. for distance tree */
307 /* Mapping from a distance to a distance code. dist is the distance - 1 and
330 # define _tr_tally_dist(s, distance, length, flush) \
332 ush dist = (distance); \
342 # define _tr_tally_dist(s, distance, length, flush)
    [all...]
  /frameworks/base/core/java/android/view/
DisplayList.java 261 * Sets the camera distance for the DisplayList
263 * @param distance The distance in z of the camera of the DisplayList
266 public abstract void setCameraDistance(float distance);
  /frameworks/wilhelm/src/itf/
I3DLocation.c 43 SLmillidegree azimuth, SLmillidegree elevation, SLmillimeter distance)
49 (0 <= distance) && (distance <= SL_MILLIMETER_MAX))) {
56 thiz->mLocationSpherical.mDistance = distance;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/pat_trie_/
trace_fn_imps.hpp 85 const size_type num_children = std::distance(p_internal->begin(),
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/pat_trie_/
trace_fn_imps.hpp 85 const size_type num_children = std::distance(p_internal->begin(),
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/pat_trie_/
trace_fn_imps.hpp 85 const size_type num_children = std::distance(p_internal->begin(),
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
trace_fn_imps.hpp 85 const size_type num_children = std::distance(p_internal->begin(),
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
trace_fn_imps.hpp 85 const size_type num_children = std::distance(p_internal->begin(),
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/pat_trie_/
trace_fn_imps.hpp 85 const size_type num_children = std::distance(p_internal->begin(),
  /packages/apps/Browser/src/com/android/browser/
NavTabScroller.java 280 int distance = target - (mHorizontal ? v.getTop() : v.getLeft()); local
281 long duration = (long) (Math.abs(distance) * 1000 / Math.abs(velocity));
432 protected void onOrthoDrag(View v, float distance) {
434 offsetView(v, distance);
464 private void offsetView(View v, float distance) {
465 v.setAlpha(getAlpha(v, distance));
467 v.setTranslationY(distance);
469 v.setTranslationX(distance);
473 private float getAlpha(View v, float distance) {
474 return 1 - (float) Math.abs(distance) / (mHorizontal ? v.getHeight() : v.getWidth())
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocationClustering.java 38 // If the total distance change is less than this ratio, stop iterating.
220 // (sum of distance from each point to its group center) * sqrt(k).
253 float distance = (float) GalleryUtils.fastDistanceMeters( local
255 // We may have small non-zero distance introduced by
258 if (distance < 1) {
259 distance = 0;
261 if (distance < bestDistance) {
262 bestDistance = distance;
  /external/openfst/src/include/fst/
rmepsilon.h 42 #include <fst/shortest-distance.h>
78 vector<Weight> *distance,
80 : fst_(fst), distance_(distance), sd_state_(fst_, distance, opts, true),
134 // Distance from state being expanded in epsilon-closure.
136 // Shortest distance algorithm computation state.
225 // The vector 'distance' will be used to hold the shortest distances
230 vector<typename Arc::Weight> *distance,
293 rmeps_state(*fst, distance, opts);
359 vector<Weight> distance; local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
multiseq_selection.h 144 difference_type m = std::distance(begin_seqs, end_seqs), N = 0,
149 N += std::distance(begin_seqs[i].first, begin_seqs[i].second);
151 std::distance(begin_seqs[i].first, begin_seqs[i].second) > 0);
172 ns[0] = std::distance(begin_seqs[0].first, begin_seqs[0].second);
176 ns[i] = std::distance(begin_seqs[i].first, begin_seqs[i].second);
392 difference_type m = std::distance(begin_seqs, end_seqs);
397 N += std::distance(begin_seqs[i].first, begin_seqs[i].second);
411 ns[0] = std::distance(begin_seqs[0].first, begin_seqs[0].second);
415 ns[i] = std::distance(begin_seqs[i].first, begin_seqs[i].second);
  /external/astl/include/
iterator 55 typedef _Distance difference_type; // Distance between iterators.
249 // Utilities: distance().
253 distance(_InputIterator first, _InputIterator last,
267 distance(_RandomAccessIterator first, _RandomAccessIterator last,
277 * @return The distance between them.
281 distance(_InputIterator first, _InputIterator last)
285 return distance(first, last, android::iterator_category(first));
  /external/icu4c/i18n/
dtitvinf.cpp 475 // calculate distance
476 int32_t distance = 0; local
486 distance += DIFFERENT_FIELD;
489 distance += DIFFERENT_FIELD;
492 distance += STRING_NUMERIC_DIFFERENCE;
494 distance += (inputFieldWidth > fieldWidth) ?
499 if ( distance < bestDistance ) {
501 bestDistance = distance;
504 if ( distance == 0 ) {

Completed in 1422 milliseconds

1 2 3 45 6 7 8 91011>>