HomeSort by relevance Sort by last modified time
    Searched refs:left (Results 426 - 450 of 5347) sorted by null

<<11121314151617181920>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
sigset.h 80 # define __sigandset(dest, left, right) \
83 const sigset_t *__left = (left); \
89 # define __sigorset(dest, left, right) \
92 const sigset_t *__left = (left); \
  /external/v8/src/compiler/arm/
instruction-selector-arm.cc 105 *value_return = g.UseRegister(m.left().node());
129 *value_return = g.UseRegister(m.left().node());
222 if (m.left().node() == m.right().node()) {
230 InstructionOperand const input = g.UseRegister(m.left().node());
236 inputs[0] = g.UseRegister(m.left().node());
239 m.left().node(), &input_count,
246 inputs[input_count++] = g.UseRegister(m.left().node());
315 g.DefineAsRegister(node), g.UseRegister(m.left().node()),
326 InstructionOperand left_operand = g.UseRegister(m.left().node());
583 void EmitBic(InstructionSelector* selector, Node* node, Node* left,
1886 Node* left = node->InputAt(0); local
1902 Node* left = node->InputAt(0); local
    [all...]
  /external/opencv3/modules/flann/include/opencv2/flann/
kdtree_single_index.h 259 int left, right; member in struct:cvflann::KDTreeSingleIndex::Node
339 NodePtr divideTree(int left, int right, BoundingBox& bbox)
344 if ( (right-left) <= leaf_max_size_) {
346 node->left = left;
351 bbox[i].low = (DistanceType)dataset_[vind_[left]][i];
352 bbox[i].high = (DistanceType)dataset_[vind_[left]][i];
354 for (int k=left+1; k<right; ++k) {
365 middleSplit_(&vind_[0]+left, right-left, idx, cutfeat, cutval, bbox)
499 int left = 0; local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/
jsilver.sablecc 450 = {or} [left]:expression or [right]:and_expression // x.y || a.b
451 {->New expression.or(left.expression, right.expression)}
457 = {and} [left]:and_expression and [right]:equality // x.y && a.b
458 {->New expression.and(left.expression, right.expression)}
464 = {eq} [left]:equality eq [right]:comparison // x.y == a.b
465 {->New expression.eq(left.expression, right.expression)}
466 | {ne} [left]:equality ne [right]:comparison // x.y != a.b
467 {->New expression.ne(left.expression, right.expression)}
473 = {lt} [left]:comparison lt [right]:add_subtract // x.y < a.b
474 {->New expression.lt(left.expression, right.expression)
    [all...]
  /development/perftests/panorama/feature_mos/src/mosaic/
MosaicTypes.h 37 left = right = top = bottom = 0.0;
42 return right - left;
53 int left, right, top, bottom; member in class:MosaicRect
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/ui/
DynamicTableModelTest.java 103 // cell 0 (top-left
107 assertEquals(0f, cellRect.left);
116 assertEquals(500f, cellRect.left);
121 // cell 2 (bottom-left)
125 assertEquals(0f, cellRect.left);
134 assertEquals(500f, cellRect.left);
161 // cell 0 (top-left
165 assertEquals(0f, cellRect.left);
170 // cell 1 (bottom-left)
174 assertEquals(0f, cellRect.left);
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
bitmaptools.cc 31 Box() : left(), top(), right(), bottom() {}
34 // left, top, width, height
38 if (!(ReadInt(&left) && ReadInt(&top) &&
43 if (left < 0 || top < 0 || width < 0 || height < 0) {
47 right = left + width;
53 if (left > x) left = x;
59 int width() const { return right - left; }
62 int left; member in struct:Box
119 row_size = (box.right - box.left) * pixel_stride
    [all...]
  /external/fio/lib/
rbtree.c 50 struct rb_node *left = node->rb_left; local
53 if ((node->rb_left = left->rb_right))
54 rb_set_parent(left->rb_right, node);
55 left->rb_right = node;
57 rb_set_parent(left, parent);
62 parent->rb_right = left;
64 parent->rb_left = left;
67 root->rb_node = left;
68 rb_set_parent(node, left);
233 struct rb_node *old = node, *left; local
    [all...]
  /external/guava/guava/src/com/google/common/collect/
LexicographicalOrdering.java 41 Iterator<T> left = leftIterable.iterator(); local
43 while (left.hasNext()) {
47 int result = elementOrder.compare(left.next(), right.next());
  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.cpp 17 unsigned left = 0, mid = _streamIndex, right = Streams.Size(); local
24 left = mid + 1;
30 mid = (left + right) / 2;
  /external/opencv3/modules/imgproc/src/
utils.cpp 83 int left = offset.x, right = dst.cols - src.cols - left; local
87 cv::copyMakeBorder( src, dst, top, bottom, left, right, borderType, value );
  /external/opencv3/modules/ml/src/
kdtree.hpp 43 Node() : idx(-1), left(-1), right(-1), boundary(0.f) {}
45 : idx(_idx), left(_left), right(_right), boundary(_boundary) {}
49 //! node indices of the left and the right branches
50 int left, right; member in struct:cv::ml::KDTree::Node
51 //! go to the left if query_vec[node.idx]<=node.boundary, otherwise go to the right
  /external/skia/src/gpu/
GrSurface.cpp 49 int* left, int* top, int* width, int* height,
56 SkIRect subRect = SkIRect::MakeXYWH(*left, *top, *width, *height);
63 (subRect.fTop - *top) * *rowBytes + (subRect.fLeft - *left) * bpp);
65 *left = subRect.fLeft;
75 int* left, int* top, int* width, int* height,
78 return adjust_params<void>(surfaceWidth, surfaceHeight, bpp, left, top, width, height, data,
85 int* left, int* top, int* width, int* height,
88 return adjust_params<const void>(surfaceWidth, surfaceHeight, bpp, left, top, width, height,
95 bool GrSurface::writePixels(int left, int top, int width, int height,
103 return context->writeSurfacePixels(this, left, top, width, height, config, buffer, rowBytes
    [all...]
  /external/skia/src/pathops/
SkPathOpsBounds.h 25 void add(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom) {
26 if (left < fLeft) fLeft = left;
  /external/skia/src/svg/parser/
SkSVGCircle.cpp 30 SkScalar left, top, right, bottom; local
31 left = cx - r;
36 sprintf(scratch, "%g", SkScalarToDouble(left));
37 parser._addAttribute("left", scratch);
SkSVGEllipse.cpp 32 SkScalar left, top, right, bottom; local
33 left = cx - rx;
38 sprintf(scratch, "%g", SkScalarToDouble(left));
39 parser._addAttribute("left", scratch);
  /frameworks/base/core/java/android/view/animation/
ClipRectAnimation.java 57 int l = mFromRect.left + (int) ((mToRect.left - mFromRect.left) * it);
  /frameworks/base/core/java/android/widget/
RtlSpacingHelper.java 21 * RtlSpacingHelper manages the relationship between left/right and start/end for views
67 public void setAbsolute(int left, int right) {
69 if (left != UNDEFINED) mLeft = mExplicitLeft = left;
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
FocusAfterRemoval.java 38 final LinearLayout left = (LinearLayout) findViewById(R.id.leftLayout); local
40 // top left makes parent layout GONE
45 left.setVisibility(View.GONE);
49 // bottom left makes parent layout INVISIBLE
50 // top left makes parent layout GONE
55 left.setVisibility(View.INVISIBLE);
  /frameworks/base/graphics/java/android/graphics/
LargeBitmap.java 54 if (rect.left < 0 || rect.top < 0 || rect.right > getWidth() || rect.bottom > getHeight())
56 return nativeDecodeRegion(mNativeLargeBitmap, rect.left, rect.top,
57 rect.right - rect.left, rect.bottom - rect.top, options);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
RtlSpacingHelper.java 21 * RtlSpacingHelper manages the relationship between left/right and start/end for views
67 public void setAbsolute(int left, int right) {
69 if (left != UNDEFINED) mLeft = mExplicitLeft = left;
  /packages/apps/Camera2/src/com/android/camera/ui/
GridLines.java 53 canvas.drawLine(mDrawBounds.left + x, mDrawBounds.top,
54 mDrawBounds.left + x, mDrawBounds.bottom, mPaint);
57 canvas.drawLine(mDrawBounds.left, mDrawBounds.top + y,
MarginDrawable.java 59 if (s.top < s.bottom && s.left < s.right) {
64 if (s.left > 0) {
65 canvas.drawRect(0, s.top, s.left + 1, s.bottom, mPaint);
  /packages/apps/Camera2/src/com/android/camera/widget/
Cling.java 38 public void onLayoutChange(View v, int left, int top, int right, int bottom,
87 int left = refCenterX - getWidth() / 2; local
94 setTranslationX(left - currentLeft);
  /packages/apps/Gallery/src/com/android/camera/
ActionMenuButton.java 77 final int left = getCompoundPaddingLeft(); local
80 rect.set(left + layout.getLineLeft(0) - PADDING_H,
82 Math.min(left + layout.getLineRight(0) + PADDING_H,

Completed in 595 milliseconds

<<11121314151617181920>>