HomeSort by relevance Sort by last modified time
    Searched refs:nearest (Results 1 - 25 of 37) sorted by null

1 2

  /external/libvpx/libvpx/vp9/common/
vp9_findnearmv.c 27 int_mv *nearest,
35 *nearest = mvlist[0];
vp9_findnearmv.h 28 int_mv *nearest,
  /external/chromium_org/third_party/WebKit/Source/core/html/
TimeRanges.h 63 double nearest(double time) const;
TimeRanges.cpp 175 double TimeRanges::nearest(double time) const function in class:TimeRanges
  /external/libvpx/libvpx/vp8/common/
findnearmv.c 28 int_mv *nearest,
108 /* See if above-left MV can be merged with NEAREST */
117 /* Swap near and nearest if necessary */
135 nearest->as_int = near_mvs[CNT_NEAREST].as_int;
findnearmv.h 74 int_mv *nearest, int_mv *nearby, int_mv *best,
  /libcore/luni/src/main/java/java/util/
TreeMap.java 275 Node<K, V> nearest = root; local
278 ? comparableKey.compareTo(nearest.key)
279 : comparator.compare(key, nearest.key);
287 return nearest.prev();
292 return nearest;
294 return nearest.next();
298 Node<K, V> child = (comparison < 0) ? nearest.left : nearest.right;
300 nearest = child;
305 * We found a nearest node. Every key not in the tree has up to tw
    [all...]
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
viewrtree.tcl 63 bind .l <1> {listbox_click [.l nearest %y]}
64 bind .l <Motion> {listbox_mouseover [.l nearest %y]}
  /packages/apps/Camera2/src/com/android/camera/ui/
FilmStripView.java 845 int nearest = 0; local
847 while (nearest < BUFFER_SIZE
848 && (mViewItem[nearest] == null || mViewItem[nearest].getLeftPosition() == -1)) {
849 nearest++;
852 if (nearest == BUFFER_SIZE) {
856 int min = Math.abs(pointX - mViewItem[nearest].getCenterX());
858 for (int itemID = nearest + 1; itemID < BUFFER_SIZE && mViewItem[itemID] != null; itemID++) {
867 nearest = itemID;
870 return nearest;
919 final int nearest = findTheNearestView(mCenterX); local
    [all...]
  /external/libvpx/libvpx/vp9/decoder/
vp9_decodemv.c 446 int_mv nearest, nearby, best_mv; local
470 // nearest, nearby
472 vp9_find_best_ref_mvs(xd, mbmi->ref_mvs[ref0], &nearest, &nearby);
503 vp9_append_sub8x8_mvs_for_idx(cm, xd, &nearest, &nearby, j, 0,
522 blockmv.as_int = nearest.as_int;
562 mv0->as_int = nearest.as_int;
  /external/qemu/distrib/sdl-1.2.15/src/loadso/macosx/
SDL_dlcompat.c 105 const char *dli_sname; /* Name of nearest symbol */
106 void *dli_saddr; /* Address of nearest symbol */
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
CandidateView.java 607 // If not found, try to find the nearest one.
609 int nearest = -1;
620 nearest = i;
624 return nearest;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state_utils.h 127 const int time, const bool lastPoint, const float nearest, const float sumAngle,
proximity_info_state_utils.cpp 317 // the given point and the nearest key position.
359 const int x, const int y, const int time, const bool lastPoint, const float nearest,
383 } else if (nearest < ProximityInfoParams::NEAR_KEY_THRESHOLD_FOR_POINT_SCORE) {
420 const float nearest = updateNearKeysDistances(proximityInfo, maxPointToKeyLength, x, y, local
422 const float score = getPointScore(mostCommonKeyWidth, x, y, time, isLastPoint, nearest,
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
AutoCompleteWindow.py 321 jump = self.listbox.nearest(self.listbox.winfo_height()) - \
322 self.listbox.nearest(0)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
AutoCompleteWindow.py 321 jump = self.listbox.nearest(self.listbox.winfo_height()) - \
322 self.listbox.nearest(0)
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/htmlfiles/
coverage_html.js 244 // Return the line number of the line nearest pixel position pos
  /external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
aggregate_results.js 219 // Round to the nearest tenth of a percent.
  /external/chromium_org/v8/test/mjsunit/
debug-setbreakpoint.js 198 // to the script body, its actual position is taken from the nearest statement
  /external/v8/test/mjsunit/
debug-setbreakpoint.js 198 // to the script body, its actual position is taken from the nearest statement
  /external/chromium_org/tools/grit/grit/node/
base.py 515 '''Searches all ancestors of the current node for the nearest enclosing
  /external/guava/guava/src/com/google/common/primitives/
generate.sh 104 * Returns the {@code primtyp} nearest in value to {@code value}.
  /external/chromium_org/third_party/WebKit/Source/web/
WebFrameImpl.cpp 1949 int nearest = -1; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py 1047 def nearest(self, y): member in class:HList
1507 def nearest(self, x, y): member in class:TList
1888 def nearest(self, x, y): member in class:Grid
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
Tix.py 1047 def nearest(self, y): member in class:HList
1507 def nearest(self, x, y): member in class:TList
1888 def nearest(self, x, y): member in class:Grid
    [all...]

Completed in 650 milliseconds

1 2