HomeSort by relevance Sort by last modified time
    Searched defs:middle (Results 26 - 50 of 86) sorted by null

12 3 4

  /external/webkit/Source/WebCore/page/
SpatialNavigation.cpp 123 static inline int middle(FocusDirection direction, const IntRect& rect) function in namespace:WebCore
173 int aMiddle = middle(direction, a);
174 int bMiddle = middle(direction, b);
217 int bMiddle = middle(direction, b);
  /external/webkit/Source/WebCore/platform/qt/
QtMobileWebStyle.cpp 53 int middle = qMax(3 * checkerSize / 7, 3); local
55 int y = ((size - checkerSize) >> 1) + (checkerSize - width - middle);
58 for (int i = 0; i < middle; ++i) {
63 for (int i = middle; i <= checkerSize; ++i) {
  /external/webkit/Source/WebCore/rendering/
RenderThemeChromiumLinux.cpp 268 const int middle = rect.y() + rect.height() / 2; local
272 extraParams.menuList.arrowY = middle;
  /external/wpa_supplicant_8/src/ap/
ap_config.c 563 int start, end, middle, res; local
569 middle = (start + end) / 2;
570 res = os_memcmp(list[middle].addr, addr, ETH_ALEN);
573 *vlan_id = list[middle].vlan_id;
577 start = middle + 1;
579 end = middle - 1;
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
ViewfinderView.java 110 // Draw a red "laser scanner" line through the middle to show decoding is active
114 int middle = frame.height() / 2 + frame.top; local
115 canvas.drawRect(frame.left + 2, middle - 1, frame.right - 1, middle + 2, paint);
  /libcore/luni/src/main/java/java/util/
DualPivotQuicksort.java 1613 int middle = (low + high) >>> 1; local
1986 int middle = (low + high) >>> 1; local
    [all...]
  /ndk/sources/host-tools/make-3.81/
getopt.c 305 int middle = last_nonopt;
336 while (top > middle && middle > bottom)
338 if (top - middle > middle - bottom)
341 int len = middle - bottom;
348 argv[bottom + i] = argv[top - (middle - bottom) + i];
349 argv[top - (middle - bottom) + i] = tem;
350 SWAP_FLAGS (bottom + i, top - (middle - bottom) + i);
358 int len = top - middle;
303 int middle = last_nonopt; local
    [all...]
  /external/chromium/base/win/
pe_image.cc 208 PDWORD middle = lower + (upper - lower) / 2; local
209 LPCSTR name = reinterpret_cast<LPCSTR>(RVAToAddr(*middle));
216 lower = middle;
221 lower = middle + 1;
223 upper = middle;
  /external/eigen/Eigen/src/Core/
MathFunctions.h 614 enum { middle = (lower + upper) / 2, enumerator in enum:Eigen::internal::floor_log2_selector::__anon7411
616 : (n < (1 << middle)) ? int(floor_log2_move_down)
631 enum { value = floor_log2<n, lower, floor_log2_selector<n, lower, upper>::middle>::value };
637 enum { value = floor_log2<n, floor_log2_selector<n, lower, upper>::middle, upper>::value };
  /external/harfbuzz/src/
harfbuzz-open.c 816 HB_UShort min, max, new_min, new_max, middle; local
837 middle = max - ( ( max - min ) >> 1 );
839 if ( glyphID == array[middle] )
841 *index = middle;
844 else if ( glyphID < array[middle] )
846 if ( middle == min )
848 new_max = middle - 1;
852 if ( middle == max )
854 new_min = middle + 1;
866 HB_UShort min, max, new_min, new_max, middle; local
1197 HB_UShort min, max, new_min, new_max, middle; local
    [all...]
  /external/harfbuzz_ng/src/hb-old/
harfbuzz-open.c 816 HB_UShort min, max, new_min, new_max, middle; local
837 middle = max - ( ( max - min ) >> 1 );
839 if ( glyphID == array[middle] )
841 *index = middle;
844 else if ( glyphID < array[middle] )
846 if ( middle == min )
848 new_max = middle - 1;
852 if ( middle == max )
854 new_min = middle + 1;
866 HB_UShort min, max, new_min, new_max, middle; local
1197 HB_UShort min, max, new_min, new_max, middle; local
    [all...]
  /external/icu4c/test/intltest/
tzfmttst.cpp 356 UBool middle = TRUE; local
422 if (middle) {
423 // Test the date in the middle of two transitions.
425 middle = FALSE;
  /external/libxml2/
parserInternals.c 737 * splitting a character in the middle. In that case do not raise
850 * splitting a character in the middle. In that case do not raise
1973 unsigned long upper, lower, middle; local
    [all...]
  /external/aac/libSBRenc/src/
fram_gen.cpp 1163 INT middle, b_new, numBordFollow, bordMaxFollow, i; local
    [all...]
  /external/chromium/net/disk_cache/
backend_unittest.cc 564 // entry to be invalid, simulating a crash in the middle.
1045 // Let's go to the middle of the list.
1096 Time middle = Time::Now(); local
    [all...]
  /external/icu4c/tools/toolutil/
package.cpp 920 const char *name, *middle, *treeSep; local
939 middle=name+findPrefixLength;
948 treeSep=strchr(middle, U_TREE_ENTRY_SEP_CHAR);
949 if(treeSep!=NULL && (treeSep-middle)<middleLength) {
950 // the middle (matching the * wildcard) contains a tree separator /
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
FastMath.java 379 Vector3f middle = FastMath.interpolateCatmullRom(middleValue, curveTension, p0, p1, p2, p3); local
381 float l1 = middle.subtract(start).length();
382 float l2 = end.subtract(middle).length();
    [all...]
  /external/webkit/Source/JavaScriptCore/runtime/
ArrayPrototype.cpp 418 unsigned middle = length / 2; local
419 for (unsigned k = 0; k < middle; k++) {
    [all...]
  /packages/inputmethods/PinyinIME/jni/share/
userdict.cpp 446 int32 middle = -1; local
448 int32 first_prefix = middle;
449 int32 last_matched = middle;
452 middle = (begin + end) >> 1;
453 uint32 offset = offsets_[middle];
460 first_prefix = middle;
463 begin = middle + 1;
465 end = middle - 1;
467 end = middle - 1;
468 last_matched = middle;
534 int32 middle; local
545 int32 middle = locate_first_in_offsets(&searchable); local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
algo.h 1691 difference_type middle = __gnu_parallel:: local
    [all...]
  /system/extras/ext4_utils/
allocate.c 618 struct region *middle = do_split_allocation(alloc, len); local
620 return middle;
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java 1275 int middle = ((ch & 0x0FC0) >> 6) | 0x80; local
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.cc 829 std::string middle; local
832 middle = nonce + ":" + ncount + ":" + cnonce + ":" + qop;
834 middle = nonce;
840 std::string dig_response = MD5(HA1 + ":" + middle + ":" + HA2);
  /external/icu4c/test/cintltst/
custrtst.c 1194 int32_t i, pos1, pos2, middle, length; local
1763 int32_t i, middle, length; local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
Lexer.java 117 int middle = (low + high) / 2; local
118 int[] tmp2 = tmp1[middle];
122 high = middle - 1;
126 low = middle + 1;
    [all...]

Completed in 2680 milliseconds

12 3 4