HomeSort by relevance Sort by last modified time
    Searched defs:left (Results 1 - 25 of 411) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/media/libeffects/lvm/lib/Common/src/
From2iToMS_16x16.c 33 LVM_INT32 temp1,left,right; local
37 left = (LVM_INT32)*src;
44 temp1 = (left+right)>>1;
49 temp1 = (left-right)>>1;
  /development/ndk/platforms/android-9/include/android/
rect.h 26 int32_t left; member in struct:ARect
  /frameworks/base/native/include/android/
rect.h 26 int32_t left; member in struct:ARect
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
WnnPOS.java 25 /** The part of speech at left side */
26 public int left = 0; field in class:WnnPOS
39 * @param left The part of speech at left side
42 public WnnPOS(int left, int right) {
43 this.left = left;
  /libcore/luni/src/main/java/org/apache/xpath/operations/
Equals.java 38 * @param left non-null reference to the evaluated left operand.
45 public XObject operate(XObject left, XObject right)
48 return left.equals(right) ? XBoolean.S_TRUE : XBoolean.S_FALSE;
65 XObject left = m_left.execute(xctxt, true); local
68 boolean result = left.equals(right) ? true : false;
69 left.detach();
  /external/dropbear/libtomcrypt/src/misc/pkcs5/
pkcs_5_2.c 38 unsigned long stored, left, x, y; local
66 left = *outlen;
69 while (left != 0) {
104 for (y = 0; y < x && left != 0; ++y) {
106 --left;
  /external/skia/src/svg/
SkSVGCircle.cpp 38 SkScalar left, top, right, bottom; local
39 left = cx - r;
44 sprintf(scratch, "%g", left);
45 parser._addAttribute("left", scratch);
SkSVGEllipse.cpp 40 SkScalar left, top, right, bottom; local
41 left = cx - rx;
46 sprintf(scratch, "%g", left);
47 parser._addAttribute("left", scratch);
  /external/wpa_supplicant_6/wpa_supplicant/src/common/
ieee802_11_common.c 138 size_t left = len; local
144 while (left >= 2) {
149 left -= 2;
151 if (elen > left) {
155 "left=%lu)",
156 id, elen, (unsigned long) left);
251 left -= elen;
255 if (left)
  /device/google/accessory/demokit/app/src/com/google/android/DemoKit/
Utilities.java 9 int left = x - w / 2; local
11 int right = left + w;
13 d.setBounds(left, top, right, bottom);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
X509NameEntryConverter.java 68 char left = str.charAt((index * 2) + off); local
71 if (left < 'a')
73 data[index] = (byte)((left - '0') << 4);
77 data[index] = (byte)((left - 'a' + 10) << 4);
  /external/guava/src/com/google/common/collect/
LexicographicalOrdering.java 40 Iterator<T> left = leftIterable.iterator(); local
42 while (left.hasNext()) {
46 int result = elementOrder.compare(left.next(), right.next());
  /external/guava/src/com/google/common/io/
LimitInputStream.java 33 private long left; field in class:LimitInputStream
46 left = limit;
50 return (int) Math.min(in.available(), left);
55 mark = left;
60 if (left == 0) {
66 --left;
72 if (left == 0) {
76 len = (int) Math.min(len, left);
79 left -= result;
93 left = mark
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-192414.js 61 var left = repeat_str('(1&', N); variable
63 var str = 'actual = '.concat(left, '1', right, ';');
  /external/webkit/WebCore/dom/
ClientRect.h 46 float left() const { return m_rect.x(); } function in class:WebCore::ClientRect
  /external/webkit/WebCore/platform/
LengthBox.h 57 Length left() const { return m_left; } function in struct:WebCore::LengthBox
  /external/wpa_supplicant/
eap_pax_common.c 45 size_t num_blocks, left; local
63 left = output_len;
65 size_t clen = left > EAP_PAX_MAC_LEN ? EAP_PAX_MAC_LEN : left;
69 left -= clen;
eap_tlv.c 109 size_t left, tlv_len; local
116 left = be_to_host16(hdr->length) - sizeof(struct eap_hdr) - 1;
119 wpa_hexdump(MSG_DEBUG, "EAP-TLV: Received TLVs", pos, left);
120 while (left >= 4) {
126 left -= 4;
127 if (tlv_len > left) {
129 "(tlv_len=%lu left=%lu)",
131 (unsigned long) left);
155 left -= tlv_len;
157 if (left) {
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_common/
eap_pax_common.c 45 size_t num_blocks, left; local
63 left = output_len;
65 size_t clen = left > EAP_PAX_MAC_LEN ? EAP_PAX_MAC_LEN : left;
69 left -= clen;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/binary_heap_/
split_join_fn_imps.hpp 57 const size_type left = partition(pred_t(pred)); local
59 _GLIBCXX_DEBUG_ASSERT(m_size >= left);
61 const size_type ersd = m_size - left;
66 resize_policy::get_new_size_for_arbitrary(left);
94 _GLIBCXX_DEBUG_ASSERT(actual_size >= left);
95 std::copy(m_a_entries, m_a_entries + left, a_entries);
96 std::copy(m_a_entries + left, m_a_entries + m_size, a_other_entries);
104 m_size = left;
  /external/chromium/third_party/icu/source/common/
uarrsort.c 31 uprv_uint16Comparator(const void *context, const void *left, const void *right) {
32 return (int32_t)*(const uint16_t *)left - (int32_t)*(const uint16_t *)right;
36 uprv_int32Comparator(const void *context, const void *left, const void *right) {
37 return *(const int32_t *)left - *(const int32_t *)right;
41 uprv_uint32Comparator(const void *context, const void *left, const void *right) {
42 uint32_t l=*(const uint32_t *)left, r=*(const uint32_t *)right;
123 int32_t left, right; local
125 /* start and left are inclusive, limit and right are exclusive */
132 left=start;
139 while(/* array[left]<x *
    [all...]
  /external/icu4c/common/
uarrsort.c 31 uprv_uint16Comparator(const void *context, const void *left, const void *right) {
32 return (int32_t)*(const uint16_t *)left - (int32_t)*(const uint16_t *)right;
36 uprv_int32Comparator(const void *context, const void *left, const void *right) {
37 return *(const int32_t *)left - *(const int32_t *)right;
41 uprv_uint32Comparator(const void *context, const void *left, const void *right) {
42 uint32_t l=*(const uint32_t *)left, r=*(const uint32_t *)right;
123 int32_t left, right; local
125 /* start and left are inclusive, limit and right are exclusive */
132 left=start;
139 while(/* array[left]<x *
    [all...]
  /external/webkit/WebCore/css/
Rect.h 34 CSSPrimitiveValue* left() const { return m_left.get(); } function in class:WebCore::RectBase
39 void setLeft(PassRefPtr<CSSPrimitiveValue> left) { m_left = left; }
  /external/webkit/WebCore/rendering/
GapRects.h 31 const IntRect& left() const { return m_left; } function in struct:WebCore::GapRects
38 void unite(const GapRects& o) { uniteLeft(o.left()); uniteCenter(o.center()); uniteRight(o.right()); }
50 return m_left == other.left() && m_center == other.center() && m_right == other.right();
  /external/webkit/WebKit/chromium/tests/
TransparencyWinTest.cpp 44 return FloatRect(static_cast<float>(rect->left),
46 static_cast<float>(rect->right - rect->left),
57 innerRc.left = x;
134 // The coordinate system should be based in the upper left of our box.
186 // The coordinate system should be based in the upper left of our box.
274 // The coordinate system should be based in the upper left of our box.
335 // pixels from the top left. So we're actually clearing (2, 2) and
496 // Translate left by one pixel.
497 AffineTransform left; local
498 left.translate(-1, 0)
    [all...]

Completed in 2914 milliseconds

1 2 3 4 5 6 7 8 91011>>