HomeSort by relevance Sort by last modified time
    Searched refs:left (Results 151 - 175 of 6883) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/tensorflow/tensorflow/contrib/lite/toco/
tooling_util_test.cc 29 Shape left; member in struct:toco::ShapePair
70 EXPECT_TRUE(ShapesAgreeUpToBroadcasting(param.left, param.right));
74 EXPECT_TRUE(ShapesAgreeUpToExtending(param.left, param.right));
76 EXPECT_TRUE(ShapesAgreeUpToBroadcasting(param.left, param.right));
81 EXPECT_TRUE(ShapesAgreeUpToBroadcasting(param.left, param.right));
82 EXPECT_FALSE(ShapesAgreeUpToExtending(param.left, param.right));
86 EXPECT_FALSE(ShapesAgreeUpToExtending(param.left, param.right));
87 EXPECT_FALSE(ShapesAgreeUpToBroadcasting(param.left, param.right));
  /external/toybox/tests/
diff.test 5 seq 10 > left
8 expected='--- left
17 testing "simple" "diff left right" "$expected" "" ""
  /external/zlib/src/
uncompr.c 36 uLong len, left; local
41 left = *destLen;
45 left = 1;
63 stream.avail_out = left > (uLong)max ? max : (uInt)left;
64 left -= stream.avail_out;
77 left = 1;
82 err == Z_BUF_ERROR && left + stream.avail_out ? Z_DATA_ERROR :
  /frameworks/base/libs/hwui/
ProfileRenderer.cpp 22 void ProfileRenderer::drawRect(float left, float top, float right, float bottom,
24 mRenderer.drawRect(left, top, right, bottom, &paint);
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
CardViewBindingAdapter.java 37 public static void setContentPaddingLeft(CardView view, int left) {
41 view.setContentPadding(left, top, right, bottom);
46 int left = view.getContentPaddingLeft(); local
49 view.setContentPadding(left, top, right, bottom);
54 int left = view.getContentPaddingLeft(); local
57 view.setContentPadding(left, top, right, bottom);
62 int left = view.getContentPaddingLeft(); local
65 view.setContentPadding(left, top, right, bottom);
  /external/libvpx/libvpx/vpx_dsp/mips/
intrapred16_dspr2.c 15 const uint8_t *above, const uint8_t *left) {
21 "lb %[tmp1], (%[left]) \n\t"
22 "lb %[tmp2], 1(%[left]) \n\t"
23 "lb %[tmp3], 2(%[left]) \n\t"
24 "lb %[tmp4], 3(%[left]) \n\t"
25 "lb %[tmp5], 4(%[left]) \n\t"
26 "lb %[tmp6], 5(%[left]) \n\t"
27 "lb %[tmp7], 6(%[left]) \n\t"
28 "lb %[tmp8], 7(%[left]) \n\t"
29 "lb %[tmp9], 8(%[left]) \n\t
    [all...]
  /external/lzma/CPP/7zip/Common/
UniqBlocks.cpp 11 unsigned left = 0, right = Sorted.Size(); local
12 while (left != right)
14 unsigned mid = (left + right) / 2;
21 left = mid + 1;
32 left = mid + 1;
36 Sorted.Insert(left, index);
  /external/syslinux/com32/libutil/
base64.c 21 int left = size; local
29 while (left > 0) {
30 if (left < 3) {
32 buf[1] = (left > 1) ? p[1] : 0;
39 left -= 3;
47 switch (left) {
  /external/tensorflow/tensorflow/contrib/tensor_forest/kernels/v4/
decision_node_evaluator.h 36 // An evaluator for binary decisions with left and right children.
39 BinaryDecisionNodeEvaluator(int32 left, int32 right)
40 : left_child_id_(left), right_child_id_(right) {}
50 int32 left, int32 right);
68 const decision_trees::InequalityTest& test, int32 left, int32 right);
83 const decision_trees::MatchingValuesTest& test, int32 left, int32 right);
97 const decision_trees::BinaryNode& node, int32 left, int32 right);
  /external/webrtc/webrtc/modules/video_render/external/
video_render_external_impl.h 47 const float left, const float top,
56 float& left, float& top,
92 const float left, const float top,
97 const float left, const float top,
107 const float left, const float top,
112 const void* colorKey, const float left,
  /external/webrtc/webrtc/modules/video_render/
i_video_render.h 41 const float left,
52 float& left,
94 const float left,
101 const float left,
113 const float left,
121 const float left,
  /external/webrtc/webrtc/modules/video_render/linux/
video_render_linux_impl.h 48 const float left, const float top,
57 float& left, float& top,
93 const float left, const float top,
100 const float left, const float top,
108 const float left, const float top,
114 const float left, const float top,
  /external/webrtc/webrtc/modules/video_render/mac/
video_render_mac_carbon_impl.h 50 const float left,
59 float& left,
95 const float left,
102 const float left,
114 const float left,
122 const float left,
video_render_mac_cocoa_impl.h 50 const float left,
59 float& left,
95 const float left,
102 const float left,
114 const float left,
122 const float left,
  /external/webrtc/webrtc/modules/video_render/windows/
i_video_render_win.h 42 const float left,
52 float& left, float& top,
75 const float left, const float top,
81 const float left,
93 const float left, const float top,
99 const float left, const float top,
  /frameworks/compile/mclinker/include/mcld/ADT/
TreeBase.h 22 NodeBase* left; member in class:mcld::NodeBase
26 NodeBase() : left(NULL), right(NULL) {}
64 return ((m_pNode->left) != (m_pNode->left->right));
78 this->m_pNode = this->m_pNode->left;
89 this->m_pNode->left = pOther;
  /hardware/libhardware/modules/camera/3_4/metadata/
types.h 42 bool operator()(const StreamSpec& left, const StreamSpec& right) const {
44 return left.format < right.format ||
45 (left.format == right.format &&
46 (left.width < right.width ||
47 (left.width == right.width && left.height < right.height)));
  /hardware/qcom/display/msm8960/libtilerenderer/
tilerenderer.cpp 36 int left, int top,
46 if (!left && !right && !top && !bottom) {
47 left = 0;
53 if (!left && !right && !top && !bottom) {
59 int l = left, t = (height - bottom), w = (right - left), h = (bottom - top), preserve = 0;
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/
ver4_patricia_trie_writing_helper.h 111 bool operator()(const DictProbability &left, const DictProbability &right) {
112 if (left.getProbability() != right.getProbability()) {
113 return left.getProbability() > right.getProbability();
115 if (left.getTimestamp() != right.getTimestamp()) {
116 return left.getTimestamp() < right.getTimestamp();
118 return left.getDictPos() > right.getDictPos();
  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
TaskPositionerTests.java 102 // Start a drag resize starting upper left.
104 false /*preserveOrientation*/, r.left - MOUSE_DELTA_X, r.top - MOUSE_DELTA_Y, r);
124 mPositioner.resizeDrag(r.left, 2000.0f);
126 new Rect(r.left + MOUSE_DELTA_X, r.bottom - mMinVisibleHeight, r.right, r.bottom),
129 // Start a drag resize left and see that only the left coord changes..
131 false /*preserveOrientation*/, r.left - MOUSE_DELTA_X, midY, r);
133 // Drag to the left.
144 mPositioner.resizeDrag(r.left, 0.0f);
145 assertBoundsEquals(new Rect(r.left + MOUSE_DELTA_X, r.top, r.right, r.bottom)
    [all...]
  /frameworks/base/core/java/android/view/
Gravity.java 32 /** Raw bit controlling how the left/top edge is placed. */
49 /** Push object to the left of its container, not changing its size. */
50 public static final int LEFT = (AXIS_PULL_BEFORE|AXIS_SPECIFIED)<<AXIS_X_SHIFT;
66 public static final int FILL_HORIZONTAL = LEFT|RIGHT;
85 * absolute LEFT/RIGHT).
115 public static final int START = RELATIVE_LAYOUT_DIRECTION | LEFT;
175 * @param xAdj Offset to apply to the X axis. If gravity is LEFT this
177 * the left; if gravity is CENTER_HORIZONTAL it pushes it to the
178 * right or left; otherwise it is ignored.
190 outRect.left = container.lef
    [all...]
  /external/aac/libAACenc/src/
tonality.cpp 137 FIXP_DBL left = chaosMeasurePerLine[0]; local
142 left = right + (left >> 2);
143 chaosMeasurePerLine[j] = left; /* 0.25 left + 0.75 right */
147 left = right + (left >> 2);
148 chaosMeasurePerLine[j + 1] = left;
153 left = right + (left >> 2)
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
ASTList.java 25 private ASTree left; field in class:ASTList
29 left = _head;
34 left = _head;
42 public ASTree getLeft() { return left; }
46 public void setLeft(ASTree _left) { left = _left; }
55 public ASTree head() { return left; }
58 left = _head;
80 ASTree a = list.left;
129 if (list.left == oldObj) {
130 list.left = newObj
    [all...]
  /external/llvm/docs/_static/
llvm.css 15 border-collapse: collapse; margin-top: 1em; margin-left: 1em;
33 padding-left: 8pt;
38 h1, .doc_title, .title { text-align: left; font-size: 25pt }
44 text-align: left; font-size: 12pt;
53 .doc_author { text-align: left; font-weight: bold; padding-left: 20pt }
54 .doc_text { text-align: left; padding-left: 20pt; padding-right: 10pt }
56 .doc_footer { text-align: left; padding: 0 0 0 0 }
81 h2+div, h2+p {text-align: left; padding-left: 20pt; padding-right: 10pt;
    [all...]
  /external/swiftshader/third_party/LLVM/docs/
llvm.css 15 border-collapse: collapse; margin-top: 1em; margin-left: 1em;
33 padding-left: 8pt;
38 h1, .doc_title, .title { text-align: left; font-size: 25pt }
44 text-align: left; font-size: 12pt;
53 .doc_author { text-align: left; font-weight: bold; padding-left: 20pt }
54 .doc_text { text-align: left; padding-left: 20pt; padding-right: 10pt }
56 .doc_footer { text-align: left; padding: 0 0 0 0 }
81 h2+div, h2+p {text-align: left; padding-left: 20pt; padding-right: 10pt;}
    [all...]

Completed in 597 milliseconds

1 2 3 4 5 67 8 91011>>